update changelog

This commit is contained in:
Sam 2023-06-03 03:11:15 +02:00
parent 10dc59d3d4
commit 8d0c2cce73
No known key found for this signature in database
GPG Key ID: B4EF20DDE721CAA1
3 changed files with 25 additions and 1 deletions

View File

@ -13,4 +13,4 @@ const initialThemeValue = browser
export const themeStore = writable<string>(initialThemeValue);
export const CURRENT_CHANGELOG = "0.5.0";
export const CURRENT_CHANGELOG = "0.5.3";

View File

@ -1,5 +1,11 @@
# 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
- **Added pride flags!**

18
update.sh Executable file
View 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