Skip to content

Commit aedc3a4

Browse files
committed
Variety 0.9.0-beta1
1 parent 0a5beb8 commit aedc3a4

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

debian/changelog

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
variety (0.9.0~b1) noble; urgency=medium
2+
3+
* Improvement #795/#800: fix Python 3.14 support; switch to
4+
setuptools-gettext and virtualenv for local development
5+
* Remove broken Flickr and National Geographic downloaders
6+
* Feature #309: Make changing lock screen backgrounds optional
7+
* Feature #714: Add support for Cosmic DE
8+
* Feature #814: add support for KDE Active Blur wallpaper plugin
9+
* Feature #794: Add --meta CLI option to print wallpaper info
10+
(Customize -> Change lock screen background automatically)
11+
* Fix #728: use magick command instead of deprecated convert
12+
* Fix #807: add support for newer versions of Budgie (#807)
13+
* Fix #815: XFCE wallpaper cannot be set on clean installs due to
14+
missing backdrop properties
15+
* Fix #802: fix killing old swaybg processes
16+
* Improvement #792: add .webp support
17+
* Improvement #778: Update German translations
18+
19+
-- James Lu <jlu@debian.org> Fri, 02 Jan 2026 16:03:35 -0800
20+
121
variety (0.8.13) noble; urgency=medium
222

323
* Fix #741: Fix downloading server side options (remove tiny.cc redirector)

variety/data/ui/changes.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
0.9.0-beta1
2+
Improvement #795/#800: fix Python 3.14 support; switch to setuptools-gettext and virtualenv for local development
3+
Remove broken Flickr and National Geographic downloaders
4+
Feature #309: Make changing lock screen backgrounds optional
5+
Feature #714: Add support for Cosmic DE
6+
Feature #814: add support for KDE Active Blur wallpaper plugin
7+
Feature #794: Add --meta CLI option to print wallpaper info(Customize -> Change lock screen background automatically)
8+
Fix #728: use magick command instead of deprecated convert
9+
Fix #807: add support for newer versions of Budgie (#807)
10+
Fix #815: XFCE wallpaper cannot be set on clean installs due to missing backdrop properties
11+
Fix #802: fix killing old swaybg processes
12+
Improvement #792: add .webp support
13+
Improvement #778: Update German translations
14+
115
0.8.13
216
Fix #741: Fix downloading server side options (remove tiny.cc redirector)
317
Fix #733: Fix for EarthviewDownloader

variety_lib/varietyconfig.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
__all__ = ["get_data_file"]
1919

2020
__license__ = "GPL-3"
21-
__version__ = "0.9.0a1"
21+
__version__ = "0.9.0b1"
2222

2323
import importlib.resources
2424

@@ -29,4 +29,4 @@ def get_data_file(*path_segments):
2929
return str(pkg_files_root.joinpath(*path_segments))
3030

3131
def get_version():
32-
return __version__
32+
return __version__

0 commit comments

Comments
 (0)