3 Commits
v1 ... 1.1

Author SHA1 Message Date
Alex c609e35b8b shrink release pkg, fix app directory resolution 2025-09-02 13:19:59 -07:00
Alex a2d123e953 Update README.md 2025-09-01 22:28:48 -07:00
Alex a58aeca36b add script to build and package 2025-09-01 22:25:30 -07:00
7 changed files with 23 additions and 4 deletions
+1
View File
@@ -134,3 +134,4 @@ $RECYCLE.BIN/
_NCrunch*
.vscode/
builds/
+4
View File
@@ -1,5 +1,9 @@
# MercuryConverter
<img height="600" alt="image" src="https://github.com/user-attachments/assets/2a06c9b4-6b37-43eb-a7f5-3b2d4577c736" />
This is a rewrite of [WacK-Repackager](https://github.com/muskit/WacK-Repackager) to work with the upcoming Saturn project.
Head over to [HOWTO](HOWTO.md) for required data preparation.
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env sh
cd $(dirname $0)
app_version=MercuryConverter-v$(cat src/Assets/version)
# create builds
dotnet publish src --runtime linux-x64 -c Release -p:PublishSingleFile=True -o "./builds/$app_version-linux-x64"
dotnet publish src --runtime win-x64 -c Release -p:PublishSingleFile=True -o "./builds/$app_version-win-x64"
# package builds
cd builds
zip -r "$app_version-linux-x64.zip" "$app_version-linux-x64"
zip -r "$app_version-win-x64.zip" "$app_version-win-x64"
View File
View File
+1 -1
View File
@@ -1 +1 @@
1
1.1
+1 -1
View File
@@ -65,7 +65,7 @@ public static class Utils
if (_ffmpegAvailable == null)
{
var testVidPath = Path.Combine(
Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location)!,
AppContext.BaseDirectory,
"ic.mp4"
);