Codebase list gnome-shell-extensions / 3f0dc92
Import Upstream version 3.22.1 Sophie Brun 7 years ago
4 changed file(s) with 23 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 3.22.1
1 ======
2 * window-list: Update icon on app changes
3
04 3.22.0
15 ======
26 * updated translations (en_GB)
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.22.0.
2 # Generated by GNU Autoconf 2.69 for gnome-shell-extensions 3.22.1.
33 #
44 # Report bugs to <https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions>.
55 #
580580 # Identity of this package.
581581 PACKAGE_NAME='gnome-shell-extensions'
582582 PACKAGE_TARNAME='gnome-shell-extensions'
583 PACKAGE_VERSION='3.22.0'
584 PACKAGE_STRING='gnome-shell-extensions 3.22.0'
583 PACKAGE_VERSION='3.22.1'
584 PACKAGE_STRING='gnome-shell-extensions 3.22.1'
585585 PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions'
586586 PACKAGE_URL=''
587587
12821282 # Omit some internal or obsolete options to make the list less imposing.
12831283 # This message is too long to be a string in the A/UX 3.1 sh.
12841284 cat <<_ACEOF
1285 \`configure' configures gnome-shell-extensions 3.22.0 to adapt to many kinds of systems.
1285 \`configure' configures gnome-shell-extensions 3.22.1 to adapt to many kinds of systems.
12861286
12871287 Usage: $0 [OPTION]... [VAR=VALUE]...
12881288
13531353
13541354 if test -n "$ac_init_help"; then
13551355 case $ac_init_help in
1356 short | recursive ) echo "Configuration of gnome-shell-extensions 3.22.0:";;
1356 short | recursive ) echo "Configuration of gnome-shell-extensions 3.22.1:";;
13571357 esac
13581358 cat <<\_ACEOF
13591359
14711471 test -n "$ac_init_help" && exit $ac_status
14721472 if $ac_init_version; then
14731473 cat <<\_ACEOF
1474 gnome-shell-extensions configure 3.22.0
1474 gnome-shell-extensions configure 3.22.1
14751475 generated by GNU Autoconf 2.69
14761476
14771477 Copyright (C) 2012 Free Software Foundation, Inc.
16511651 This file contains any messages produced by compilers while
16521652 running configure, to aid debugging if configure makes a mistake.
16531653
1654 It was created by gnome-shell-extensions $as_me 3.22.0, which was
1654 It was created by gnome-shell-extensions $as_me 3.22.1, which was
16551655 generated by GNU Autoconf 2.69. Invocation command line was
16561656
16571657 $ $0 $@
25182518
25192519 # Define the identity of the package.
25202520 PACKAGE='gnome-shell-extensions'
2521 VERSION='3.22.0'
2521 VERSION='3.22.1'
25222522
25232523
25242524 cat >>confdefs.h <<_ACEOF
73297329 # report actual input values of CONFIG_FILES etc. instead of their
73307330 # values after options handling.
73317331 ac_log="
7332 This file was extended by gnome-shell-extensions $as_me 3.22.0, which was
7332 This file was extended by gnome-shell-extensions $as_me 3.22.1, which was
73337333 generated by GNU Autoconf 2.69. Invocation command line was
73347334
73357335 CONFIG_FILES = $CONFIG_FILES
73867386 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
73877387 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
73887388 ac_cs_version="\\
7389 gnome-shell-extensions config.status 3.22.0
7389 gnome-shell-extensions config.status 3.22.1
73907390 configured by $0, generated by GNU Autoconf 2.69,
73917391 with options \\"\$ac_cs_config\\"
73927392
00 AC_PREREQ(2.63)
1 AC_INIT([gnome-shell-extensions],[3.22.0],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
1 AC_INIT([gnome-shell-extensions],[3.22.1],[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])
151151 this._iconThemeChangedId =
152152 this._textureCache.connect('icon-theme-changed',
153153 Lang.bind(this, this._updateIcon));
154 this._notifyWmClass =
155 this._metaWindow.connect('notify::wm-class',
156 Lang.bind(this, this._updateIcon));
157 this._notifyAppId =
158 this._metaWindow.connect('notify::gtk-application-id',
159 Lang.bind(this, this._updateIcon));
154160 this._updateIcon();
155161
156162 this.actor.connect('destroy', Lang.bind(this, this._onDestroy));
192198 this._textureCache.disconnect(this._iconThemeChangedId);
193199 this._metaWindow.disconnect(this._notifyTitleId);
194200 this._metaWindow.disconnect(this._notifyMinimizedId);
201 this._metaWindow.disconnect(this._notifyWmClass);
202 this._metaWindow.disconnect(this._notifyAppId);
195203 }
196204 });
197205