diff --git a/CHANGELOG.md b/CHANGELOG.md index e78c0e0..d95e0d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.3.0 - 2020-07-08 +### Added +- Enabled users to set a custom filename for the recording. + ## 0.2.0 - 2020-06-09 ### Added - Enabled users to cancel uploads diff --git a/TODO.md b/TODO.md index d3bfad5..23351ea 100644 --- a/TODO.md +++ b/TODO.md @@ -1,7 +1,6 @@ ## TODO - Implement proper error handling/messages. -- Let the user specify a custom filename for the recording. - Make recording quality/resolution configurable. - Add audio capture option to screen recording. - Add ability to cut final recording (either at beginning or end). diff --git a/plugin.json b/plugin.json index 89d4e70..4e293d1 100644 --- a/plugin.json +++ b/plugin.json @@ -2,7 +2,7 @@ "id": "com.mattermost.screen", "name": "screen", "description": "Mattermost plugin for screen recording.", - "version": "0.2.0", + "version": "0.3.0", "min_server_version": "5.12.0", "webapp": { "bundle_path": "webapp/dist/main.js" diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index 120c924..0de96ba 100644 --- a/webapp/src/manifest.js +++ b/webapp/src/manifest.js @@ -1,4 +1,4 @@ // This file is automatically generated. Do not modify it manually. export const id = 'com.mattermost.screen'; -export const version = '0.2.0'; +export const version = '0.3.0';