Compare commits

...

6 Commits

Author SHA1 Message Date
Logan McNaughton b8ce85b9fd update parallel rdp 2024-05-24 11:22:14 -06:00
Logan McNaughton 49ba66f0a3 Fix linter errors (#55) 2024-05-02 07:29:48 -06:00
dependabot[bot] 0bad5999c1 Update zip requirement from 0.6 to 1.1 (#53)
---
updated-dependencies:
- dependency-name: zip
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-21 20:44:19 -06:00
dependabot[bot] 2911be7deb Update sevenz-rust requirement from 0.5 to 0.6 (#52)
---
updated-dependencies:
- dependency-name: sevenz-rust
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-07 20:49:42 -06:00
dependabot[bot] 7ea1516d52 Update eframe requirement from 0.26 to 0.27 (#51)
Updates the requirements on [eframe](https://github.com/emilk/egui) to permit the latest version.
- [Release notes](https://github.com/emilk/egui/releases)
- [Changelog](https://github.com/emilk/egui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emilk/egui/compare/0.26.0...0.27.0)

---
updated-dependencies:
- dependency-name: eframe
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-26 20:53:38 -06:00
Logan McNaughton 3bac21a908 bump version to 0.1.5 (#50) 2024-03-21 12:05:28 -06:00
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ jobs:
path: target/release/gopher64.exe
build-macos:
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
+4 -4
View File
@@ -1,19 +1,19 @@
[package]
name = "gopher64"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dirs = "5.0"
zip = "0.6"
zip = "1.1"
governor = "0.6"
sevenz-rust = "0.5"
sevenz-rust = "0.6"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
eframe = "0.26"
eframe = "0.27"
rfd = "0.14"
sha2 = "0.10"
rusttype = "0.9"
+5 -5
View File
@@ -97,27 +97,27 @@ pub fn init(ui: &mut ui::Ui) {
panic!("could not create save dir")
}
ui.paths.eep_file_path = base_path.clone();
ui.paths.eep_file_path.clone_from(&base_path);
ui.paths
.eep_file_path
.push(ui.game_id.to_owned() + "-" + &ui.game_hash + ".eep");
ui.paths.sra_file_path = base_path.clone();
ui.paths.sra_file_path.clone_from(&base_path);
ui.paths
.sra_file_path
.push(ui.game_id.to_owned() + "-" + &ui.game_hash + ".sra");
ui.paths.fla_file_path = base_path.clone();
ui.paths.fla_file_path.clone_from(&base_path);
ui.paths
.fla_file_path
.push(ui.game_id.to_owned() + "-" + &ui.game_hash + ".fla");
ui.paths.pak_file_path = base_path.clone();
ui.paths.pak_file_path.clone_from(&base_path);
ui.paths
.pak_file_path
.push(ui.game_id.to_owned() + "-" + &ui.game_hash + ".mpk");
ui.paths.romsave_file_path = base_path.clone();
ui.paths.romsave_file_path.clone_from(&base_path);
ui.paths
.romsave_file_path
.push(ui.game_id.to_owned() + "-" + &ui.game_hash + ".romsave");