~ubuntu-branches/ubuntu/vivid/gnome-shell-extensions/vivid-proposed

« back to all changes in this revision

Viewing changes to extensions/apps-menu/extension.js

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Josselin Mouette, Michael Biebl
  • Date: 2012-02-11 23:28:53 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120211232853-mc92yae3sgemtz7l
Tags: 3.2.3-1
[ Josselin Mouette ]
* gnome-shell-extensions.gsettings-override: enable the alternative 
  status menu by default. Closes: #648112.
* Use ${gnome:Version} to generate strict dependencies, it’s very 
  unlikely that extensions remain compatible after a major upgrade.

[ Michael Biebl ]
* Upload to unstable.

[ Josselin Mouette ]
* 01_status-menu_disable_accounts.patch: new patch. Drop the unusable
  advertisement for Google. It is already available in the control 
  center anyway.

[ Michael Biebl ]
* New upstream release.
* Drop patches which have been merged upstream:
  - debian/patches/upstream/*
  - debian/patches/fix-*
* Refresh 01_status-menu_disable_accounts.patch.
* Add 02-Revert-all-remove-all-GSettings-usage.patch: Use GSettings since we
  install the extensions system-wide.
* Use dh-autoreconf to generate the build system.
* Add 03-Revert-Remove-all-references-to-localedir-from-metad.patch: Use
  locales from system-wide location.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
            if (nextType == GMenu.TreeItemType.ENTRY) {
69
69
                var entry = iter.get_entry();
70
70
                var app = appsys.lookup_app_by_tree_entry(entry);
71
 
                menu.addMenuItem(new AppMenuItem(app));
 
71
                if (!entry.get_app_info().get_nodisplay())
 
72
                    menu.addMenuItem(new AppMenuItem(app));
72
73
            } else if (nextType == GMenu.TreeItemType.DIRECTORY) {
73
 
                this._loadCategory(iter.get_directory(), appList);
 
74
                this._loadCategory(iter.get_directory(), menu);
74
75
            }
75
76
        }
76
77
    },