diff --git a/CHANGELOG.md b/CHANGELOG.md index 166e21d..0875e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,27 +5,38 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.1] - 2022-07-18 + +### Added + +- Max file size on the client now. + +### Changed + +- Changed encoding from hex to base64. +- Chinese language code. + ## [2.0.0] - 2022-07-16 ### Added -- Theming for logo and description text +- Theming for logo and description text. ### Changed -- Moved to redis -- New html sanitizing library +- Moved to redis. +- New html sanitizing library. ## [2.0.0-rc.0] - 2022-07-15 ### Added -- Theming for logo and description text +- Theming for logo and description text. ### Changed -- Moved to redis -- New html sanitizing library +- Moved to redis. +- New html sanitizing library. ## [1.5.3] - 2022-06-07 diff --git a/README.md b/README.md index 49fc2d9..cd8f016 100644 --- a/README.md +++ b/README.md @@ -50,15 +50,15 @@ of the notes even if it tried to. ## Environment Variables -| Variable | Default | Description | -| ---------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------- | -| `REDIS` | `redis://redis/` | Redis URL to connect to. | -| `SIZE_LIMIT` | `1 KiB` | Max size for body. Accepted values according to [byte-unit](https://docs.rs/byte-unit/). `512 MiB` is the maximum allowed | -| `MAX_VIEWS` | `100` | Maximal number of views. | -| `MAX_EXPIRATION` | `360` | Maximal expiration in minutes. | -| `ALLOW_ADVANCED` | `true` | Allow custom configuration. If set to `false` all notes will be one view only. | -| `THEME_IMAGE` | `""` | Custom image for replacing the logo. Must be publicly reachable | -| `THEME_TEXT` | `""` | Custom text for replacing the description below the logo | +| Variable | Default | Description | +| ---------------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `REDIS` | `redis://redis/` | Redis URL to connect to. | +| `SIZE_LIMIT` | `1 KiB` | Max size for body. Accepted values according to [byte-unit](https://docs.rs/byte-unit/). `512 MiB` is the maximum allowed. The frontend will show that number including the ~35% encoding overhead. | +| `MAX_VIEWS` | `100` | Maximal number of views. | +| `MAX_EXPIRATION` | `360` | Maximal expiration in minutes. | +| `ALLOW_ADVANCED` | `true` | Allow custom configuration. If set to `false` all notes will be one view only. | +| `THEME_IMAGE` | `""` | Custom image for replacing the logo. Must be publicly reachable | +| `THEME_TEXT` | `""` | Custom text for replacing the description below the logo | ## Deployment