M CHANGELOG.md => CHANGELOG.md +8 -0
@@ 8,6 8,13 @@ and this project adheres to
## [Unreleased]
+## [1.3.1] - 2021-07-17
+
+### Fixed
+
++ Bumped the HTTP API version due to the `FileSizeError` that can now occur
+ when adding files
+
## [1.3.0] - 2021-07-17
### Added
@@ 33,6 40,7 @@ and this project adheres to
+ Initial release
[Unreleased]: https://git.sr.ht/~mser/emote-server/tree/develop
+[1.3.1]: https://git.sr.ht/~mser/emote-server/tree/1.3.1
[1.3.0]: https://git.sr.ht/~mser/emote-server/tree/1.3.0
[1.2.0]: https://git.sr.ht/~mser/emote-server/tree/1.2.0
[1.1.0]: https://git.sr.ht/~mser/emote-server/tree/1.1.0
M package.json => package.json +1 -1
@@ 1,6 1,6 @@
{
"name": "emote-server",
- "version": "1.3.0",
+ "version": "1.3.1",
"description": "A simple application to list and serve emotes",
"author": "Michael Serajnik <m@mser.at>",
"license": "AGPL-3.0-or-later",
M src/config/index.js => src/config/index.js +2 -2
@@ 13,8 13,8 @@ if (frozenEmotesPath.startsWith('.')) {
}
module.exports = {
- version: '1.3.0',
- apiVersion: 1,
+ version: '1.3.1',
+ apiVersion: 2,
publicUrl: process.env.EMOTE_SERVER_PUBLIC_URL || 'http://localhost',
port: process.env.EMOTE_SERVER_PORT || 8000,
numberOfWorkers: