minor
This commit is contained in:
parent
dd228f3591
commit
10cb7d6353
|
@ -1,6 +1,7 @@
|
|||
# Changelog
|
||||
|
||||
## 1.24.0
|
||||
* Added Linux ARM64 build
|
||||
* Channel owners can now add `[ads: 30min]` in the channel description to limit how often Rising auto-posts ads on the channel
|
||||
* Neko/mimi species are now considered human, not anthro
|
||||
* Fixed a bug that prevented the client from occasionally recognizing gender preferences
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
if [ -z "${1}" ]
|
||||
then
|
||||
echo "Usage: ${0} RELEASE_VERSION"
|
||||
fi
|
||||
|
||||
RELEASE_VERSION="${1}"
|
||||
RELEASE_PATH="${HOME}/fchat-rising-dist/${RELEASE_VERSION}"
|
||||
DIST_PATH="${HOME}/fchat-rising/electron/dist/downloaded"
|
||||
|
||||
cd "${HOME}/fchat-rising"
|
||||
git checkout master
|
||||
git pull
|
||||
yarn
|
||||
|
||||
mkdir -p "${RELEASE_PATH}"
|
||||
rm -rf "${DIST_PATH}"
|
||||
|
||||
cd electron
|
||||
yarn build:dist
|
||||
node pack.js
|
||||
|
||||
cp "${DIST_PATH}/fchat.arm64.AppImage" "${RELEASE_PATH}/F-Chat-Rising-${RELEASE_VERSION}-linux-arm64.AppImage"
|
||||
cp "${DIST_PATH}/fchat.arm64.AppImage.zsync" "${RELEASE_PATH}/F-Chat-Rising-${RELEASE_VERSION}-linux-arm64.AppImage.zsync"
|
||||
|
||||
cp "${DIST_PATH}/fchat.x64.AppImage" "${RELEASE_PATH}/F-Chat-Rising-${RELEASE_VERSION}-linux-x64.AppImage"
|
||||
cp "${DIST_PATH}/fchat.x64.AppImage.zsync" "${RELEASE_PATH}/F-Chat-Rising-${RELEASE_VERSION}-linux-x64.AppImage.zsync"
|
Loading…
Reference in New Issue