Skip to content

Commit

Permalink
Version 3.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
savannstm committed Aug 7, 2024
1 parent b68ba2e commit 50b38a2
Show file tree
Hide file tree
Showing 14 changed files with 746 additions and 731 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rpgm-translation-gui",
"private": true,
"version": "3.10.1",
"version": "3.10.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -14,7 +14,7 @@
},
"dependencies": {
"@hyrious/marshal": "^0.3.3",
"@savannstm/marshal": "^0.5.0",
"@savannstm/marshal": "^0.5.1",
"@tauri-apps/api": "^1.6.0",
"immutable": "^4.3.7",
"pako": "^2.1.0",
Expand All @@ -27,7 +27,7 @@
"eslint": "^9.8.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0",
"typescript-eslint": "^8.0.1",
"vite": "^5.3.5",
"vite-plugin-minify": "^1.5.2"
}
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rpgm-translation-gui"
version = "3.10.1"
version = "3.10.2"
description = "A graphical interface that allows you to open RPG Maker games' text and edit it, then writing it back to the initial form."
authors = ["savannstm"]
edition = "2021"
Expand Down
5 changes: 4 additions & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ enum Variable {
Name,
Nickname,
Description,
Message1,
Message2,
Message3,
Message4,
Note,
}

Expand Down Expand Up @@ -215,7 +219,6 @@ fn compile(
};

if engine_type == EngineType::New {
println!("{}", data_output_path.display());
create_dir_all(data_output_path).unwrap();
create_dir_all(plugins_output_path).unwrap();
}
Expand Down
Loading

0 comments on commit 50b38a2

Please sign in to comment.