Giter VIP home page Giter VIP logo

Comments (16)

RensAlthuis avatar RensAlthuis commented on June 16, 2024 9

I've made a new release, @duartec3000 there is absolutely no need to donate again 😛 but I appreciate the sentiment.

from vertical-overview.

RensAlthuis avatar RensAlthuis commented on June 16, 2024 2

Ah yeah this has been fixed. The extension is fully compatible with 42. I just haven't published on the gnome website.

from vertical-overview.

vulcainman avatar vulcainman commented on June 16, 2024 1

I confirm that #101 fixes the issue on Gnome 42 (Debian bookworm). IMHO, it should be merged as soon as possible.

from vertical-overview.

JonathanHolvey avatar JonathanHolvey commented on June 16, 2024 1

Another issue is that the left and right offset options aren't working as expected. It's difficult to explain in words what's going on, so here's a diagram:

offsets

from vertical-overview.

jm-duke avatar jm-duke commented on June 16, 2024 1

Commit 2127222b breaks the addon - fadeInDesktop() and fadeOutDesktop() are considered deprecated. Removing both functions from the code works fine on my end:

diff --git a/overviewControls.js b/overviewControls.js
index 6b6f6f9..8a3073c 100644
--- a/overviewControls.js
+++ b/overviewControls.js
@@ -335,8 +335,6 @@ var ControlsManagerOverride = {
 
         this._searchController.prepareToEnterOverview();
         this._workspacesDisplay.prepareToEnterOverview();
-        if (!this._workspacesDisplay.activeWorkspaceHasMaximizedWindows())
-            Main.overview.fadeOutDesktop();
 
         this._stateAdjustment.value = ControlsState.HIDDEN;
 
@@ -367,8 +365,6 @@ var ControlsManagerOverride = {
         this._ignoreShowAppsButtonToggle = true;
 
         this._workspacesDisplay.prepareToLeaveOverview();
-        if (!this._workspacesDisplay.activeWorkspaceHasMaximizedWindows())
-            Main.overview.fadeInDesktop();
 
         this._stateAdjustment.ease(ControlsState.HIDDEN, {
             duration: Overview.ANIMATION_TIME,

from vertical-overview.

vitaminace33 avatar vitaminace33 commented on June 16, 2024 1

I confer f8e39b7 does works on Manjaro as of today. A Gnome Shell restart (alt+F2, restart) might be required. This could be added to the instructions.

from vertical-overview.

13r0ck avatar 13r0ck commented on June 16, 2024

#101 fixes the specific issue listed above. Gnome 42 might break other things though

from vertical-overview.

stdevPavelmc avatar stdevPavelmc commented on June 16, 2024

I support that request

Just installed it manually from this repo on Ubuntu Jammy develop branch with Gnome 42 and it does not work.

from vertical-overview.

vulcainman avatar vulcainman commented on June 16, 2024

After some times, I've noticed minor issues with workspace zone (I've 2 monitors). On the second monitor, the workspace zone is broken (see screenshot attached) and replaced by a blue dot. I've also noticed that, the first monitor's workspace zone encounters the same issue after a session lock. The first monitor workspace zone can be restored by a shell restart.

Screenshot from 2022-03-31 09-51-47

from vertical-overview.

lgg avatar lgg commented on June 16, 2024

@JonathanHolvey for me it seems like this:

Screenshots

image

image

from vertical-overview.

JPGlaser avatar JPGlaser commented on June 16, 2024

Do we have any status on a version getting released @RensAlthuis for Gnome 42 (Ubuntu Jelly LTS)? These horizontal workspaces are diving me up the walls.

EDIT: I can confirm the latest commit f8e39b7 seems to work just fine on Jelly. This should get shipped out ASAP.

~ Joe G.

from vertical-overview.

13r0ck avatar 13r0ck commented on June 16, 2024

@RensAlthuis can this be closed because of #101 ?

from vertical-overview.

duartec3000 avatar duartec3000 commented on June 16, 2024

@RensAlthuis ༼ つ ◕_◕ ༽つ Take all my energy ༼ つ ◕_◕ ༽つ make point release for us plebs, will donate again!

from vertical-overview.

real-or-random avatar real-or-random commented on June 16, 2024

@JonathanHolvey for me it seems like this:
Screenshots

image

image

I have the same issue on a 4k screen. The main thing overlaps the thumbnails.

from vertical-overview.

thankjura avatar thankjura commented on June 16, 2024

I have the same issue on a 4k screen. The main thing overlaps the thumbnails.

this patch works for me:


--- overviewControls.js	2022-05-25 01:48:30.289432837 +0300
+++ /home/jura/.local/share/gnome-shell/extensions/[email protected]/overviewControls.js	2022-05-23 21:20:38.400741149 +0300
@@ -120,9 +120,8 @@
 }
 
 var ControlsManagerLayoutOverride = {
-    _computeWorkspacesBoxForState(state, workAreaBox, searchHeight, dashHeight, thumbnailsHeight) {
+    _computeWorkspacesBoxForState(state, workAreaBox, startY, searchHeight, leftOffset, rightOffset) {
         const workspaceBox = workAreaBox.copy();
-        const [startX, startY] = workAreaBox.get_origin();
         const [width, height] = workspaceBox.get_size();
         const { spacing } = this;
         const { expandFraction } = this._workspacesThumbnails;
@@ -142,10 +141,10 @@
         case ControlsState.WINDOW_PICKER:
         case ControlsState.APP_GRID:
             workspaceBox.set_origin(
-                this.leftOffset + spacing,
+                leftOffset + spacing,
                 startY + searchHeight + spacing * expandFraction);
             workspaceBox.set_size(
-                width - this.leftOffset - this.rightOffset - (spacing * 2),
+                width - leftOffset - rightOffset - (spacing * 2),
                 height - startY - (searchHeight + spacing * expandFraction) * 2);
             break;
         }

from vertical-overview.

real-or-random avatar real-or-random commented on June 16, 2024

Nice, that patch works for me, too. Can you open a PR?

from vertical-overview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.