chore: give the project its own identity instead of the scaffold's

Cargo.toml still carried `description = "A Tauri App"` and `authors = ["you"]`,
package.json's description was empty with no author or repository, and there was
no LICENSE file at all despite package.json declaring MIT.

The user-visible half matters more. productName was the scaffold's lowercase
"jellytau", which is what the Android *release* build shows under its icon and
what the deb/rpm/NSIS bundles carry as their display name. It went unnoticed
because build.gradle.kts overrides the label to "JellyTau Debug" for the debug
build type — the install a developer sees every day was the only correctly-cased
one. mainBinaryName pins the executable filename to "jellytau" so
build-windows-cross.sh and the Arch PKGBUILD, which both resolve it by name,
need no change.

strings.xml moves into the canonical android tree rather than being edited in
gen/, since sync-android-sources.sh already copies res/values/*.xml — so the fix
survives the next regeneration.

Bundle metadata (publisher, copyright, category, descriptions, licence) was
absent entirely, so the packages shipped with no maintainer or description. The
hand-written PKGBUILD and .desktop had all of it; only the generated packaging
was wrong.

Adds .env.example: three scripts require signing vars from a gitignored .env
and .gitignore already whitelists the example, but none existed.

TRACES: | DR-214
This commit is contained in:
2026-08-20 20:38:16 +02:00
parent 2a3f08f8a4
commit d32ca13d00
8 changed files with 98 additions and 10 deletions
+4 -2
View File
@@ -1,8 +1,10 @@
[package]
name = "jellytau"
version = "0.8.2"
description = "A Tauri App"
authors = ["you"]
description = "A cross-platform Jellyfin client"
authors = ["Duncan Tourolle <duncan@tourolle.paris>"]
license = "MIT"
repository = "https://gitea.tourolle.paris/dtourolle/jellytau"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
App name as shown on the home screen, in the app drawer and in the task
switcher.
`tauri android init` generates this file from `productName`, and its output
was the lowercase "jellytau" that shipped in every release build. The mistake
was invisible during development because build.gradle.kts overrides
manifestPlaceholders["appLabel"] to "JellyTau Debug" for the debug build type,
so the side-by-side install a developer looks at every day was correctly
cased — only the release users install was wrong.
Held in the canonical android/src tree so sync-android-sources.sh copies it
over the generated one (it already syncs res/values/*.xml for themes.xml),
which keeps it from being lost the next time gen/ is regenerated.
TRACES: | DR-214
-->
<resources>
<string name="app_name">JellyTau</string>
<string name="main_activity_title">JellyTau</string>
</resources>
+18 -5
View File
@@ -1,6 +1,6 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "jellytau",
"productName": "JellyTau",
"version": "0.8.2",
"identifier": "com.dtourolle.jellytau",
"build": {
@@ -25,19 +25,32 @@
"devCsp": "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; font-src 'self' data:; img-src 'self' data: blob: asset: http://asset.localhost http: https:; media-src 'self' blob: asset: http://asset.localhost http://127.0.0.1:* http: https:; connect-src 'self' ipc: http://ipc.localhost http: https: ws: wss:; worker-src 'self' blob:; object-src 'none'; frame-src 'none'; base-uri 'self'; form-action 'self'",
"assetProtocol": {
"enable": true,
"scope": ["$APPDATA/thumbnails/**"]
"scope": [
"$APPDATA/thumbnails/**"
]
}
}
},
"bundle": {
"active": true,
"targets": ["deb", "rpm", "nsis"],
"targets": [
"deb",
"rpm",
"nsis"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
],
"publisher": "Duncan Tourolle",
"copyright": "Copyright \u00a9 2026 Duncan Tourolle",
"category": "Video",
"shortDescription": "A cross-platform Jellyfin client",
"longDescription": "JellyTau is a Jellyfin client for Linux and Android. It streams and downloads music and video from a Jellyfin server, plays them back offline, and can control other Jellyfin sessions on the network.",
"licenseFile": "../LICENSE"
},
"mainBinaryName": "jellytau"
}