-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
2,811 additions
and
689 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
UUID = [email protected] | ||
VERSION = 29 | ||
VERSION = 31 | ||
|
||
ifeq ($(strip $(DESTDIR)),) | ||
INSTALLBASE = $(HOME)/.local/share/gnome-shell/extensions | ||
|
@@ -21,8 +21,12 @@ install: update-translation | |
echo done | ||
|
||
pot: | ||
xgettext --package-name=DeskChanger --package-version=$(VERSION) -k --keyword=_ -o ./po/desk-changer.pot -D ./$(UUID)/ _deskchanger.js convenience.js extension.js prefs.js service.js common/utils.js daemon/interface.js daemon/profile.js daemon/server.js daemon/timer.js ui/control.js ui/panelMenu.js ui/popupMenu.js | ||
xgettext --package-name=DeskChanger --package-version=$(VERSION) -k --keyword=_ -o ./po/desk-changer.pot -D ./$(UUID)/ _deskchanger.js convenience.js extension.js prefs.js resources/ui/prefs.ui service.js common/utils.js daemon/interface.js daemon/profile.js daemon/server.js daemon/timer.js ui/control.js ui/panelMenu.js ui/popupMenu.js | ||
|
||
update-translation: all | ||
cd po; \ | ||
./compile.sh ../[email protected]/locale; | ||
|
||
zipfile: all | ||
cd ./$(UUID)/; \ | ||
zip -r ../$(UUID)-$(VERSION).zip . -x 'resources/ui/*' -x 'resources/icons/*' -x 'resources/*.xml' -x 'resources/*.in' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,17 +45,19 @@ interface. The only interface available to the daemon now is the DBus | |
interface. | ||
|
||
#### DBUS Interface | ||
**Name**: org.gnome.Shell.Extensions.DeskChanger.Daemon | ||
**Name**: `org.gnome.Shell.Extensions.DeskChanger.Daemon` | ||
|
||
**Path**: /org/gnome/Shell/Extensions/DeskChanger/Daemon | ||
**Path**: `/org/gnome/Shell/Extensions/DeskChanger/Daemon` | ||
|
||
##### Methods | ||
* Load(String profile) - Loads the specified profile | ||
* Next() - Moves to the next wallpaper, returns the uri | ||
* Prev() - Moves to the previous wallpaper, returns the uri | ||
* Quit() - Terminates the daemon process | ||
* Start() - Starts the daemon | ||
* Stop() - Stops the daemon | ||
* `Load(String profile)` Loads the specified profile and respective locations | ||
* `Next()` Switches to the next wallpaper, returns the uri | ||
* `Prev()` Switches to the previous wallpaper, returns the uri | ||
* `Quit()` Terminates the daemon process. | ||
* `Start()` Enables automatic rotation and makes the daemon available | ||
* `Stop([Boolean quit])` Disables automatic rotation and makes the daemon | ||
unavaialble for use. If `quit` is `true` then the daemon process will be | ||
terminated. | ||
|
||
##### Properties | ||
* History - Read only array of history | ||
|
@@ -75,7 +77,7 @@ To view the settings in dconf-editor, just use the `GSETTINGS_SCHEMA_DIR=` | |
environment variable to open dconf-editor with the extensions schema available | ||
to the editor. | ||
|
||
>$ GSETTINGS_SCHEMA_DIR=~/.local/share/gnome-shell/extensions/desk-[email protected]/schemas/ dconf-editor` | ||
>$ GSETTINGS_SCHEMA_DIR=~/.local/share/gnome-shell/extensions/desk-[email protected]/schemas/ dconf-editor /org/gnome/shell/extensions/desk-changer | ||
Then navigate to `org.gnome.shell.extensions.desk-changer` and you will see | ||
Then navigate to `/org/gnome/shell/extensions/desk-changer` and you will see | ||
all of the available settings for the extension and daemon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"description": "Simple wallpaper changer with multiple profile support. Supports integration into the system menu or its own panel icon. The daemon is written in Python and runs independently of the extension.", | ||
"description": "Simple wallpaper changer with multiple profile support. Supports integration into the system menu or its own panel icon. The daemon is written using gjs and runs independently of the extension.", | ||
"gettext-domain": "desk-changer", | ||
"name": "Desk Changer", | ||
"settings-schema": "org.gnome.shell.extensions.desk-changer", | ||
"shell-version": [ | ||
"3.30", | ||
"3.32", | ||
"3.34", | ||
"3.36", | ||
"3.38" | ||
"3.38", | ||
"40.0" | ||
], | ||
"url": "https://github.com/BigE/desk-changer/", | ||
"uuid": "[email protected]", | ||
"version": "30" | ||
"version": "31" | ||
} |
Oops, something went wrong.