mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 04:52:40 +00:00
v1.1.0
This commit is contained in:
parent
5bc1697774
commit
fddc50e3cc
3 changed files with 17 additions and 3 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,9 +1,22 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.0.1](https://github.com/thomiceli/opengist/compare/v1.0.0...v1.0.1) - [2023-04-12]
|
## [1.1.0](https://github.com/thomiceli/opengist/compare/v1.0.1...v1.1.0) - 2023-04-18
|
||||||
|
### Added
|
||||||
|
- GitHub and Gitea OAuth2 login
|
||||||
|
- Database migration system
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Admin panel route from `/admin` route to `/admin-panel`
|
||||||
|
- Moved disable signup option to admin panel
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Truncate raw file (#4)
|
||||||
|
- Fix SSH key table constraints on user delete
|
||||||
|
|
||||||
|
## [1.0.1](https://github.com/thomiceli/opengist/compare/v1.0.0...v1.0.1) - 2023-04-12
|
||||||
### Changed
|
### Changed
|
||||||
- Updated base footer
|
- Updated base footer
|
||||||
- Changed redirections when not logged in
|
- Changed redirections when not logged in
|
||||||
|
|
||||||
## 1.0.0 - [2023-04-10]
|
## 1.0.0 - 2023-04-10
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
|
@ -26,6 +26,7 @@ A self-hosted pastebin **powered by Git**. [Try it here](https://opengist.thomic
|
||||||
* Search for all snippets or for certain users snippets
|
* Search for all snippets or for certain users snippets
|
||||||
* Editor with indentation mode & size ; drag and drop files
|
* Editor with indentation mode & size ; drag and drop files
|
||||||
* Download raw files or as a ZIP archive
|
* Download raw files or as a ZIP archive
|
||||||
|
* OAuth2 login with GitHub and Gitea
|
||||||
* Avatars
|
* Avatars
|
||||||
* Responsive UI
|
* Responsive UI
|
||||||
* Enable or disable signups
|
* Enable or disable signups
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
var OpengistVersion = "1.0.1"
|
var OpengistVersion = "1.1.0"
|
||||||
|
|
||||||
var C *config
|
var C *config
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue