Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d1105e361 | |||
| 0cdae2dae0 | |||
| b74c390e1b | |||
| a71ad438b3 | |||
| c400e30da8 |
@@ -1,6 +1,7 @@
|
|||||||
3.22.2
|
3.23.2
|
||||||
======
|
======
|
||||||
* updated translations (zh_CN)
|
* alternateTab: Don't take over 'switch-group' shortcut
|
||||||
|
* updated translations (zh_CN)
|
||||||
|
|
||||||
3.22.1
|
3.22.1
|
||||||
======
|
======
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ(2.63)
|
AC_PREREQ(2.63)
|
||||||
AC_INIT([gnome-shell-extensions],[3.22.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
AC_INIT([gnome-shell-extensions],[3.23.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,3 +1,3 @@
|
|||||||
[GNOME Session]
|
[GNOME Session]
|
||||||
Name=GNOME Classic
|
Name=GNOME Classic
|
||||||
RequiredComponents=org.gnome.Shell;gnome-settings-daemon;nautilus-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;
|
||||||
|
|||||||
@@ -23,11 +23,9 @@ 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;
|
||||||
}
|
}
|
||||||
@@ -46,18 +44,14 @@ 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];
|
||||||
|
|||||||
Reference in New Issue
Block a user