links
This commit is contained in:
parent
a31805ad25
commit
aa24a3c172
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# 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
|
## [14.0.0-rc3] - 2023-06-24
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
- Skin tone selection support
|
- Skin tone selection support
|
||||||
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
|
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
|
||||||
- Link verification
|
- Link verification
|
||||||
- Importing posts from other Calckey/Misskey/Mastodon/Akkoma/Pleroma instances
|
- Importing posts from other Firefish/Misskey/Mastodon/Akkoma/Pleroma instances
|
||||||
|
|
||||||
## Implemented (remote)
|
## 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.
|
If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13.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/branch/develop/docs/mkv13_restore.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
|
git apply mkv13.patch mkv13_restore.patch
|
||||||
|
|
||||||
cd packages/backend
|
cd packages/backend
|
||||||
|
@ -33,7 +33,7 @@ git stash push
|
||||||
rm -rf fluent-emojis misskey-assets
|
rm -rf fluent-emojis misskey-assets
|
||||||
git switch main # or beta or develop
|
git switch main # or beta or develop
|
||||||
git pull --ff
|
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
|
git apply renote_muting.patch
|
||||||
|
|
||||||
pnpm install
|
pnpm install
|
||||||
|
@ -81,7 +81,7 @@ NODE_ENV=production pnpm run migrate
|
||||||
## FoundKey
|
## FoundKey
|
||||||
|
|
||||||
```sh
|
```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
|
git apply fk.patch
|
||||||
cd packages/backend
|
cd packages/backend
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default define(meta, paramDef, async (ps) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
patrons = await fetch(
|
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) },
|
{ signal: AbortSignal.timeout(2000) },
|
||||||
)
|
)
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
|
|
|
@ -18,7 +18,7 @@ export default define(meta, paramDef, async () => {
|
||||||
let release;
|
let release;
|
||||||
|
|
||||||
await fetch(
|
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((response) => response.json())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "13.1.3",
|
"version": "1.0.0",
|
||||||
"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",
|
"notes": "Welcome to Firefish!",
|
||||||
"screenshots": []
|
"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 New Issue