standardize MartianChess package naming
parent
393e18f927
commit
0cdaa09dc8
@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=MartianChess
|
Name=MartianChess
|
||||||
Exec=martian-chess
|
Exec=MartianChess
|
||||||
Icon=martian-chess
|
Icon=MartianChess
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Game;BoardGame;
|
Categories=Game;BoardGame;
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
cp media/MartianChess.png platforms/linux/MartianChess.AppDir/martian-chess.png
|
cp media/MartianChess.png platforms/linux/MartianChess.AppDir/MartianChess.png
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
||||||
|
Copy-Item -Force "./target/release/martian-chess.exe" "./target/release/MartianChess.exe"
|
||||||
|
|
||||||
$compress = @{
|
$compress = @{
|
||||||
Path = "./target/release/martian-chess.exe", "./fmod_vc.lib", "./fmodstudio_vc.lib", "fmodstudio.dll", "fmod.dll", "./assets"
|
Path = "./target/release/MartianChess.exe", "./fmod_vc.lib", "./fmodstudio_vc.lib", "fmodstudio.dll", "fmod.dll", "./assets"
|
||||||
CompressionLevel = "Optimal"
|
CompressionLevel = "Optimal"
|
||||||
DestinationPath = "./martian-chess-beta.zip"
|
DestinationPath = "./packages/MartianChess-windows.zip"
|
||||||
}
|
}
|
||||||
|
|
||||||
Compress-Archive @compress
|
Compress-Archive @compress
|
||||||
Loading…
Reference in New Issue