-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dont reset blur on disable() if never enabled #113 * remove Lang and Mainloop refs in prefs and utils * migrate to GObject from Lang module, fix build * add image gallery * add support for GNOME 41 * add thumbnails to gallery (faster loading) * Add Japanese translation (#122) #14 thanks to @nexryai * update README and metadata * minor fix for GNOME 40+ on 1080p or lower screens Co-authored-by: graubs <[email protected]> Co-authored-by: Cen <[email protected]> Co-authored-by: nexryai <[email protected]>
- Loading branch information
1 parent
29c0ec1
commit 294685b
Showing
26 changed files
with
1,395 additions
and
493 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 |
---|---|---|
|
@@ -4,3 +4,7 @@ [email protected] | |
*.log | ||
#Settings.ui# | ||
translations.txt | ||
Settings.ui.h | ||
Settings4.ui.h | ||
carousel.ui.h | ||
carousel4.ui.h |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,9 +1,11 @@ | ||
#!/bin/bash | ||
|
||
glib-compile-schemas schemas/ | ||
intltool-extract --type=gettext/glade Settings.ui | ||
intltool-extract --type=gettext/glade Settings4.ui | ||
xgettext -k -k_ -kN_ -o locale/BingWallpaper.pot Settings.ui.h Settings4.ui.h extension.js prefs.js blur.js utils.js convenience.js --from-code=UTF-8 | ||
intltool-extract --type=gettext/glade ui/Settings.ui | ||
intltool-extract --type=gettext/glade ui/Settings4.ui | ||
intltool-extract --type=gettext/glade ui/carousel.ui | ||
intltool-extract --type=gettext/glade ui/carousel4.ui | ||
xgettext -k -k_ -kN_ -o locale/BingWallpaper.pot Settings.ui.h Settings4.ui.h extension.js prefs.js blur.js utils.js convenience.js carousel.ui carousel4.ui --from-code=UTF-8 | ||
|
||
echo "Translation status" > translations.txt | ||
for D in locale/*; do | ||
|
@@ -17,4 +19,4 @@ rm [email protected] | |
|
||
zip -r [email protected] * | ||
|
||
zip -d [email protected] screenshot/* screenshot buildzip.sh Settings.ui.h npm-debug.log icons/original/* .* translations.txt | ||
zip -d [email protected] screenshot/* screenshot buildzip.sh npm-debug.log icons/original/* .* translations.txt *.h package.json |
Oops, something went wrong.