~mser/emote-server

364bcf4decd4cfcd46b23735bbe597c9b60f9f2d — Michael Serajnik 2 years ago 71bff18
Release 1.1.0
3 files changed, 5 insertions(+), 2 deletions(-)

M CHANGELOG.md
M package.json
M src/config/index.js
M CHANGELOG.md => CHANGELOG.md +3 -0
@@ 8,6 8,8 @@ and this project adheres to

## [Unreleased]

## [1.1.0] - 2021-04-02

### Added

+ Frozen emote generation support for APNGs


@@ 19,4 21,5 @@ and this project adheres to
+ Initial release

[Unreleased]: https://git.sr.ht/~mser/emote-server/tree/develop
[1.1.0]: https://git.sr.ht/~mser/emote-server/tree/1.1.0
[1.0.0]: https://git.sr.ht/~mser/emote-server/tree/1.0.0

M package.json => package.json +1 -1
@@ 1,6 1,6 @@
{
  "name": "emote-server",
  "version": "1.0.0",
  "version": "1.1.0",
  "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 +1 -1
@@ 13,7 13,7 @@ if (frozenEmotesPath.startsWith('.')) {
}

module.exports = {
  version: '1.0.0',
  version: '1.1.0',
  apiVersion: 1,
  publicUrl: process.env.EMOTE_SERVER_PUBLIC_URL || 'http://localhost',
  port: process.env.EMOTE_SERVER_PORT || 8000,