mirror of
https://github.com/muskit/MercuryConverter.git
synced 2026-06-02 20:24:26 -07:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c609e35b8b | |||
| a2d123e953 | |||
| a58aeca36b |
+2
-1
@@ -133,4 +133,5 @@ $RECYCLE.BIN/
|
||||
|
||||
_NCrunch*
|
||||
|
||||
.vscode/
|
||||
.vscode/
|
||||
builds/
|
||||
@@ -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.
|
||||
Head over to [HOWTO](HOWTO.md) for required data preparation.
|
||||
|
||||
Executable
+14
@@ -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"
|
||||
+1
-1
@@ -1 +1 @@
|
||||
1
|
||||
1.1
|
||||
@@ -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"
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user