Skip to content

Commit

Permalink
Version 0.13.1/2 Hotfix (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 authored Mar 21, 2024
2 parents 29c4b21 + 78584bc commit f1e55d8
Show file tree
Hide file tree
Showing 11 changed files with 178 additions and 178 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/owmods-cli.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}:
rustPlatform.buildRustPackage rec {
pname = "owmods-cli";
version = "0.13.0";
version = "0.13.1";

# Prevent unneeded rebuilds
src = with lib.fileset;
Expand Down
2 changes: 1 addition & 1 deletion nix/owmods-gui.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}:
rustPlatform.buildRustPackage rec {
pname = "owmods-gui";
version = "0.13.1";
version = "0.13.2";

VITE_VERSION_SUFFIX = "-nix";

Expand Down
4 changes: 2 additions & 2 deletions owmods_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "owmods_cli"
authors = ["Bwc9876 <[email protected]>"]
description = "A CLI Tool To Manage OWML Mods"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
readme = "./README.md"
repository = "https://github.com/ow-mods/ow-mod-man/"
Expand All @@ -12,7 +12,7 @@ license = "GPL-3.0-or-later"
depends = "libssl1.1"

[dependencies]
owmods_core = { version = "0.13.0", path = "../owmods_core" }
owmods_core = { version = "0.13.1", path = "../owmods_core" }
clap = { version = "4.5.3", features = ["derive"] }
colored = "2.1.0"
anyhow = "1.0.81"
Expand Down
2 changes: 1 addition & 1 deletion owmods_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "owmods_core"
authors = ["Bwc9876 <[email protected]>"]
description = "The core library for the Outer Wilds Mod Manager"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
readme = "./README.md"
license = "GPL-3.0-or-later"
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions owmods_core/src/game.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,16 @@ fn fix_dlls(config: &Config) -> Result<()> {
// Replaces the DLLs that break OWML.Launcher.exe on Linux, any questions spam JohnCorby
const SYSTEM_DLL: &[u8] = include_bytes!("../linux_replacement_dlls/System.dll");
const SYSTEM_CORE_DLL: &[u8] = include_bytes!("../linux_replacement_dlls/System.Core.dll");
const OWML_MOD_LOADER_DLL: &[u8] =
include_bytes!("../linux_replacement_dlls/OWML.ModLoader.dll");
// const OWML_MOD_LOADER_DLL: &[u8] =
// include_bytes!("../linux_replacement_dlls/OWML.ModLoader.dll");

let owml_dir = PathBuf::from(&config.owml_path);
let mut file = File::create(owml_dir.join("System.dll"))?;
file.write_all(SYSTEM_DLL)?;
let mut file = File::create(owml_dir.join("System.Core.dll"))?;
file.write_all(SYSTEM_CORE_DLL)?;
let mut file = File::create(owml_dir.join("OWML.ModLoader.dll"))?;
file.write_all(OWML_MOD_LOADER_DLL)?;
// let mut file = File::create(owml_dir.join("OWML.ModLoader.dll"))?;
// file.write_all(OWML_MOD_LOADER_DLL)?;

Ok(())
}
4 changes: 2 additions & 2 deletions owmods_gui/backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "owmods_gui"
version = "0.13.1"
version = "0.13.2"
license = "GPL-3.0-or-later"
edition = "2021"

[build-dependencies]
tauri-build = { version = "1.5.1", features = [] }

[dependencies]
owmods_core = { version = "0.13.0", path = "../../owmods_core" }
owmods_core = { version = "0.13.1", path = "../../owmods_core" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.6.1", features = [ "clipboard-write-text",
Expand Down
8 changes: 4 additions & 4 deletions owmods_gui/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "owmods-gui-frontend",
"private": true,
"version": "0.13.1",
"version": "0.13.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -28,7 +28,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.13",
"react-virtuoso": "4.7.3"
"react-virtuoso": "4.7.4"
},
"devDependencies": {
"@testing-library/react": "14.2.2",
Expand All @@ -41,8 +41,8 @@
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "3.2.5",
"typescript": "5.4.2",
"vite": "5.1.6",
"typescript": "5.4.3",
"vite": "5.2.2",
"vite-imagetools": "6.2.9"
}
}
Loading

0 comments on commit f1e55d8

Please sign in to comment.