diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f847b..4641efc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,12 @@ # Changelog -## [0.3.6a1](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/tree/0.3.6a1) (2024-11-05) +## [0.3.7a1](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/tree/0.3.7a1) (2024-11-15) -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/compare/0.3.5a1...0.3.6a1) +[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/compare/0.3.6...0.3.7a1) **Merged pull requests:** -- fix:allow workshop 3.0.0 [\#13](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/pull/13) ([JarbasAl](https://github.com/JarbasAl)) -- de-de/translate [\#12](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/pull/12) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) - -## [0.3.5a1](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/tree/0.3.5a1) (2024-11-02) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/compare/0.3.4...0.3.5a1) - -**Merged pull requests:** - -- da-dk/translate [\#11](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/pull/11) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- fix: skill.json [\#15](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/pull/15) ([JarbasAl](https://github.com/JarbasAl)) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..201dc39 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include locale * +recursive-include gui * \ No newline at end of file diff --git a/locale/en-us/skill.json b/locale/en-us/skill.json new file mode 100644 index 0000000..958879d --- /dev/null +++ b/locale/en-us/skill.json @@ -0,0 +1,22 @@ +{ + "skill_id": "skill-ovos-wallpapers.openvoiceos", + "source": "https://github.com/OpenVoiceOS/skill-ovos-wallpapers", + "extra_plugins": { + "core": [], + "PHAL": ["ovos-PHAL-plugin-wallpaper-manager"], + "listener": [], + "audio": [], + "media": [], + "gui": [] + }, + "name": "Wallpaper Changer", + "description": "Pictures from selected subreddits.", + "examples": [ + "new wallpaper", + "change wallpaper to nature", + "show me a picture", + "show me a picture with dogs", + "make that my wallpaper" + ], + "tags": ["wallpapers", "images", "pictures"] +} \ No newline at end of file diff --git a/locale/en-us/wallpaper.random.intent b/locale/en-us/wallpaper.random.intent index c6b465e..e0e52df 100644 --- a/locale/en-us/wallpaper.random.intent +++ b/locale/en-us/wallpaper.random.intent @@ -1 +1 @@ -(change|random|new) (wallpaper|wall paper) \ No newline at end of file +(change|random|new) (current|homescreen|the|) (wallpaper|wall paper) \ No newline at end of file diff --git a/res/desktop/skill-wallpapers.desktop b/res/desktop/skill-wallpapers.desktop deleted file mode 100644 index 08dff8d..0000000 --- a/res/desktop/skill-wallpapers.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Terminal=false -Type=Application -Name=Wallpapers -Exec=mycroft-gui-app --hideTextInput --skill=skill-wallpapers.jarbasskills.home -Icon=icon.png -Categories=VoiceApp -StartupNotify=false -X-DBUS-StartupType=None -X-KDE-StartupNotify=false diff --git a/res/desktop/skill.json b/res/desktop/skill.json deleted file mode 100644 index 8f52725..0000000 --- a/res/desktop/skill.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "WallpapersSkill", - "skillname": "skill-wallpapers", - "authorname": "JarbasSkills", - "foldername": "", - "url": "https://github.com/JarbasSkills/skill-wallpapers", - "branch": "dev", - "desktopFile": false, - "warning": "", - "systemDeps": false, - "platforms": [ - "arm", - "arm64", - "i386", - "x86_64", - "ia64" - ], - "examples": [ - "new wallpaper", - "change wallpaper to nature", - "show me a picture", - "show me a picture with dogs", - "make that my wallpaper" - ] -} diff --git a/res/icon/icon.png b/res/icon/icon.png deleted file mode 100644 index ebb04eb..0000000 Binary files a/res/icon/icon.png and /dev/null differ diff --git a/translations/en-us/intents.json b/translations/en-us/intents.json index 14c0c30..f66d966 100644 --- a/translations/en-us/intents.json +++ b/translations/en-us/intents.json @@ -15,6 +15,6 @@ "(change|random|new) (wallpaper|wall paper) (about|for|with|to) {query}" ], "wallpaper.random.intent": [ - "(change|random|new) (wallpaper|wall paper)" + "(change|random|new) (current|homescreen|the|) (wallpaper|wall paper)" ] } \ No newline at end of file diff --git a/version.py b/version.py index 8ddb69f..844ba08 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 3 -VERSION_BUILD = 6 -VERSION_ALPHA = 0 +VERSION_BUILD = 7 +VERSION_ALPHA = 1 # END_VERSION_BLOCK