Compare commits
2 Commits
a92c5112e7
...
0cdaa09dc8
| Author | SHA1 | Date |
|---|---|---|
|
|
0cdaa09dc8 | 1 year ago |
|
|
393e18f927 | 1 year ago |
@ -1,6 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Name=MartianChess
|
||||
Exec=martian-chess
|
||||
Icon=martian-chess
|
||||
Exec=MartianChess
|
||||
Icon=MartianChess
|
||||
Type=Application
|
||||
Categories=Game;BoardGame;
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
#!/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
|
||||
|
||||
Copy-Item -Force "./target/release/martian-chess.exe" "./target/release/MartianChess.exe"
|
||||
|
||||
$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"
|
||||
DestinationPath = "./martian-chess-beta.zip"
|
||||
DestinationPath = "./packages/MartianChess-windows.zip"
|
||||
}
|
||||
|
||||
Compress-Archive @compress
|
||||
Loading…
Reference in New Issue