diff --git a/yarr@jtoberling/CHANGELOG.md b/yarr@jtoberling/CHANGELOG.md new file mode 100644 index 000000000..5de119b56 --- /dev/null +++ b/yarr@jtoberling/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [1.0.0] - 2023-10-13 +- Initial version + +## [1.0.1] - 2024-01-16 +- Fix byteArray import bug [#1036](https://github.com/linuxmint/cinnamon-spices-desklets/issues/1036) + diff --git a/yarr@jtoberling/files/yarr@jtoberling/desklet.js b/yarr@jtoberling/files/yarr@jtoberling/desklet.js index 7cab497ac..cef8e678b 100755 --- a/yarr@jtoberling/files/yarr@jtoberling/desklet.js +++ b/yarr@jtoberling/files/yarr@jtoberling/desklet.js @@ -19,6 +19,8 @@ const fromXML = require('./fromXML'); const uuid = "yarr@jtoberling"; +const ByteArray = imports.byteArray; + class YarrDesklet extends Desklet.Desklet { statusOk = false; diff --git a/yarr@jtoberling/files/yarr@jtoberling/metadata.json b/yarr@jtoberling/files/yarr@jtoberling/metadata.json index d484109cf..b578fd690 100755 --- a/yarr@jtoberling/files/yarr@jtoberling/metadata.json +++ b/yarr@jtoberling/files/yarr@jtoberling/metadata.json @@ -2,7 +2,7 @@ "max-instances": "1", "description": "Yet Another RSS Reader - now as Cinnamon Desklet", "name": "Yet Another RSS Reader", - "version": "1.0.0", + "version": "1.0.1", "uuid": "yarr@jtoberling", "multiversion": true, "author": "jtoberling",