Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
809c8cbd41 | ||
|
|
31506a342c | ||
|
|
d1bf592539 | ||
|
|
6062284ac4 |
5
NEWS
5
NEWS
@@ -1,3 +1,8 @@
|
||||
3.17.90
|
||||
=======
|
||||
* window-list: Improve application ordering
|
||||
* workspace-indicator: Use consistent workspace numbering
|
||||
|
||||
3.17.4
|
||||
======
|
||||
* updated translations (fur)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.63)
|
||||
AC_INIT([gnome-shell-extensions],[3.17.4],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
AC_INIT([gnome-shell-extensions],[3.17.90],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([config])
|
||||
|
||||
@@ -393,7 +393,13 @@ const ApplicationsButton = new Lang.Class({
|
||||
if (nextType == GMenu.TreeItemType.ENTRY) {
|
||||
let entry = iter.get_entry();
|
||||
let appInfo = entry.get_app_info();
|
||||
let app = appSys.lookup_app(entry.get_desktop_file_id());
|
||||
let id;
|
||||
try {
|
||||
id = appInfo.get_id(); // catch non-UTF8 filenames
|
||||
} catch(e) {
|
||||
continue;
|
||||
}
|
||||
let app = appSys.lookup_app(id);
|
||||
if (appInfo.should_show()) {
|
||||
let menu_id = dir.get_menu_id();
|
||||
this.applicationsByCategory[categoryId].push(app);
|
||||
|
||||
@@ -57,7 +57,8 @@ function _onMenuStateChanged(menu, isOpen) {
|
||||
}
|
||||
|
||||
function _getAppStableSequence(app) {
|
||||
return app.get_windows().reduce(function(prev, cur) {
|
||||
let windows = app.get_windows().filter(function(w) { return !w.skip_taskbar; });
|
||||
return windows.reduce(function(prev, cur) {
|
||||
return Math.min(prev, cur.get_stable_sequence());
|
||||
}, Infinity);
|
||||
}
|
||||
|
||||
@@ -195,7 +195,7 @@ const WorkspaceSettingsWidget = new GObject.Class({
|
||||
let iter = this._store.append();
|
||||
let index = this._store.get_path(iter).get_indices()[0];
|
||||
|
||||
let label = _("Workspace %d").format(index);
|
||||
let label = _("Workspace %d").format(index + 1);
|
||||
this._store.set(iter, [this._store.Columns.LABEL], [label]);
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user