diff --git a/README.md b/README.md
index e191f41..e121926 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,7 @@ Solus Artwork contains many backgrounds graciously provided by the community for
- Except when declared otherwise, the majority of the photo images in `backgrounds/` have been kindly provided by John McCormack for inclusion into Solus. We are incredibly grateful for the beautiful images he has provided.
- AerialDesert.jpg is provided by [NASA](https://unsplash.com/photos/whDrFMucHkc) and licensed under [Unsplash License](https://unsplash.com/license).
- BluePeaks.jpg is provided by [Fabrizio Conti](https://unsplash.com/photos/k6GpdsPJSZw) and licensed under [Unsplash License](https://unsplash.com/license).
+- Celeste.jpg is a modified wallpaper, originally sourced from [Paweł Czerwiński](https://unsplash.com/photos/SoB70WFVWGU) and licensed under [Unsplash License](https://unsplash.com/license).
- LakeSideView.jpg is provided by [Jake Hills](https://unsplash.com/photos/mI02K_LxlfU) and licensed under [Unsplash License](https://unsplash.com/license).
- Peeks.jpg is a modified wallpaper from [Pexels](https://www.pexels.com/photo/green-pine-trees-covered-with-fogs-under-white-sky-during-daytime-167699/) and is licensed under the [Pexels License](https://www.pexels.com/photo-license/).
- SolusFresh.png, book.png, and chalk.jpeg were kindly provided by Alejandro Seoane and are available under the main package license, GPL-2.0.
@@ -22,7 +23,7 @@ Solus Artwork contains many backgrounds graciously provided by the community for
## Branding and Logos
-- Copyright © 2015-2020 Solus Project.
+- Copyright © 2015-2021 Solus Project.
- The contents of `icons/` and the Solus logo itself is Copyright © 2016-2019 Solus Project. All Rights Reserved.
## Tooling
diff --git a/backgrounds/Celeste.jpg b/backgrounds/Celeste.jpg
new file mode 100644
index 0000000..4dcf4a6
Binary files /dev/null and b/backgrounds/Celeste.jpg differ
diff --git a/backgrounds/meson.build b/backgrounds/meson.build
index 3b41e52..0cfbbf6 100644
--- a/backgrounds/meson.build
+++ b/backgrounds/meson.build
@@ -6,6 +6,7 @@ wallpapers = [
'BluePeaks.jpg',
'BogFlower.jpg',
'BrittasLake.jpg',
+ 'Celeste.jpg',
'Cliffs_of_Moher.png',
'Crags.png',
'Excl_Autumn_Leaf.jpg',
diff --git a/backgrounds/solus-wallpapers.xml.in b/backgrounds/solus-wallpapers.xml.in
index e1e168b..e6ee90c 100644
--- a/backgrounds/solus-wallpapers.xml.in
+++ b/backgrounds/solus-wallpapers.xml.in
@@ -41,6 +41,14 @@
#000000
solid
+
+ Celeste
+ @prefix@/share/backgrounds/solus/Celeste.jpg
+ zoom
+ #000000
+ #000000
+ solid
+
Cliffs of Moher
@prefix@/share/backgrounds/solus/Cliffs_of_Moher.png
diff --git a/icons/meson.build b/icons/meson.build
index 13fa684..7036273 100644
--- a/icons/meson.build
+++ b/icons/meson.build
@@ -22,7 +22,6 @@ foreach icon_size : icon_sizes
icons = [
'@0@/distributor-logo-solus@1@'.format(icon_size, suffix),
'@0@/start-here-solus@1@'.format(icon_size, suffix),
- '@0@/start-here-solus-mono@1@'.format(icon_size, suffix),
]
target_dir = join_paths(icons_dir, icon_size, 'places')
install_data(
@@ -31,6 +30,7 @@ foreach icon_size : icon_sizes
)
endforeach
+install_data(['scalable/start-here-solus-mono.svg',], install_dir: join_paths(icons_dir, 'scalable', 'places'))
# Install the mimetypes icons
foreach icon_size : icon_sizes
diff --git a/meson.build b/meson.build
index 6006245..93cce95 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'artwork',
['c'],
- version: '27',
+ version: '28',
license: [
'CC-BY-3.0 ',
'CC-BY-SA-4.0',
diff --git a/mkrelease.sh b/mkrelease.sh
index d7918d3..6987d95 100755
--- a/mkrelease.sh
+++ b/mkrelease.sh
@@ -6,7 +6,7 @@ meson --prefix /usr build
ninja dist -C build
# Bump in tandem with meson.build, run script once new tag is up.
-VERSION="27"
+VERSION=$(grep "version:" meson.build | head -n1 | cut -d"'" -f2)
TAR="artwork-${VERSION}.tar.xz"
mv build/meson-dist/$TAR .
diff --git a/tooling/go.mod b/tooling/go.mod
new file mode 100644
index 0000000..fddcdaf
--- /dev/null
+++ b/tooling/go.mod
@@ -0,0 +1,3 @@
+module github.com/getsolus/artwork/tooling/generate-wallpaper
+
+go 1.15