mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
links
This commit is contained in:
parent
0cc8704f07
commit
751b6bb132
7 changed files with 10 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
All changes from v13.0.0 onwards, for a full list of differences read CALCKEY.md
|
||||
All changes from v13.0.0 onwards, for a list of differences read FIREFISH.md
|
||||
|
||||
## [14.0.0-rc3] - 2023-06-24
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
- Skin tone selection support
|
||||
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
|
||||
- Link verification
|
||||
- Importing posts from other Calckey/Misskey/Mastodon/Akkoma/Pleroma instances
|
||||
- Importing posts from other Firefish/Misskey/Mastodon/Akkoma/Pleroma instances
|
||||
|
||||
## Implemented (remote)
|
||||
|
||||
|
|
|
@ -14,8 +14,8 @@ Tested with Misskey v13.11.3.
|
|||
If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3.
|
||||
|
||||
```sh
|
||||
wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13.patch
|
||||
wget -O mkv13_restore.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13_restore.patch
|
||||
wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/mkv13.patch
|
||||
wget -O mkv13_restore.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/mkv13_restore.patch
|
||||
git apply mkv13.patch mkv13_restore.patch
|
||||
|
||||
cd packages/backend
|
||||
|
@ -33,7 +33,7 @@ git stash push
|
|||
rm -rf fluent-emojis misskey-assets
|
||||
git switch main # or beta or develop
|
||||
git pull --ff
|
||||
wget -O renote_muting.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/renote_muting.patch
|
||||
wget -O renote_muting.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/renote_muting.patch
|
||||
git apply renote_muting.patch
|
||||
|
||||
pnpm install
|
||||
|
@ -81,7 +81,7 @@ NODE_ENV=production pnpm run migrate
|
|||
## FoundKey
|
||||
|
||||
```sh
|
||||
wget -O fk.patch https://codeberg.org/calckey/calckey/raw/branch/develop/docs/fk.patch
|
||||
wget -O fk.patch https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/docs/fk.patch
|
||||
git apply fk.patch
|
||||
cd packages/backend
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ export default define(meta, paramDef, async (ps) => {
|
|||
};
|
||||
|
||||
patrons = await fetch(
|
||||
"https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/patrons.json",
|
||||
"https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/patrons.json",
|
||||
{ signal: AbortSignal.timeout(2000) },
|
||||
)
|
||||
.then((response) => response.json())
|
||||
|
|
|
@ -18,7 +18,7 @@ export default define(meta, paramDef, async () => {
|
|||
let release;
|
||||
|
||||
await fetch(
|
||||
"https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/release.json",
|
||||
"https://gitlab.prometheus.systems/firefish/firefish/-/raw/develop/release.json",
|
||||
)
|
||||
.then((response) => response.json())
|
||||
.then((data) => {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "13.1.3",
|
||||
"notes": "This release candidate has the following changes:\n• Better blocking/muting\n• Better user refreshing\n• New help menu with app list (More! > Help)\n• New headerbar style\n• Bug + security fixes and performance improvements",
|
||||
"version": "1.0.0",
|
||||
"notes": "Welcome to Firefish!",
|
||||
"screenshots": []
|
||||
}
|
||||
|
|
13
rename.sh
13
rename.sh
|
@ -1,13 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Change directories
|
||||
find . -type d -name '*calckey*' | while read dir; do
|
||||
newdir=$(echo "$dir" | perl -pe 's/calckey/firefish/g')
|
||||
mv "$dir" "$newdir"
|
||||
done
|
||||
|
||||
# Change files
|
||||
find . -type f -name '*calckey*' | while read file; do
|
||||
newfile=$(echo "$file" | perl -pe 's/calckey/firefish/g')
|
||||
mv "$file" "$newfile"
|
||||
done
|
Loading…
Reference in a new issue