Add licensing, readme, todo file

Fix the cursor showing as the 'edit text' type when hovering over a
playlist in the side nav bar
This commit is contained in:
2024-10-10 02:13:49 +03:00
parent 70b92f4ebf
commit 31a710c6cb
9 changed files with 833 additions and 5514 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/bash
if [[ -z "$1" ]]; then
echo "Please suppy a version: 0.0.0[a | b | rc-0]"
echo "Please supply a version: 0.0.0[a | b | rc-0]"
exit
fi
@@ -11,8 +11,8 @@ cargo build --release --target x86_64-pc-windows-gnu
cargo build --release --target x86_64-unknown-linux-gnu
cargo build --release --target aarch64-unknown-linux-gnu
strip --strip-unneeded ./target/x86_64-pc-windows-gnu/release/mcmg.exe -o ./target/mcmg_win32.exe
strip --strip-unneeded ./target/x86_64-unknown-linux-gnu/release/mcmg -o ./target/mcmg_linux_x86_64
aarch64-linux-gnu-strip --strip-unneeded ./target/aarch64-unknown-linux-gnu/release/mcmg -o ./target/mcmg_linux_aarch64
cp ./scripts/setup-template.sh "./target/mcmg-setup-$1.sh"
cp ./scripts/setup-template.ps1 "./target/mcmg-setup-$1.ps1"
strip --strip-unneeded ./target/x86_64-pc-windows-gnu/release/xmpd.exe -o ./target/xmpd_win32.exe
strip --strip-unneeded ./target/x86_64-unknown-linux-gnu/release/xmpd -o ./target/xmpd_linux_x86_64
aarch64-linux-gnu-strip --strip-unneeded ./target/aarch64-unknown-linux-gnu/release/xmpd -o ./target/xmpd_linux_aarch64
cp ./scripts/setup-template.sh "./target/xmpd-setup-$1.sh"
cp ./scripts/setup-template.ps1 "./target/xmpd-setup-$1.ps1"