fix: rename soul_echo => soulecho

removed all occurences of soul_echo as it made problems for mobile
This commit is contained in:
webfussel 2025-07-17 13:37:46 +02:00
parent aa85312cf1
commit c423c854fe
14 changed files with 21 additions and 19 deletions

View file

@ -2,7 +2,7 @@
"lockfileVersion": 1, "lockfileVersion": 1,
"workspaces": { "workspaces": {
"": { "": {
"name": "soul_echo", "name": "soulecho",
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2", "@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/pro-duotone-svg-icons": "^6.7.2", "@fortawesome/pro-duotone-svg-icons": "^6.7.2",

View file

@ -1,5 +1,5 @@
{ {
"name": "soul_echo", "name": "soulecho",
"private": true, "private": true,
"version": "0.1.0", "version": "0.1.0",
"type": "module", "type": "module",
@ -8,7 +8,8 @@
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",
"preview": "vite preview", "preview": "vite preview",
"tauri": "tauri", "tauri": "tauri",
"dev:m": "tauri android dev" "dev:m": "tauri android dev",
"build:m": "tauri android build"
}, },
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2", "@fortawesome/fontawesome-svg-core": "^6.7.2",

2
src-tauri/Cargo.lock generated
View file

@ -3347,7 +3347,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "soul_echo" name = "soulecho"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"serde", "serde",

View file

@ -1,5 +1,5 @@
[package] [package]
name = "soul_echo" name = "soulecho"
version = "0.1.0" version = "0.1.0"
description = "A Tauri App" description = "A Tauri App"
authors = ["you"] authors = ["you"]
@ -11,7 +11,7 @@ edition = "2021"
# The `_lib` suffix may seem redundant but it is necessary # The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name. # to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "soul_echo_lib" name = "soulecho_lib"
crate-type = ["staticlib", "cdylib", "rlib"] crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies] [build-dependencies]

View file

@ -1,4 +1,4 @@
/src/main/java/com/webfussel/soul_echo/generated /src/main/java/com/webfussel/soulecho/generated
/src/main/jniLibs/**/*.so /src/main/jniLibs/**/*.so
/src/main/assets/tauri.conf.json /src/main/assets/tauri.conf.json
/tauri.build.gradle.kts /tauri.build.gradle.kts

View file

@ -15,10 +15,10 @@ val tauriProperties = Properties().apply {
android { android {
compileSdk = 34 compileSdk = 34
namespace = "com.webfussel.soul_echo" namespace = "com.webfussel.soulecho"
defaultConfig { defaultConfig {
manifestPlaceholders["usesCleartextTraffic"] = "false" manifestPlaceholders["usesCleartextTraffic"] = "false"
applicationId = "com.webfussel.soul_echo" applicationId = "com.webfussel.soulecho"
minSdk = 24 minSdk = 24
targetSdk = 34 targetSdk = 34
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt() versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()

View file

@ -8,7 +8,7 @@
<application <application
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/Theme.soul_echo" android:theme="@style/Theme.soulecho"
android:usesCleartextTraffic="${usesCleartextTraffic}"> android:usesCleartextTraffic="${usesCleartextTraffic}">
<activity <activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"

View file

@ -1,3 +1,3 @@
package com.webfussel.soul_echo package com.webfussel.soulecho
class MainActivity : TauriActivity() class MainActivity : TauriActivity()

View file

@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools"> <resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.soul_echo" parent="Theme.MaterialComponents.DayNight.NoActionBar"> <style name="Theme.soulecho" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Customize your theme here. --> <!-- Customize your theme here. -->
</style> </style>
</resources> </resources>

View file

@ -1,4 +1,4 @@
<resources> <resources>
<string name="app_name">soul_echo</string> <string name="app_name">soulecho</string>
<string name="main_activity_title">soul_echo</string> <string name="main_activity_title">soulecho</string>
</resources> </resources>

View file

@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools"> <resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.soul_echo" parent="Theme.MaterialComponents.DayNight.NoActionBar"> <style name="Theme.soulecho" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Customize your theme here. --> <!-- Customize your theme here. -->
</style> </style>
</resources> </resources>

View file

@ -2,5 +2,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() { fn main() {
soul_echo_lib::run() soulecho_lib::run()
} }

View file

@ -1,8 +1,8 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "soul_echo", "productName": "soulecho",
"version": "0.1.0", "version": "0.1.0",
"identifier": "com.webfussel.soul_echo", "identifier": "com.webfussel.soulecho",
"build": { "build": {
"beforeDevCommand": "bun run dev", "beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420", "devUrl": "http://localhost:1420",
@ -12,7 +12,7 @@
"app": { "app": {
"windows": [ "windows": [
{ {
"title": "soul_echo", "title": "soulecho",
"width": 800, "width": 800,
"height": 600 "height": 600
} }

View file

@ -16,6 +16,7 @@ import Navigation from './components/Sections/Navigation.vue'
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
} }
:root { :root {