(fix): lowercase name on android
This commit is contained in:
parent
d16f260a3a
commit
edfb037864
4 changed files with 21 additions and 21 deletions
34
apps/tauri/src-tauri/Cargo.lock
generated
34
apps/tauri/src-tauri/Cargo.lock
generated
|
|
@ -2,23 +2,6 @@
|
||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
version = 4
|
version = 4
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "Tensamin"
|
|
||||||
version = "0.0.0"
|
|
||||||
dependencies = [
|
|
||||||
"base64 0.22.1",
|
|
||||||
"image 0.25.10",
|
|
||||||
"serde",
|
|
||||||
"serde_json",
|
|
||||||
"tauri",
|
|
||||||
"tauri-build 2.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"tauri-plugin-app-events",
|
|
||||||
"tauri-plugin-barcode-scanner",
|
|
||||||
"tauri-plugin-deep-link",
|
|
||||||
"tauri-plugin-opener",
|
|
||||||
"xcap",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "adler2"
|
name = "adler2"
|
||||||
version = "2.0.1"
|
version = "2.0.1"
|
||||||
|
|
@ -4853,6 +4836,23 @@ dependencies = [
|
||||||
"utf-8",
|
"utf-8",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tensamin"
|
||||||
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"base64 0.22.1",
|
||||||
|
"image 0.25.10",
|
||||||
|
"serde",
|
||||||
|
"serde_json",
|
||||||
|
"tauri",
|
||||||
|
"tauri-build 2.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"tauri-plugin-app-events",
|
||||||
|
"tauri-plugin-barcode-scanner",
|
||||||
|
"tauri-plugin-deep-link",
|
||||||
|
"tauri-plugin-opener",
|
||||||
|
"xcap",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.69"
|
version = "1.0.69"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "Tensamin"
|
name = "tensamin"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
description = "Privacy focused messanger"
|
description = "Privacy focused messanger"
|
||||||
authors = ["methanium"]
|
authors = ["methanium"]
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">tensamin</string>
|
<string name="app_name">Tensamin</string>
|
||||||
<string name="main_activity_title">tensamin</string>
|
<string name="main_activity_title">Tensamin</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "Tensamin",
|
"productName": "tensamin",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"mainBinaryName": "tensamin",
|
"mainBinaryName": "tensamin",
|
||||||
"identifier": "net.tensamin.client",
|
"identifier": "net.tensamin.client",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue