diff --git a/CHANGELOG.md b/CHANGELOG.md index c8239c9..8d2fc1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ Nuvola SDK Change Log * convert-project: Convert `integrate.js` to Standard JS code style. * check-project: Check that `integrate.js` uses Standard JS code style. * convert-project: API number in metadata is upgraded to that of Nuvola SDK. +* Makefile generator: If `src/webview.png` image is found, it is used to generate screenshots combining that web view + snapshot image with base Nuvola screenshots. The resulting images can be found in the screenshots subdirectory. + More screenshot types will be added in the next development cycle. Issue: tiliado/nuvolasdk#5 4.11.0 - May 8th, 2018 ---------------------- diff --git a/nuvolasdk/data/screenshots/gnome.png b/nuvolasdk/data/screenshots/gnome.png new file mode 100644 index 0000000..3c0ad77 Binary files /dev/null and b/nuvolasdk/data/screenshots/gnome.png differ diff --git a/nuvolasdk/data/screenshots/pantheon.png b/nuvolasdk/data/screenshots/pantheon.png index 974c372..fd51c9a 100644 Binary files a/nuvolasdk/data/screenshots/pantheon.png and b/nuvolasdk/data/screenshots/pantheon.png differ diff --git a/nuvolasdk/data/screenshots/unity.png b/nuvolasdk/data/screenshots/unity.png index 92f522a..ce45d56 100644 Binary files a/nuvolasdk/data/screenshots/unity.png and b/nuvolasdk/data/screenshots/unity.png differ diff --git a/nuvolasdk/screenshots.py b/nuvolasdk/screenshots.py index bb91ee1..2363c26 100644 --- a/nuvolasdk/screenshots.py +++ b/nuvolasdk/screenshots.py @@ -57,8 +57,9 @@ BASE_SCREENSHOTS = { 'other': [ - ('pantheon.png', '104,69+1080,600', '#c1c1c1'), - ('unity.png', '132,106+1080,600', '#c1c1c1'), + ('pantheon.png', '90,80+1080,600', '#c1c1c1'), + ('unity.png', '108,106+1080,600', '#c1c1c1'), + ('gnome.png', '117,87+1080,600', '#c1c1c1'), ] } diff --git a/work-files/screenshots/gnome.xcf b/work-files/screenshots/gnome.xcf new file mode 100644 index 0000000..7a35f25 Binary files /dev/null and b/work-files/screenshots/gnome.xcf differ diff --git a/work-files/screenshots/pantheon.xcf b/work-files/screenshots/pantheon.xcf index e5841ed..6bb92ed 100644 Binary files a/work-files/screenshots/pantheon.xcf and b/work-files/screenshots/pantheon.xcf differ diff --git a/work-files/screenshots/unity.xcf b/work-files/screenshots/unity.xcf index 4fce6b0..dad00c5 100644 Binary files a/work-files/screenshots/unity.xcf and b/work-files/screenshots/unity.xcf differ