Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15080613bc | ||
|
|
2383462a60 |
4
NEWS
4
NEWS
@@ -1,3 +1,7 @@
|
||||
3.18.4
|
||||
======
|
||||
* apps-menu: Ignore .desktop entries from legacy dirs
|
||||
|
||||
3.18.3
|
||||
======
|
||||
* apps-menu: Fix .desktop entries in subdirectories
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.63)
|
||||
AC_INIT([gnome-shell-extensions],[3.18.3],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
AC_INIT([gnome-shell-extensions],[3.18.4],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([config])
|
||||
|
||||
@@ -404,7 +404,7 @@ const ApplicationsButton = new Lang.Class({
|
||||
continue;
|
||||
}
|
||||
let app = appSys.lookup_app(id);
|
||||
if (app.get_app_info().should_show())
|
||||
if (app && app.get_app_info().should_show())
|
||||
this.applicationsByCategory[categoryId].push(app);
|
||||
} else if (nextType == GMenu.TreeItemType.DIRECTORY) {
|
||||
let subdir = iter.get_directory();
|
||||
|
||||
Reference in New Issue
Block a user