Compare commits

..

3 Commits

Author SHA1 Message Date
Florian Müllner bf5230ef6c Bump version to 3.22.2
Update NEWS.
2016-11-10 16:45:43 +01:00
YunQiang Su 1a0601dda8 Fix zh_CN translation: cycle screenshot sizes 2016-10-18 17:54:11 +08:00
YunQiang Su 9117b2266c Update zh_CN translation 2016-10-18 17:40:24 +08:00
4 changed files with 10 additions and 5 deletions
+2 -3
View File
@@ -1,7 +1,6 @@
3.23.2 3.22.2
====== ======
* alternateTab: Don't take over 'switch-group' shortcut * updated translations (zh_CN)
* updated translations (zh_CN)
3.22.1 3.22.1
====== ======
+1 -1
View File
@@ -1,5 +1,5 @@
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_INIT([gnome-shell-extensions],[3.23.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions]) AC_INIT([gnome-shell-extensions],[3.22.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config]) AC_CONFIG_AUX_DIR([config])
+1 -1
View File
@@ -1,3 +1,3 @@
[GNOME Session] [GNOME Session]
Name=GNOME Classic Name=GNOME Classic
RequiredComponents=org.gnome.Shell;org.gnome.SettingsDaemon.A11yKeyboard;org.gnome.SettingsDaemon.A11ySettings;org.gnome.SettingsDaemon.Clipboard;org.gnome.SettingsDaemon.Color;org.gnome.SettingsDaemon.Datetime;org.gnome.SettingsDaemon.Housekeeping;org.gnome.SettingsDaemon.Keyboard;org.gnome.SettingsDaemon.MediaKeys;org.gnome.SettingsDaemon.Mouse;org.gnome.SettingsDaemon.Orientation;org.gnome.SettingsDaemon.Power;org.gnome.SettingsDaemon.PrintNotifications;org.gnome.SettingsDaemon.Rfkill;org.gnome.SettingsDaemon.ScreensaverProxy;org.gnome.SettingsDaemon.Sharing;org.gnome.SettingsDaemon.Smartcard;org.gnome.SettingsDaemon.Sound;org.gnome.SettingsDaemon.Wacom;org.gnome.SettingsDaemon.XRANDR;org.gnome.SettingsDaemon.XSettings;nautilus-classic; RequiredComponents=org.gnome.Shell;gnome-settings-daemon;nautilus-classic;
+6
View File
@@ -23,9 +23,11 @@ function enable() {
AltTab.WindowSwitcherPopup.prototype._keyPressHandler = function(keysym, action) { AltTab.WindowSwitcherPopup.prototype._keyPressHandler = function(keysym, action) {
switch(action) { switch(action) {
case Meta.KeyBindingAction.SWITCH_APPLICATIONS: case Meta.KeyBindingAction.SWITCH_APPLICATIONS:
case Meta.KeyBindingAction.SWITCH_GROUP:
action = Meta.KeyBindingAction.SWITCH_WINDOWS; action = Meta.KeyBindingAction.SWITCH_WINDOWS;
break; break;
case Meta.KeyBindingAction.SWITCH_APPLICATIONS_BACKWARD: case Meta.KeyBindingAction.SWITCH_APPLICATIONS_BACKWARD:
case Meta.KeyBindingAction.SWITCH_GROUP_BACKWARD:
action = Meta.KeyBindingAction.SWITCH_WINDOWS_BACKWARD; action = Meta.KeyBindingAction.SWITCH_WINDOWS_BACKWARD;
break; break;
} }
@@ -44,14 +46,18 @@ function enable() {
}; };
setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher)); setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
setKeybinding('switch-group', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher)); setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
setKeybinding('switch-group-backward', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
} }
function disable() { function disable() {
var prop; var prop;
setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._startSwitcher)); setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._startSwitcher));
setKeybinding('switch-group', Lang.bind(Main.wm, Main.wm._startSwitcher));
setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._startSwitcher)); setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._startSwitcher));
setKeybinding('switch-group-backward', Lang.bind(Main.wm, Main.wm._startSwitcher));
for (prop in injections) for (prop in injections)
AltTab.WindowSwitcherPopup.prototype[prop] = injections[prop]; AltTab.WindowSwitcherPopup.prototype[prop] = injections[prop];