Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d4c14e0b7 | ||
|
|
283f679fcc | ||
|
|
2935848954 | ||
|
|
9676bc83af |
12
NEWS
12
NEWS
@@ -1,14 +1,6 @@
|
||||
3.18.4
|
||||
3.19.1
|
||||
======
|
||||
* apps-menu: Ignore .desktop entries from legacy dirs
|
||||
|
||||
3.18.3
|
||||
======
|
||||
* apps-menu: Fix .desktop entries in subdirectories
|
||||
|
||||
3.18.2
|
||||
======
|
||||
* Fix classic style issues
|
||||
* Fix some theme issues
|
||||
|
||||
3.18.1
|
||||
======
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.63)
|
||||
AC_INIT([gnome-shell-extensions],[3.18.4],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
AC_INIT([gnome-shell-extensions],[3.19.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([config])
|
||||
|
||||
@@ -409,9 +409,9 @@ StScrollBar {
|
||||
spacing-rows: 15px;
|
||||
spacing-columns: 1em; }
|
||||
|
||||
/* Popvers/Menus */
|
||||
/* Popovers/Menus */
|
||||
.popup-menu {
|
||||
min-width: 200px; }
|
||||
min-width: 15em; }
|
||||
.popup-menu .popup-sub-menu {
|
||||
background-color: #e8e8e8;
|
||||
box-shadow: inset 0 -1px 0px #adadad; }
|
||||
@@ -753,7 +753,7 @@ StScrollBar {
|
||||
|
||||
/* Message list */
|
||||
.message-list {
|
||||
width: 420px; }
|
||||
width: 31.5em; }
|
||||
|
||||
.message-list-sections {
|
||||
spacing: 1.5em; }
|
||||
@@ -824,7 +824,7 @@ StScrollBar {
|
||||
color: transparent; }
|
||||
|
||||
.aggregate-menu {
|
||||
width: 280px; }
|
||||
min-width: 21em; }
|
||||
.aggregate-menu .popup-menu-icon {
|
||||
padding: 0 4px; }
|
||||
|
||||
@@ -961,10 +961,14 @@ StScrollBar {
|
||||
.search-entry {
|
||||
width: 320px;
|
||||
padding: 7px 9px;
|
||||
border-radius: 6px; }
|
||||
border-radius: 6px;
|
||||
border-color: #eeeeec;
|
||||
color: #eeeeec;
|
||||
background-color: #2e3436; }
|
||||
.search-entry:focus {
|
||||
padding: 6px 8px;
|
||||
border-width: 2px; }
|
||||
border-width: 2px;
|
||||
border-color: #4a90d9; }
|
||||
.search-entry .search-entry-icon {
|
||||
icon-size: 1em;
|
||||
padding: 0 4px;
|
||||
|
||||
Submodule data/gnome-shell-sass updated: 034d0b775b...8ea43c4c98
@@ -397,15 +397,18 @@ const ApplicationsButton = new Lang.Class({
|
||||
while ((nextType = iter.next()) != GMenu.TreeItemType.INVALID) {
|
||||
if (nextType == GMenu.TreeItemType.ENTRY) {
|
||||
let entry = iter.get_entry();
|
||||
let appInfo = entry.get_app_info();
|
||||
let id;
|
||||
try {
|
||||
id = entry.get_desktop_file_id(); // catch non-UTF8 filenames
|
||||
id = appInfo.get_id(); // catch non-UTF8 filenames
|
||||
} catch(e) {
|
||||
continue;
|
||||
}
|
||||
let app = appSys.lookup_app(id);
|
||||
if (app && app.get_app_info().should_show())
|
||||
if (appInfo.should_show()) {
|
||||
let menu_id = dir.get_menu_id();
|
||||
this.applicationsByCategory[categoryId].push(app);
|
||||
}
|
||||
} else if (nextType == GMenu.TreeItemType.DIRECTORY) {
|
||||
let subdir = iter.get_directory();
|
||||
if (!subdir.get_is_nodisplay())
|
||||
|
||||
Reference in New Issue
Block a user