forked from mirrors/pronouns.cc
update changelog
This commit is contained in:
parent
10dc59d3d4
commit
8d0c2cce73
3 changed files with 25 additions and 1 deletions
|
@ -13,4 +13,4 @@ const initialThemeValue = browser
|
||||||
|
|
||||||
export const themeStore = writable<string>(initialThemeValue);
|
export const themeStore = writable<string>(initialThemeValue);
|
||||||
|
|
||||||
export const CURRENT_CHANGELOG = "0.5.0";
|
export const CURRENT_CHANGELOG = "0.5.3";
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.5.3 - June 3rd 2023
|
||||||
|
|
||||||
|
- Added a link shortener at **prns.cc**! There is now an additional button on all user and member pages to copy a shorter link.
|
||||||
|
The IDs used here can be rerolled on the edit profile page.
|
||||||
|
- Fixed the member list breaking if you have too many private members.
|
||||||
|
|
||||||
## 0.5.0 - May 29th 2023
|
## 0.5.0 - May 29th 2023
|
||||||
|
|
||||||
- **Added pride flags!**
|
- **Added pride flags!**
|
||||||
|
|
18
update.sh
Executable file
18
update.sh
Executable file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euxo pipefail
|
||||||
|
|
||||||
|
sudo -u pronouns git pull
|
||||||
|
sudo -u pronouns make all
|
||||||
|
|
||||||
|
while getopts 'm' OPTION; do
|
||||||
|
case "$OPTION" in
|
||||||
|
m)
|
||||||
|
sudo systemctl stop pronouns-api pronouns-fe pronouns-exporter
|
||||||
|
sudo -u pronouns ./pronouns database migrate
|
||||||
|
sudo systemctl start pronouns-api pronouns-fe pronouns-exporter
|
||||||
|
;;
|
||||||
|
?)
|
||||||
|
sudo systemctl restart pronouns-api pronouns-fe
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
Loading…
Reference in a new issue