1
0
mirror of https://github.com/thomiceli/opengist synced 2024-11-08 12:55:50 +01:00
This commit is contained in:
Thomas Miceli 2023-05-27 14:12:34 +02:00
parent cecc06b332
commit 0a542431c9
No known key found for this signature in database
GPG Key ID: D86C6F6390AF050F
2 changed files with 17 additions and 1 deletions

@ -1,5 +1,21 @@
# Changelog
## [1.3.0](https://github.com/thomiceli/opengist/compare/v1.2.0...v1.3.0) - 2023-05-27
### Added
- Disable login form via admin panel
- Syntax highlighting in Markdown code block (#29)
- Better UI for admin settings (#30)
- Disable Gravatar (#37)
- Swap between dark and light theme (#38)
### Changed
- Logs are now also appended to stdout
- Golang module name is now `github.com/thomiceli/opengist`
### Fixed
- First account registering with OAuth is now admin
- Fix HTML entities escaping in Markdown code block (#29)
## [1.2.0](https://github.com/thomiceli/opengist/compare/v1.1.1...v1.2.0) - 2023-05-01
### Added
- Restrict or unrestrict snippets visibility to anonymous users (#19)

@ -11,7 +11,7 @@ import (
"strings"
)
var OpengistVersion = "1.2.0"
var OpengistVersion = "1.3.0"
var C *config