2 Commits

Author SHA1 Message Date
Sebastian Dine 9793a13646 version 1.0.3 2023-09-05 11:56:04 +00:00
Sebastian Dine d6dd72bfb3 Update fs.rs 2023-09-05 11:48:06 +02:00
6 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "card-collection-manager-2", "name": "card-collection-manager-2",
"private": true, "private": true,
"version": "1.0.2", "version": "1.0.3",
"scripts": { "scripts": {
"dev": "next dev -p 1420", "dev": "next dev -p 1420",
"build": "next build && next export -o dist", "build": "next build && next export -o dist",
+1 -1
View File
@@ -203,7 +203,7 @@ dependencies = [
[[package]] [[package]]
name = "card-collection-manager-2" name = "card-collection-manager-2"
version = "1.0.0" version = "1.0.3"
dependencies = [ dependencies = [
"base64", "base64",
"image", "image",
@@ -1,6 +1,6 @@
[package] [package]
name = "card-collection-manager-2" name = "card-collection-manager-2"
version = "1.0.2" version = "1.0.3"
description = "A Tauri App" description = "A Tauri App"
authors = ["you"] authors = ["you"]
license = "" license = ""
@@ -15,6 +15,10 @@ pub fn format_text_for_fs(text: &String) -> String {
.replace("&", "And") .replace("&", "And")
.replace("|", "Or") .replace("|", "Or")
.replace("é", "e") .replace("é", "e")
.replace("í", "i")
.replace("ó", "o")
.replace("ú", "u")
.replace("û", "u")
} }
/// Parse an index from the end of a filename. This function supports indices with /// Parse an index from the end of a filename. This function supports indices with
@@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "card-collection-manager-2", "productName": "card-collection-manager-2",
"version": "1.0.2" "version": "1.0.3"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {
+1 -1
View File
@@ -1 +1 @@
1.0.2 1.0.3