version bump

This commit is contained in:
SpikeHD
2022-07-09 23:14:48 -07:00
parent 960fcae647
commit 4c9dad49c4
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "cultivation", "name": "cultivation",
"version": "1.0.1", "version": "1.0.2",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@tauri-apps/api": "^1.0.0-rc.5", "@tauri-apps/api": "^1.0.0-rc.5",

View File

@@ -40,7 +40,7 @@ pub fn copy_file(path: String, new_path: String) -> bool {
let mut new_path_buf = std::path::PathBuf::from(&new_path); let mut new_path_buf = std::path::PathBuf::from(&new_path);
// If the new path doesn't exist, create it. // If the new path doesn't exist, create it.
if !file_helpers::dir_exists(new_path_buf.pop().to_string().as_str()) { if !dir_exists(new_path_buf.pop().to_string().as_str()) {
std::fs::create_dir_all(&new_path).unwrap(); std::fs::create_dir_all(&new_path).unwrap();
} }

View File

@@ -7,7 +7,7 @@
}, },
"package": { "package": {
"productName": "Cultivation", "productName": "Cultivation",
"version": "1.0.1" "version": "1.0.2"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {