mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-07-02 00:35:05 +02:00
Compare commits
15 Commits
Author | SHA1 | Date | |
---|---|---|---|
32f684a88a | |||
26a25f1f34 | |||
b6e2375d57 | |||
f455ac64c3 | |||
d88e73bebe | |||
bfb153dfed | |||
2616080e27 | |||
1a1f8ae42a | |||
93547b09d8 | |||
2f51bd750d | |||
de5fa4e9e4 | |||
511bc6a2bc | |||
7cfef33376 | |||
1efd1b0ffe | |||
3c3c600ec7 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
release.mk
|
||||
/release
|
||||
|
68
Makefile
68
Makefile
@ -1,18 +1,46 @@
|
||||
.PHONY: all web desktop desktop-common linux windows clean
|
||||
.PHONY: all setup web desktop desktop-common linux windows windows-portable
|
||||
.PHONY: web-release debian-release pacman-release windows-setup-release windows-unpacked-release windows-portable-release windows-release release
|
||||
.PHONY: clean
|
||||
|
||||
CFGDIR ?= configs/sc
|
||||
|
||||
all: desktop
|
||||
all: release
|
||||
|
||||
YARN ?= yarnpkg
|
||||
|
||||
VERSION := $(shell grep version element-desktop/package.json | sed 's|.*: \"\(.*\)\",|\1|')
|
||||
APP_NAME := $(shell grep '"name"' element-desktop/package.json | head -n 1 | sed 's|.*: \"\(.*\)\",|\1|')
|
||||
PRODUCT_NAME := $(shell grep '"productName"' element-desktop/package.json | sed 's|.*: \"\(.*\)\",|\1|')
|
||||
|
||||
WEB_OUT := element-web/dist
|
||||
WEB_OUT_DIST_VERSION := web
|
||||
OUT_WEB := $(WEB_OUT)/riot-$(WEB_OUT_DIST_VERSION).tar.gz
|
||||
OUT_WEB_BETTER_NAME := schildichat-web-$(VERSION).tar.gz
|
||||
|
||||
DESKTOP_OUT := element-desktop/dist
|
||||
OUT_DEB64 := $(DESKTOP_OUT)/$(APP_NAME)_$(VERSION)_amd64.deb
|
||||
OUT_PAC64 := $(DESKTOP_OUT)/$(APP_NAME)-$(VERSION).pacman
|
||||
OUT_TARXZ64 := $(DESKTOP_OUT)/$(APP_NAME)-$(VERSION).tar.xz
|
||||
OUT_WIN64 := $(DESKTOP_OUT)/$(PRODUCT_NAME)\ Setup\ $(VERSION).exe
|
||||
OUT_WIN64_PORTABLE := $(DESKTOP_OUT)/$(PRODUCT_NAME)\ $(VERSION).exe
|
||||
OUT_WIN64_BETTER_NAME := $(PRODUCT_NAME)_Setup_v$(VERSION).exe
|
||||
OUT_WIN64_UNPACKED_BETTER_NAME := $(PRODUCT_NAME)_win-unpacked_v$(VERSION).zip
|
||||
OUT_WIN64_PORTABLE_BETTER_NAME := $(PRODUCT_NAME)_win-portable_v$(VERSION)
|
||||
|
||||
RELEASE_DIR := release
|
||||
CURRENT_RELEASE_DIR := $(RELEASE_DIR)/$(VERSION)
|
||||
|
||||
|
||||
-include release.mk
|
||||
|
||||
|
||||
web:
|
||||
setup:
|
||||
if [ ! -L "element-desktop/webapp" ]; then ./setup.sh; fi
|
||||
cp $(CFGDIR)/config.json element-web/
|
||||
|
||||
web: export DIST_VERSION=$(WEB_OUT_DIST_VERSION)
|
||||
web: setup
|
||||
$(YARN) --cwd element-web dist
|
||||
echo "$(VERSION)" > element-web/webapp/version
|
||||
|
||||
desktop-common: web
|
||||
$(YARN) --cwd element-desktop run fetch --cfgdir ''
|
||||
@ -32,8 +60,40 @@ pacman: desktop-common
|
||||
windows: desktop-common
|
||||
$(YARN) --cwd element-desktop run build64windows
|
||||
|
||||
windows-portable: desktop-common
|
||||
$(YARN) --cwd element-desktop run build64windows-portable
|
||||
|
||||
web-release: web
|
||||
mkdir -p $(CURRENT_RELEASE_DIR)
|
||||
cp $(OUT_WEB) $(CURRENT_RELEASE_DIR)/$(OUT_WEB_BETTER_NAME)
|
||||
|
||||
debian-release: debian
|
||||
mkdir -p $(CURRENT_RELEASE_DIR)
|
||||
cp $(OUT_DEB64) $(CURRENT_RELEASE_DIR)
|
||||
|
||||
pacman-release: pacman
|
||||
mkdir -p $(CURRENT_RELEASE_DIR)
|
||||
cp $(OUT_PAC64) $(CURRENT_RELEASE_DIR)
|
||||
|
||||
windows-setup-release: windows
|
||||
mkdir -p $(CURRENT_RELEASE_DIR)
|
||||
cp $(OUT_WIN64) $(CURRENT_RELEASE_DIR)/$(OUT_WIN64_BETTER_NAME)
|
||||
|
||||
windows-unpacked-release: windows
|
||||
mkdir -p $(CURRENT_RELEASE_DIR)
|
||||
cd element-desktop/dist/win-unpacked && zip -r ../../../$(CURRENT_RELEASE_DIR)/$(OUT_WIN64_UNPACKED_BETTER_NAME) *
|
||||
|
||||
windows-portable-release: windows-portable
|
||||
./windowsportable.sh $(OUT_WIN64_PORTABLE) $(OUT_WIN64_PORTABLE_BETTER_NAME) $(CURRENT_RELEASE_DIR) $(VERSION)
|
||||
|
||||
windows-release: windows-setup-release windows-unpacked-release windows-portable-release
|
||||
|
||||
release: web-release debian-release pacman-release windows-release
|
||||
|
||||
clean:
|
||||
$(YARN) --cwd matrix-js-sdk clean
|
||||
$(YARN) --cwd matrix-react-sdk clean
|
||||
$(YARN) --cwd element-web clean
|
||||
$(YARN) --cwd element-desktop clean
|
||||
rm -f element-desktop/webapp
|
||||
rm -rf element-web/dist
|
||||
|
@ -54,13 +54,13 @@ $ source .bashrc
|
||||
```
|
||||
git clone --recurse-submodules https://github.com/SchildiChat/schildichat-desktop.git
|
||||
cd schildichat-desktop
|
||||
./setup.sh
|
||||
make setup # optional step if using the other make targets
|
||||
```
|
||||
|
||||
## Build
|
||||
|
||||
`make`
|
||||
`make [{web|debian|pacman|windows}-release]`
|
||||
|
||||
## Install
|
||||
|
||||
Installable packages should appear in element-desktop/dist/.
|
||||
Installable packages should appear in release/.
|
||||
|
@ -50,22 +50,31 @@ logo_alternative() {
|
||||
# Analog to SchildiChat-Android's alternative_package.sh
|
||||
case "$package_add" in
|
||||
"a")
|
||||
# cyan
|
||||
logo_alternative "#00ACC1" "#006064" "#B2EBF2"
|
||||
# blue
|
||||
logo_alternative "#2196F3" "#0D47A1" "#BBDEFB"
|
||||
;;
|
||||
"b")
|
||||
# orange: 900 color recuded in value
|
||||
logo_alternative "#FB8C00" "#7f2c00" "#FFE0B2"
|
||||
;;
|
||||
"c")
|
||||
# purple
|
||||
logo_alternative "#5E35B1" "#311B92" "#D1C4E9"
|
||||
;;
|
||||
"d")
|
||||
# red: 900 color reduced in value
|
||||
logo_alternative "#E53935" "#4c0b0b" "#FFCDD2"
|
||||
;;
|
||||
"d")
|
||||
# purple
|
||||
logo_alternative "#5E35B1" "#311B92" "#D1C4E9"
|
||||
;;
|
||||
"e")
|
||||
# pink
|
||||
logo_alternative "#D81B60" "#880E4F" "#F8BBD0"
|
||||
;;
|
||||
"x")
|
||||
# cyan
|
||||
logo_alternative "#00ACC1" "#006064" "#B2EBF2"
|
||||
;;
|
||||
"z")
|
||||
# white
|
||||
logo_alternative "#ffffff" "#000000" "#eeeeee"
|
||||
;;
|
||||
esac
|
||||
|
@ -11,30 +11,19 @@
|
||||
"https://scalar-staging.vector.im/api",
|
||||
"https://scalar-staging.riot.im/scalar/api"
|
||||
],
|
||||
"hosting_signup_link": "https://element.io/matrix-services?utm_source=element-web&utm_medium=web",
|
||||
"bug_report_endpoint_url": "https://element.io/bugreports/submit",
|
||||
"roomDirectory": {
|
||||
"servers": [
|
||||
"matrix.org"
|
||||
]
|
||||
},
|
||||
"piwik": {
|
||||
"url": "https://piwik.riot.im/",
|
||||
"siteId": 1,
|
||||
"policyUrl": "https://element.io/cookie-policy"
|
||||
},
|
||||
"enable_presence_by_hs_url": {
|
||||
"https://matrix.org": false,
|
||||
"https://matrix-client.matrix.org": false
|
||||
},
|
||||
"terms_and_conditions_links": [
|
||||
{
|
||||
"url": "https://element.io/privacy",
|
||||
"url": "https://schildi.chat/desktop/privacy",
|
||||
"text": "Privacy Policy"
|
||||
},
|
||||
{
|
||||
"url": "https://element.io/cookie-policy",
|
||||
"text": "Cookie Policy"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Submodule element-desktop updated: 3172fb927d...937f8a8c86
Submodule element-web updated: fc486a5044...9eeb0af50a
Submodule matrix-js-sdk updated: 2ef998e8ec...79a5b44eb5
Submodule matrix-react-sdk updated: 6538fca287...2a308ab739
@ -37,3 +37,18 @@ forall_repos() {
|
||||
"$@"
|
||||
popd
|
||||
}
|
||||
|
||||
ensure_yes() {
|
||||
read -e -p "$1 [y/N] " choice
|
||||
|
||||
if [[ "$choice" != [Yy]* ]]; then
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
check_branch() {
|
||||
if [[ $(git branch --show-current) != "$1" ]]; then
|
||||
repo_name=$(basename `git rev-parse --show-toplevel`)
|
||||
ensure_yes "$repo_name not in branch $1. Continue?"
|
||||
fi
|
||||
}
|
||||
|
@ -3,13 +3,18 @@
|
||||
set -e
|
||||
|
||||
mydir="$(dirname "$(realpath "$0")")"
|
||||
branch=${BRANCH:-"sc"}
|
||||
|
||||
pushd "$mydir" > /dev/null
|
||||
|
||||
source ./merge_helpers.sh
|
||||
|
||||
check_branch $branch
|
||||
forall_repos check_branch $branch
|
||||
|
||||
forall_repos git fetch upstream
|
||||
forall_repos git merge upstream/master
|
||||
|
||||
./setup.sh
|
||||
|
||||
popd > /dev/null
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 87 KiB |
6
setup.sh
6
setup.sh
@ -5,12 +5,14 @@ set -e
|
||||
yarn=yarnpkg
|
||||
|
||||
pushd matrix-js-sdk
|
||||
$yarn unlink &>/dev/null || true
|
||||
$yarn link
|
||||
$yarn install
|
||||
popd
|
||||
|
||||
pushd matrix-react-sdk
|
||||
$yarn link matrix-js-sdk
|
||||
$yarn unlink &>/dev/null || true
|
||||
$yarn link
|
||||
$yarn install
|
||||
popd
|
||||
@ -18,14 +20,10 @@ popd
|
||||
pushd element-web
|
||||
$yarn link matrix-js-sdk
|
||||
$yarn link matrix-react-sdk
|
||||
$yarn link
|
||||
$yarn install
|
||||
popd
|
||||
|
||||
pushd element-desktop
|
||||
#$yarn link matrix-js-sdk
|
||||
#$yarn link matrix-react-sdk
|
||||
#$yarn link riot-web
|
||||
$yarn install
|
||||
ln -s ../element-web/webapp ./ || true
|
||||
popd
|
||||
|
63
windowsportable.sh
Executable file
63
windowsportable.sh
Executable file
@ -0,0 +1,63 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
portable_exe=$1
|
||||
dest_name=$2
|
||||
release_dir=$3
|
||||
version=$4
|
||||
|
||||
dest_path=$release_dir/$dest_name/SchildiChat
|
||||
|
||||
mkdir -p $dest_path/app
|
||||
cp "$portable_exe" $dest_path/app/dontclick.exe
|
||||
|
||||
cat >$dest_path/SchildiChat_Portable.bat <<EOL
|
||||
REM -- Adapted from: https://superuser.com/a/1226026
|
||||
|
||||
REM -- Path to the directory of this script (make sure to remove ending slash)
|
||||
set CURRENT_DIR=%~dp0
|
||||
REM -- Great example from Strawberry Perl's portable shell launcher:
|
||||
if not "" == "%CURRENT_DIR%" if #%CURRENT_DIR:~-1%# == #\# set CURRENT_DIR=%CURRENT_DIR:~0,-1%
|
||||
|
||||
REM -- Path to data directory
|
||||
set DATA_DIR=%CURRENT_DIR%\data
|
||||
|
||||
REM -- Ensure directories exists
|
||||
if not exist %DATA_DIR%\AppData\Roaming mkdir %DATA_DIR%\AppData\Roaming
|
||||
|
||||
REM -- OVERRIDE the user environment variable to point to a portable directory
|
||||
set USERPROFILE=%DATA_DIR%
|
||||
|
||||
REM -- (Optional) Some programs do not use these environment variables
|
||||
set APPDATA=%DATA_DIR%\AppData\Roaming>nul
|
||||
set ALLUSERSPROFILE=%DATA_DIR%\AppData\Roaming>nul
|
||||
set PROGRAMDATA=%DATA_DIR%\AppData\Roaming>nul
|
||||
|
||||
REM -- Start the application
|
||||
start "" /D"%CURRENT_DIR%\app" "dontclick.exe"
|
||||
EOL
|
||||
|
||||
cat >$dest_path/README.txt <<EOL
|
||||
Just extract this zip file to a folder of your choice (e.g. on a USB-Stick).
|
||||
The .\app\dontclick.exe file is the real portable executable.
|
||||
SchildiChat_Portable.bat is a batch script to run this executable but with the data in the .\data folder instead of the system's %APPDATA%.
|
||||
Thus you can move your data along with this portable app.
|
||||
To update just extract the new zip file to the same folder as the previous version whilst merging folders and overwriting files.
|
||||
EOL
|
||||
|
||||
# if $version looks like semver with leading v, strip it before writing to file
|
||||
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
||||
echo ${version:1} > $dest_path/app/version
|
||||
else
|
||||
echo ${version} > $dest_path/app/version
|
||||
fi
|
||||
|
||||
pushd $dest_path/..
|
||||
zip -r ../$dest_name.zip *
|
||||
popd
|
||||
|
||||
rm -r $release_dir/$dest_name
|
||||
|
||||
echo
|
||||
echo "Packaged $release_dir/$dest_name.zip"
|
Reference in New Issue
Block a user