rename to tono

This commit is contained in:
2026-03-29 22:51:58 -07:00
parent 961b5d08c8
commit 52da360804
33 changed files with 82 additions and 82 deletions

View File

@@ -41,7 +41,7 @@ $PYTHON -m PyInstaller \
desktop.py \
--noconfirm \
--clean \
--name argonode \
--name tono \
--windowed \
$MODE \
--distpath desktop-dist \
@@ -55,9 +55,9 @@ $PYTHON -m PyInstaller \
--collect-all webview
if $CREATE_TAR; then
TAR_PATH="desktop-dist/argonode-linux.tar.gz"
TAR_PATH="desktop-dist/tono-linux.tar.gz"
echo "Creating tarball..."
tar -czf "$TAR_PATH" -C desktop-dist argonode
tar -czf "$TAR_PATH" -C desktop-dist tono
echo "Tarball created: $TAR_PATH"
fi

View File

@@ -41,7 +41,7 @@ $PYTHON -m PyInstaller \
desktop.py \
--noconfirm \
--clean \
--name argonode \
--name tono \
--windowed \
$MODE \
--distpath desktop-dist \
@@ -55,12 +55,12 @@ $PYTHON -m PyInstaller \
--collect-all webview \
--icon ../resources/icon.icns
APP_BUNDLE="desktop-dist/argonode.app"
APP_BUNDLE="desktop-dist/tono.app"
if [ ! -d "$APP_BUNDLE" ]; then
# --onedir puts it inside a folder
if [ -d "desktop-dist/argonode/argonode.app" ]; then
APP_BUNDLE="desktop-dist/argonode/argonode.app"
if [ -d "desktop-dist/tono/tono.app" ]; then
APP_BUNDLE="desktop-dist/tono/tono.app"
else
echo "Warning: .app bundle not found; skipping DMG creation."
CREATE_DMG=false
@@ -68,7 +68,7 @@ if [ ! -d "$APP_BUNDLE" ]; then
fi
if $CREATE_DMG; then
DMG_PATH="desktop-dist/argonode.dmg"
DMG_PATH="desktop-dist/tono.dmg"
echo "Creating DMG installer..."
rm -f "$DMG_PATH"
@@ -80,7 +80,7 @@ if $CREATE_DMG; then
ln -s /Applications "$DMG_STAGING/Applications"
hdiutil create \
-volname "argonode" \
-volname "tono" \
-srcfolder "$DMG_STAGING" \
-ov \
-format UDZO \

View File

@@ -57,7 +57,7 @@ $pyInstallerArgs = @(
"desktop.py",
"--noconfirm",
"--clean",
"--name", "argonode",
"--name", "tono",
"--windowed",
$mode,
"--distpath", "desktop-dist",
@@ -77,4 +77,4 @@ Write-Host "Packaging desktop app..."
Assert-LastExitCode "PyInstaller packaging"
Write-Host "Desktop build complete."
Write-Host "Output folder: $repoRoot\desktop-dist\argonode"
Write-Host "Output folder: $repoRoot\desktop-dist\tono"