Compare commits
No commits in common. '0cdaa09dc811c9c2cc8344d124acd319befdc243' and 'a92c5112e7f3fcd8d751b2d6f2d28eb3447cc874' have entirely different histories.
0cdaa09dc8
...
a92c5112e7
@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=MartianChess
|
Name=MartianChess
|
||||||
Exec=MartianChess
|
Exec=martian-chess
|
||||||
Icon=MartianChess
|
Icon=martian-chess
|
||||||
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/MartianChess.png
|
cp media/MartianChess.png platforms/linux/MartianChess.AppDir/martian-chess.png
|
||||||
|
|||||||
@ -1,11 +1,9 @@
|
|||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
||||||
Copy-Item -Force "./target/release/martian-chess.exe" "./target/release/MartianChess.exe"
|
|
||||||
|
|
||||||
$compress = @{
|
$compress = @{
|
||||||
Path = "./target/release/MartianChess.exe", "./fmod_vc.lib", "./fmodstudio_vc.lib", "fmodstudio.dll", "fmod.dll", "./assets"
|
Path = "./target/release/martian-chess.exe", "./fmod_vc.lib", "./fmodstudio_vc.lib", "fmodstudio.dll", "fmod.dll", "./assets"
|
||||||
CompressionLevel = "Optimal"
|
CompressionLevel = "Optimal"
|
||||||
DestinationPath = "./packages/MartianChess-windows.zip"
|
DestinationPath = "./martian-chess-beta.zip"
|
||||||
}
|
}
|
||||||
|
|
||||||
Compress-Archive @compress
|
Compress-Archive @compress
|
||||||
Loading…
Reference in New Issue