Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a85764a0ab | |||
| eaa2c7857e | |||
| 6e1b5bc346 | |||
| f59ab1272d | |||
| f25ffe6f63 |
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
[submodule "data/gnome-shell-sass"]
|
[submodule "data/gnome-shell-sass"]
|
||||||
path = data/gnome-shell-sass
|
path = data/gnome-shell-sass
|
||||||
url = https://git.gnome.org/browse/gnome-shell-sass/
|
url = https://gitlab.gnome.org/GNOME/gnome-shell-sass.git
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
3.29.2
|
||||||
|
======
|
||||||
|
* Misc. bug fixes [Florian; #69]
|
||||||
|
|
||||||
|
Contributors:
|
||||||
|
Florian Müllner
|
||||||
|
|
||||||
3.28.1
|
3.28.1
|
||||||
======
|
======
|
||||||
* Misc. bug fixes [Xiaoguang, Florian; #59, #62]
|
* Misc. bug fixes [Xiaoguang, Florian; #59, #62]
|
||||||
|
|||||||
+1
-1
Submodule data/gnome-shell-sass updated: 10a8ef1986...6cd1fc7f4a
@@ -22,6 +22,7 @@ for f in $extensiondir/*; do
|
|||||||
schema=$schemadir/org.gnome.shell.extensions.$name.gschema.xml
|
schema=$schemadir/org.gnome.shell.extensions.$name.gschema.xml
|
||||||
|
|
||||||
cp $srcdir/NEWS $srcdir/COPYING $f
|
cp $srcdir/NEWS $srcdir/COPYING $f
|
||||||
|
cp -r $localedir $f
|
||||||
|
|
||||||
if [ -f $schema ]; then
|
if [ -f $schema ]; then
|
||||||
mkdir $f/schemas
|
mkdir $f/schemas
|
||||||
|
|||||||
@@ -175,11 +175,11 @@ class DriveMenu extends PanelMenu.Button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
destroy() {
|
destroy() {
|
||||||
if (this._connectedId) {
|
if (this._addedId) {
|
||||||
this._monitor.disconnect(this._connectedId);
|
this._monitor.disconnect(this._addedId);
|
||||||
this._monitor.disconnect(this._disconnectedId);
|
this._monitor.disconnect(this._removedId);
|
||||||
this._connectedId = 0;
|
this._addedId = 0;
|
||||||
this._disconnectedId = 0;
|
this._removedId = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
super.destroy();
|
super.destroy();
|
||||||
|
|||||||
Reference in New Issue
Block a user