Commit Graph

937 Commits

Author SHA1 Message Date
Florian Müllner 725713f9cd Bump version to 3.14.4
To go along GNOME Shell 3.14.4.
3.14.4
2015-03-23 20:40:21 +01:00
Florian Müllner af14da5770 window-list: Fix for "app-less" windows
While rare, it is possible to have a window not associated with any app
(not even a fake window-based one). We currently throw an error when
trying to set the icon for such a window, so handle this case and
use a fallback icon instead of the app icon.

https://bugzilla.gnome.org/show_bug.cgi?id=743401
2015-03-23 20:38:14 +01:00
Samir Ribic 9284ab9cc0 Added Bosnian translation 2015-03-14 16:58:38 +00:00
Florian Müllner 1406feb262 window-list: Keep panel below modal dialogs when possible
Currently the window-list will be stacked above system modal dialogs,
which means it is not dimmed like the rest of the desktop and remains
accessible to interaction. We cannot do any better when showing the
on-screen keyboard, as we need to keep ourselves above to not end up
covered by the OSK, and the keyboard itself is stacked above modal
dialogs to allow its use for input. However we can at least fix the
case when not using the OSK.

https://bugzilla.gnome.org/show_bug.cgi?id=740722
2014-12-19 15:29:00 +01:00
Florian Müllner 00c1e37d77 Bump version to 3.14.3
To go along GNOME Shell 3.14.3
3.14.3
2014-12-19 15:26:07 +01:00
Maxime Henrion 3771d49149 Skip over XDG directories that cannot be found.
This fixes loading the places menu gnome-shell extension when the XDG
directories have not been configured.

https://bugzilla.gnome.org/show_bug.cgi?id=741033
2014-12-02 19:01:27 +01:00
Sylvain Pasche 2f49d77931 window-list: _pointerInTray was renamed to _pointerInNotification in bug 695800
https://bugzilla.gnome.org/show_bug.cgi?id=737486
2014-11-26 20:05:44 +01:00
Sylvain Pasche 046c603872 window-list: Disconnect drag and drop handlers
https://bugzilla.gnome.org/show_bug.cgi?id=737486
2014-11-26 20:05:44 +01:00
Florian Müllner 79f263d1ed apps-menu: Center app labels
Currently labels are not vertically centered, unlike icons.
Fix this.

https://bugzilla.gnome.org/show_bug.cgi?id=740724
2014-11-26 19:07:29 +01:00
Florian Müllner a0a28be128 apps-menu: Update menu arrow to use an icon
gnome-shell no longer uses labels with UTF8 arrows, so the currently
used arrow is no longer consistent with other menus; fix that.

https://bugzilla.gnome.org/show_bug.cgi?id=740725
2014-11-26 18:56:38 +01:00
Florian Müllner ea893b2262 Bump version to 3.14.2
To go along GNOME Shell 3.14.2
3.14.2
2014-11-12 19:59:39 +01:00
Florian Müllner 3fca9e88b2 drive-menu: Adjust for renamed .desktop file name
Nautilus now uses reverse domain notation for its .desktop file,
adjust for that.

https://bugzilla.gnome.org/show_bug.cgi?id=739931
2014-11-12 19:54:45 +01:00
Florian Müllner a1ab174e7a drive-menu: Update for gnome-shell changes
Since shell commit 3227d4f3edad, Shell.Global.create_app_launch_context()
expects additional parameters.

https://bugzilla.gnome.org/show_bug.cgi?id=739931
2014-11-12 19:54:38 +01:00
Florian Müllner c9693d4f09 Bump version to 3.14.1
To go along GNOME Shell 3.14.1
3.14.1
2014-10-14 21:32:51 +02:00
Florian Müllner e372c5ace8 window-list: Avoid flashing when using auto-grouping
Currently when using auto-grouping, the list is ungrouped each
time a window is closed, and then possibly re-grouped on the next
allocation - as a result, there is a brief "ungroup flash" if the
list is supposed to remain grouped.
Avoid this by computing the width the ungrouped list would have
rather than by actually ungrouping it.

https://bugzilla.gnome.org/show_bug.cgi?id=738286
2014-10-11 00:06:59 +02:00
Piotr Drąg 9386610b01 Updated LINGUAS 2014-10-08 16:55:07 +02:00
Ivaylo Valkov c807b02c16 Added Bulgarian translation 2014-10-08 06:23:41 +03:00
Florian Müllner 614d1c9697 window-list: Fix spacing in app buttons 2014-10-07 20:01:56 +02:00
Florian Müllner 70056ba56e window-list: Don't unnecessarily add/remove window buttons
Since commit 191c7ccc24, we check whether we already have a window
in the list before re-adding it on MetaWorkspace::window-added.
We can do something similar on MetaWorkspace::window-removed to
avoid some extra work when a window is moved between workspaces
rather than destroyed.
2014-10-07 18:57:45 +02:00
Florian Müllner 4af36f41fa window-list: Don't use Meta.get_window_actors() directly
The list returned may contain windows that are being destroyed.
The ShellGlobal method filters those out, so use that instead; we
should eventually stop looking at window actors when we want windows,
but for now this is the easy and safe thing to do.
2014-10-07 17:19:00 +02:00
Florian Müllner 60ea0fb172 Stop using deprecated GSettings:schema property 2014-10-07 14:38:12 +02:00
Pedro Albuquerque ab37a8f92f Updated Portuguese translation 2014-10-05 21:11:17 +00:00
Milo Casagrande 91890367b8 Updated Italian translation 2014-10-05 13:20:05 +00:00
Florian Müllner 54e39c9779 launch-new-instance: Re-use original activate function
Rather than re-implementing the function (and risk missing improvements
like the launch animation), call the original one as if the user had
middle-clicked the launcher.
2014-09-29 15:32:02 +02:00
Florian Müllner d4ca2aeeb5 extension: Reuse original handler in keyPressHandler injection
We do need to inject our own handler to treat application-switch
actions the same way as the corresponding window-switch ones;
we can actually express exactly this without re-implementing the
entire function, by calling the original handler with a tweaked
action parameter - the resulting code is not only more concise,
but should also be a bit more robust against changes in core.

https://bugzilla.gnome.org/show_bug.cgi?id=737457
2014-09-29 15:32:02 +02:00
Rūdolfs Mazurs 1d53017a30 Updated Latvian translation 2014-09-28 16:38:56 +03:00
Florian Müllner 687ea92e82 alternateTab: Remove _initialSelection injection
Since shell commit 2b1077aaa169, the implementation in the
SwitcherPopup base class already works as expected.

https://bugzilla.gnome.org/show_bug.cgi?id=737457
2014-09-27 16:15:37 +02:00
Florian Müllner 0dd5b5251a alternateTab: Fix Escape not dismissing popup
Since shell commit dd85670f8b25, the handler got a return value to
determine whether Escape should be handled automatically; we do
want this for the window switcher, so add an appropriate return
value to restore the expected behavior.

https://bugzilla.gnome.org/show_bug.cgi?id=737457
2014-09-27 16:15:37 +02:00
Florian Müllner 6e82912fe5 launch-new-instance: Remove unused imports/variables 2014-09-27 16:15:36 +02:00
Florian Müllner 83a2083216 Bump version to 3.14.0
To go along GNOME Shell 3.14.0
3.14.0
2014-09-22 20:59:37 +02:00
Saibal Ray bdce0b68a8 Updated Bengali (India) translation 2014-09-22 11:08:16 +00:00
Мирослав Николић 846ac2c9d5 Updated Serbian translation 2014-09-22 12:28:13 +02:00
Rajesh Ranjan 33ca28d68c Added Hindi translation 2014-09-21 05:30:10 +00:00
Daniel Korostil 9deed91c0f Updated Ukrainian translation 2014-09-20 23:32:22 +03:00
Shankar Prasad 8e2cdf3a9e Updated Kannada translation 2014-09-17 12:52:52 +00:00
Shankar Prasad a8128eedac Updated Kannada translation 2014-09-17 11:04:56 +00:00
Saibal Ray 43cc0514ff Added Bengali (India) translation 2014-09-17 05:59:31 +00:00
Florian Müllner d421eff477 Bump version to 3.13.92
To go along GNOME Shell 3.13.92
3.13.92
2014-09-17 07:05:54 +02:00
Florian Müllner 8696067186 screenshot-window-sizer: Do not translate schema for now
It's not worth a string freeze break, we can revert after the freeze
has been lifted ...
2014-09-17 07:05:22 +02:00
Florian Müllner 1d5ab0f0de screenshot-window-sizer: New extension
Originally from hughsie's github[0], but way too useful to leave
in a 3rd party repo :-)

[0] https://github.com/hughsie/gnome-shell-extension-screenshot-window-sizer

https://bugzilla.gnome.org/show_bug.cgi?id=736470
2014-09-17 07:05:22 +02:00
Sandeep Sheshrao Shedmake 162ece1bba Added mr to LINGUAS file && Updated Marathi Translations 2014-09-17 09:13:00 +05:30
Sandeep Sheshrao Shedmake d8974faa65 Added mr in LINGUAS && Updated Marathi Translations 2014-09-17 09:02:33 +05:30
Muhammet Kara be38e343cd Updated Turkish translation 2014-09-16 11:43:50 +00:00
Umarzuki Bin Mochlis Moktar 88f2eef2b2 Added Malay translation 2014-09-16 06:45:37 +00:00
Shantha kumar 04e5c1da9e Updated Tamil translation 2014-09-15 06:56:42 +00:00
Wolfgang Stöggl f48055f331 Updated German translation 2014-09-14 17:58:55 +00:00
Pawan Chitrakar 3a484a9988 Added Nepali translation 2014-09-14 17:53:38 +00:00
Ask Hjorth Larsen 3fd977779f Updated Danish translation 2014-09-11 21:56:47 +00:00
Florian Müllner 191c7ccc24 window-list: Do not add sticky windows more than once
When a window's on-all-workspaces property changes to true, the
workspaces the window was not located on will emit the ::window-added
signal for the window; however we don't want multiple buttons for
the same window, so filter out the extra calls.

https://bugzilla.gnome.org/show_bug.cgi?id=736398
2014-09-11 12:13:10 +02:00
Dušan Kazik f77e38e771 Updated Slovak translation 2014-09-10 06:58:11 +00:00