Skip to content

Latest commit

 

History

61 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MSync

Landing

A unified desktop app that manages live streaming, bulk watermarking, and manages DSC crypto tokens for digital signing.

  • 🌙 Light/Dark Mode

Change Placeholder Value

In tailwind.config.ts change the following

  • fontFamily
    • head
    • body
  • colors
    • light
    • dark
    • primary
    • success
    • warning
    • alert

In src-tauri/tauri.conf.json change the following

  • productName
  • identifier
  • app
    • windows
      • title

In .github\workflows\deploy.yml change the following

In github registry add Repo or Org Vars following

  • Vars
    • USERNAME
    • GH_PAT
    • TAURI_SIGNING_PRIVATE_KEY: Content of ./src-tauri/app-sign.key
    • TAURI_SIGNING_PRIVATE_KEY_PASSWORD: Key password (leave empty if none)

Change the Icons and Screenshots

dir public/pwa

Generate Logo

bun tauri icon ./public/logo.svg

Reinitialize Android

rm -rf src-tauri/gen/android bun tauri android init

Appstore Signing Config

cd src-tauri/gen/android

keytool -genkey -v -keystore release-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias release-key

cat ./release-keystore.jks | base64

goto src-tauri/gen/android/app/build.gradle.kts

import java.io.FileInputStream

defaultConfig {
...
}
signingConfigs {
    create("release") {
        val keystorePropertiesFile = rootProject.file("keystore.properties")
        val keystoreProperties = Properties()
        if (keystorePropertiesFile.exists()) {
            keystoreProperties.load(FileInputStream(keystorePropertiesFile))
        }

        keyAlias = keystoreProperties["keyAlias"] as String
        keyPassword = keystoreProperties["password"] as String
        storeFile = file(keystoreProperties["storeFile"] as String)
        storePassword = keystoreProperties["password"] as String
    }
}

getByName("release") {
    isMinifyEnabled = true
    signingConfig = signingConfigs.getByName("release")
...
}

put release-keystore.jks, keystore.properties into src-tauri/gen/android

Desktop Updater Signing Config

1. Generate Keypair

bun x tauri signer generate -w ./src-tauri/app-sign.key

2. Configure src-tauri/tauri.conf.json

{
  "bundle": {
    "createUpdaterArtifacts": true
  },
  "plugins": {
    "updater": {
      "pubkey": "YOUR_PUBLIC_KEY_HERE",
      "endpoints": ["https://github.com/<OWNER>/<REPO>/releases/latest/download/latest.json"]
    }
  }
}

License

Published under the MIT license.

About

A unified desktop app that manages live streaming, bulk watermarking, and manages DSC crypto tokens for digital signing

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Contributors

Languages