refactor(branding): rename project to LockScreenWallpaper across repo

Standardize branding by renaming Wechselbild to LockScreenWallpaper.
This updates UI strings, configs, and plugin metadata for consistency.

- Rename branding across UI, docs, and config in the repo
- Update Android UI strings and notification titles to LockScreenWallpaper
This commit is contained in:
Christoph Brandau
2026-08-20 18:00:48 +02:00
parent 2a85d5f622
commit 734c757c67
20 changed files with 41 additions and 41 deletions
+11 -11
View File
@@ -1662,6 +1662,17 @@ dependencies = [
"scopeguard",
]
[[package]]
name = "lockscreenwallpaper"
version = "0.1.0"
dependencies = [
"serde",
"serde_json",
"tauri",
"tauri-build",
"tauri-plugin-wallpaper",
]
[[package]]
name = "log"
version = "0.4.33"
@@ -3864,17 +3875,6 @@ dependencies = [
"windows-core 0.61.2",
]
[[package]]
name = "wechselbild"
version = "0.1.0"
dependencies = [
"serde",
"serde_json",
"tauri",
"tauri-build",
"tauri-plugin-wallpaper",
]
[[package]]
name = "winapi"
version = "0.3.9"
+3 -3
View File
@@ -1,12 +1,12 @@
[package]
name = "wechselbild"
name = "lockscreenwallpaper"
version = "0.1.0"
description = "Unbegrenzter Sperrbildschirm-Wechsel für Android"
authors = ["Wechselbild"]
authors = ["LockScreenWallpaper"]
edition = "2021"
[lib]
name = "wechselbild_lib"
name = "lockscreenwallpaper_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Standardrechte für Wechselbild",
"description": "Standardrechte für LockScreenWallpaper",
"windows": ["main"],
"permissions": ["core:default", "wallpaper:default"]
}
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">"Wechselbild"</string>
<string name="main_activity_title">"Wechselbild"</string>
</resources>
<string name="app_name">"LockScreenWallpaper"</string>
<string name="main_activity_title">"LockScreenWallpaper"</string>
</resources>
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1 +1 @@
{"default":{"identifier":"default","description":"Standardrechte für Wechselbild","local":true,"windows":["main"],"permissions":["core:default","wallpaper:default"]}}
{"default":{"identifier":"default","description":"Standardrechte für LockScreenWallpaper","local":true,"windows":["main"],"permissions":["core:default","wallpaper:default"]}}
+2 -2
View File
@@ -2193,10 +2193,10 @@
"markdownDescription": "Denies the unminimize command without any pre-configured scope."
},
{
"description": "Allow the Wechselbild app to manage its wallpaper collection\n#### This default permission set includes:\n\n- `allow-get-state`\n- `allow-select-images`\n- `allow-set-setting`\n- `allow-next-wallpaper`",
"description": "Allow the LockScreenWallpaper app to manage its wallpaper collection\n#### This default permission set includes:\n\n- `allow-get-state`\n- `allow-select-images`\n- `allow-set-setting`\n- `allow-next-wallpaper`",
"type": "string",
"const": "wallpaper:default",
"markdownDescription": "Allow the Wechselbild app to manage its wallpaper collection\n#### This default permission set includes:\n\n- `allow-get-state`\n- `allow-select-images`\n- `allow-set-setting`\n- `allow-next-wallpaper`"
"markdownDescription": "Allow the LockScreenWallpaper app to manage its wallpaper collection\n#### This default permission set includes:\n\n- `allow-get-state`\n- `allow-select-images`\n- `allow-set-setting`\n- `allow-next-wallpaper`"
},
{
"description": "Enables the get_state command without any pre-configured scope.",
+1 -1
View File
@@ -3,5 +3,5 @@ pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_wallpaper::init())
.run(tauri::generate_context!())
.expect("error while running Wechselbild");
.expect("error while running LockScreenWallpaper");
}
+1 -1
View File
@@ -1 +1 @@
fn main() { wechselbild_lib::run(); }
fn main() { lockscreenwallpaper_lib::run(); }
+2 -2
View File
@@ -1,9 +1,9 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Wechselbild",
"productName": "LockScreenWallpaper",
"version": "0.1.0",
"identifier": "de.wechselbild.app",
"build": { "beforeDevCommand": "npm run dev", "devUrl": "http://localhost:1420", "beforeBuildCommand": "npm run build", "frontendDist": "../dist" },
"app": { "windows": [{ "title": "Wechselbild", "width": 420, "height": 860, "resizable": true }], "security": { "csp": null } },
"app": { "windows": [{ "title": "LockScreenWallpaper", "width": 420, "height": 860, "resizable": true }], "security": { "csp": null } },
"bundle": { "active": true, "targets": "all", "icon": [] }
}