Codebase list gnome-shell-extensions / efdbbb4
Imported Debian patch 3.18.3-1 Michael Biebl authored 8 years ago Raphaƫl Hertzog committed 8 years ago
5 changed file(s) with 23 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 3.18.3
1 ======
2 * apps-menu: Fix .desktop entries in subdirectories
3
04 3.18.2
15 ======
26 * Fix classic style issues
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for gnome-shell-extensions 3.18.2.
2 # Generated by GNU Autoconf 2.69 for gnome-shell-extensions 3.18.3.
33 #
44 # Report bugs to <https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions>.
55 #
579579 # Identity of this package.
580580 PACKAGE_NAME='gnome-shell-extensions'
581581 PACKAGE_TARNAME='gnome-shell-extensions'
582 PACKAGE_VERSION='3.18.2'
583 PACKAGE_STRING='gnome-shell-extensions 3.18.2'
582 PACKAGE_VERSION='3.18.3'
583 PACKAGE_STRING='gnome-shell-extensions 3.18.3'
584584 PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions'
585585 PACKAGE_URL=''
586586
12561256 # Omit some internal or obsolete options to make the list less imposing.
12571257 # This message is too long to be a string in the A/UX 3.1 sh.
12581258 cat <<_ACEOF
1259 \`configure' configures gnome-shell-extensions 3.18.2 to adapt to many kinds of systems.
1259 \`configure' configures gnome-shell-extensions 3.18.3 to adapt to many kinds of systems.
12601260
12611261 Usage: $0 [OPTION]... [VAR=VALUE]...
12621262
13231323
13241324 if test -n "$ac_init_help"; then
13251325 case $ac_init_help in
1326 short | recursive ) echo "Configuration of gnome-shell-extensions 3.18.2:";;
1326 short | recursive ) echo "Configuration of gnome-shell-extensions 3.18.3:";;
13271327 esac
13281328 cat <<\_ACEOF
13291329
14191419 test -n "$ac_init_help" && exit $ac_status
14201420 if $ac_init_version; then
14211421 cat <<\_ACEOF
1422 gnome-shell-extensions configure 3.18.2
1422 gnome-shell-extensions configure 3.18.3
14231423 generated by GNU Autoconf 2.69
14241424
14251425 Copyright (C) 2012 Free Software Foundation, Inc.
14361436 This file contains any messages produced by compilers while
14371437 running configure, to aid debugging if configure makes a mistake.
14381438
1439 It was created by gnome-shell-extensions $as_me 3.18.2, which was
1439 It was created by gnome-shell-extensions $as_me 3.18.3, which was
14401440 generated by GNU Autoconf 2.69. Invocation command line was
14411441
14421442 $ $0 $@
23022302
23032303 # Define the identity of the package.
23042304 PACKAGE='gnome-shell-extensions'
2305 VERSION='3.18.2'
2305 VERSION='3.18.3'
23062306
23072307
23082308 cat >>confdefs.h <<_ACEOF
41214121 # report actual input values of CONFIG_FILES etc. instead of their
41224122 # values after options handling.
41234123 ac_log="
4124 This file was extended by gnome-shell-extensions $as_me 3.18.2, which was
4124 This file was extended by gnome-shell-extensions $as_me 3.18.3, which was
41254125 generated by GNU Autoconf 2.69. Invocation command line was
41264126
41274127 CONFIG_FILES = $CONFIG_FILES
41784178 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
41794179 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
41804180 ac_cs_version="\\
4181 gnome-shell-extensions config.status 3.18.2
4181 gnome-shell-extensions config.status 3.18.3
41824182 configured by $0, generated by GNU Autoconf 2.69,
41834183 with options \\"\$ac_cs_config\\"
41844184
00 AC_PREREQ(2.63)
1 AC_INIT([gnome-shell-extensions],[3.18.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
1 AC_INIT([gnome-shell-extensions],[3.18.3],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
22
33 AC_CONFIG_MACRO_DIR([m4])
44 AC_CONFIG_AUX_DIR([config])
0 gnome-shell-extensions (3.18.3-1) unstable; urgency=medium
1
2 * New upstream release.
3
4 -- Michael Biebl <[email protected]> Thu, 14 Jan 2016 22:49:16 +0100
5
06 gnome-shell-extensions (3.18.2-1) unstable; urgency=medium
17
28 * New upstream release.
396396 while ((nextType = iter.next()) != GMenu.TreeItemType.INVALID) {
397397 if (nextType == GMenu.TreeItemType.ENTRY) {
398398 let entry = iter.get_entry();
399 let appInfo = entry.get_app_info();
400399 let id;
401400 try {
402 id = appInfo.get_id(); // catch non-UTF8 filenames
401 id = entry.get_desktop_file_id(); // catch non-UTF8 filenames
403402 } catch(e) {
404403 continue;
405404 }
406405 let app = appSys.lookup_app(id);
407 if (appInfo.should_show()) {
408 let menu_id = dir.get_menu_id();
406 if (app.get_app_info().should_show())
409407 this.applicationsByCategory[categoryId].push(app);
410 }
411408 } else if (nextType == GMenu.TreeItemType.DIRECTORY) {
412409 let subdir = iter.get_directory();
413410 if (!subdir.get_is_nodisplay())