5 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
Sebastian Dine ae79bae1d6 precommit version adjustments 2023-03-27 09:36:20 +00:00
Sebastian Dine 974b5fb30e Update tauri.conf.json 2023-03-24 17:08:25 +01:00
Sebastian Dine 5d7ef22cfd Update version 2023-03-24 16:47:58 +01:00
10 changed files with 155 additions and 149 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ After performing these steps, the next time you open CCM2, you will see your col
### Contribute ### Contribute
The project includes configuration for [VSCode development containers](https://code.visualstudio.com/docs/remote/containers) which should be the preffered environment to develop new features of the app. The container automatically sets up a whole Tauri development environment including Typescript & Rust plugins for VSCode. The project includes configuration for [VSCode development containers](https://code.visualstudio.com/docs/remote/containers) which should be the preffered environment to develop new features of the app. The container automatically sets up a whole Tauri development environment including Typescript & Rust plugins for VSCode.
Also, in directory `hooks/` you find some helpful git hooks that automate/standardize some work. You can activate these hooks by executing the script `activate_hooks.sh` from within the `hooks/` directory. If you are receiving errors like `fatal: cannot run .git/hooks/pre-commit: No such file or directory`, check the line-end sequence of the hook scripts, adjust them according to your system and run `activate_hooks.sh` again. Also, in directory `hooks/` you find some helpful git hooks that automate/standardize some work. You can activate these hooks by executing the script `activate_hooks.sh` from within the `hooks/` directory. If you are receiving errors like `fatal: cannot run .git/hooks/pre-commit: No such file or directory`, check the line-end sequence of the hook scripts, adjust them according to your system and run `activate_hooks.sh` again. The hooks are especially useful for versioning. They ensure that the version number in each of the 3 manifest files are the same and create a `version` file with the current version at the project's root level, which can be picked up easily by automated CI/CD tasks.
Additionally, if you want to run the GUI out of the container, you need to use a X11 tool. I will briefly explain how to run them in order to display the GUI from the container: Additionally, if you want to run the GUI out of the container, you need to use a X11 tool. I will briefly explain how to run them in order to display the GUI from the container:
+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.1", "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 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "card-collection-manager-2" name = "card-collection-manager-2"
version = "1.0.1" 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
+1 -1
View File
@@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "card-collection-manager-2", "productName": "card-collection-manager-2",
"version": "1.0.0" "version": "1.0.3"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {
-1
View File
@@ -1 +0,0 @@
1.0.0
+10 -7
View File
@@ -1,26 +1,29 @@
#!/bin/sh #!/bin/sh
PROJECT_ROOT=$(pwd) PROJECT_ROOT=$(pwd)
# check if version and project name are the same in frontend and backend manifest # Check if version and project name are the same in all manifest files.
# TAURI_VERSION is the version that is actually used by the tauri build command,
# but to avoid any misconception, versions in all manifests should be the same.
cd $PROJECT_ROOT && cd card-collection-manager-2/src-tauri cd $PROJECT_ROOT && cd card-collection-manager-2/src-tauri
CARGO_VERSION=$(cargo read-manifest | jq -r .version) CARGO_VERSION=$(cargo read-manifest | jq -r .version)
CARGO_NAME=$(cargo read-manifest | jq -r .name) CARGO_NAME=$(cargo read-manifest | jq -r .name)
TAURI_VERSION=$(cat tauri.conf.json | jq -r .package.version)
TAURI_NAME=$(cat tauri.conf.json | jq -r .package.productName)
cd $PROJECT_ROOT && cd card-collection-manager-2 cd $PROJECT_ROOT && cd card-collection-manager-2
YARN_VERSION=$(cat package.json | jq -r .version) YARN_VERSION=$(cat package.json | jq -r .version)
YARN_NAME=$(cat package.json | jq -r .name) YARN_NAME=$(cat package.json | jq -r .name)
if [ $CARGO_VERSION != $YARN_VERSION ]; then if [ $CARGO_VERSION != $YARN_VERSION ] || [ $CARGO_VERSION != $TAURI_VERSION ] || [ $YARN_VERSION != $TAURI_VERSION ]; then
echo "[PRE-COMMIT] Project version in 'package.json' and 'Cargo.toml' does not match." echo "[PRE-COMMIT] Project version in manifests does not match."
exit 1 exit 1
fi fi
if [ $CARGO_NAME != $YARN_NAME ]; then if [ $CARGO_NAME != $YARN_NAME ] || [ $CARGO_NAME != $TAURI_NAME ] || [ $YARN_NAME != $TAURI_NAME ]; then
echo "[PRE-COMMIT] Project name in 'package.json' and 'Cargo.toml' does not match." echo "[PRE-COMMIT] Project name in manifests does not match."
exit 1 exit 1
fi fi
cd $PROJECT_ROOT cd $PROJECT_ROOT
echo $CARGO_VERSION > version echo $TAURI_VERSION > version
git add version git add version
exit 0 exit 0
Regular → Executable
+1 -1
View File
@@ -1 +1 @@
1.0.1 1.0.3