Skip to content
Commits on Source (4)
......@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## [0.3.4] - 2019-07-22
### Fixed
- Fixed image file select on Chrome for Android
## [0.3.3] - 2019-07-18
### Fixed
......@@ -83,7 +89,8 @@ Features:
Initial placeholder release
[unreleased]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.3...dev
[unreleased]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.4...dev
[0.3.4]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.3...v0.3.4
[0.3.3]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.2...v0.3.3
[0.3.2]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.1...v0.3.2
[0.3.1]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.0...v0.3.1
......
# first-draft 0.3.3
# first-draft 0.3.4
FOSS live drawing and annotation tool.
[![pipeline status](https://gitlab.com/bytesnz/first-draft/badges/master/pipeline.svg)](https://gitlab.com/bytesnz/first-draft/commits/master)
[![first-draft on NPM](https://bytes.nz/b/first-draft/npm)](https://npmjs.com/package/first-draft)
[![developtment time](https://bytes.nz/b/first-draft/custom?color=yellow&name=development+time&value=~100+hours)](https://gitlab.com/MeldCE/first-draft/blob/master/.tickings)
[![developtment time](https://bytes.nz/b/first-draft/custom?color=yellow&name=development+time&value=~130+hours)](https://gitlab.com/MeldCE/first-draft/blob/master/.tickings)
[![support development](https://bytes.nz/b/first-draft/custom?color=brightgreen&name=support+development&value=$$)](https://patreon.com/first_draft)
[![contributor covenant](https://bytes.nz/b/first-draft/custom?color=purple&name=contributor+covenant&value=v1.4.1+adopted)](https://gitlab.com/MeldCE/first-draft/blob/master/code-of-conduct.md)
......@@ -131,6 +131,8 @@ module.exports = {
// Default: "/d"
draftUri: '/d'
};
```
### Current Controls
......@@ -268,6 +270,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## [0.3.4] - 2019-07-22
### Fixed
- Fixed image file select on Chrome for Android
## [0.3.3] - 2019-07-18
### Fixed
......@@ -344,7 +352,8 @@ Features:
Initial placeholder release
[unreleased]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.3...dev
[unreleased]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.4...dev
[0.3.4]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.3...v0.3.4
[0.3.3]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.2...v0.3.3
[0.3.2]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.1...v0.3.2
[0.3.1]: https://gitlab.com/MeldCE/first-draft/compare/v0.3.0...v0.3.1
......@@ -353,3 +362,4 @@ Initial placeholder release
[0.1.3]: https://gitlab.com/MeldCE/first-draft/compare/v0.1.2...v0.1.3
[0.1.2]: https://gitlab.com/MeldCE/first-draft/compare/v0.0.1...v0.1.2
[0.0.1]: https://gitlab.com/MeldCE/first-draft/tree/v0.0.1
{
"name": "first-draft",
"version": "0.3.3",
"version": "0.3.4",
"description": "FOSS live drawing and annotation tool",
"scripts": {
"start": "server/index.js",
......
......@@ -4,7 +4,7 @@ FOSS live drawing and annotation tool.
[![pipeline status](https://gitlab.com/bytesnz/first-draft/badges/master/pipeline.svg)](https://gitlab.com/bytesnz/first-draft/commits/master)
[![first-draft on NPM](https://bytes.nz/b/first-draft/npm)](https://npmjs.com/package/first-draft)
[![developtment time](https://bytes.nz/b/first-draft/custom?color=yellow&name=development+time&value=~100+hours)](https://gitlab.com/MeldCE/first-draft/blob/master/.tickings)
[![developtment time](https://bytes.nz/b/first-draft/custom?color=yellow&name=development+time&value=~130+hours)](https://gitlab.com/MeldCE/first-draft/blob/master/.tickings)
[![support development](https://bytes.nz/b/first-draft/custom?color=brightgreen&name=support+development&value=$$)](https://patreon.com/first_draft)
[![contributor covenant](https://bytes.nz/b/first-draft/custom?color=purple&name=contributor+covenant&value=v1.4.1+adopted)](https://gitlab.com/MeldCE/first-draft/blob/master/code-of-conduct.md)
......
......@@ -182,7 +182,6 @@ export default {
label: 'Image File(s)',
type: 'file',
attributes: {
capture: 'environment',
multiple: true,
accept: 'image/*'
}
......