Skip to content

Commit

Permalink
Version 0.14.2 (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 authored Jul 5, 2024
2 parents 5d6b8d7 + c788370 commit 1141f63
Show file tree
Hide file tree
Showing 60 changed files with 179 additions and 116 deletions.
Binary file modified .github/assets/logo-gui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .github/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .github/assets/screenshots/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .github/assets/screenshots/logs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .github/assets/screenshots/main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/screenshots/settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/assets/screenshots/update.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ jobs:
- name: Install Tauri CLI
run: npm add -g @tauri-apps/cli

- name: Disable Tauri Updater
if: matrix.platform == 'ubuntu-20.04'
run: |
cargo xtask gui_disable_updater
- name: Build GUI
run: tauri build --ci -b $([[ ${{ matrix.platform }} = 'windows-latest' ]] && echo 'msi nsis' || echo 'appimage deb')
shell: bash
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release_gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
working-directory: owmods_gui/frontend
run: npm install

- name: Disable Tauri Updater
if: matrix.platform == 'ubuntu-20.04'
run: |
cargo xtask gui_disable_updater
- name: Build GUI
uses: tauri-apps/tauri-action@dev
env:
Expand Down
107 changes: 55 additions & 52 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.14.1";
version = "0.14.3";

# 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.14.1";
version = "0.14.2";

VITE_VERSION_SUFFIX = "-nix";

Expand Down
2 changes: 1 addition & 1 deletion nix/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ pkgs.mkShell {
clippy
rustfmt
nodejs
openssl
gcc
openssl
webkitgtk
glib-networking
pkg-config
Expand Down
7 changes: 2 additions & 5 deletions owmods_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@
name = "owmods_cli"
authors = ["Bwc9876 <[email protected]>"]
description = "A CLI Tool To Manage OWML Mods"
version = "0.14.2"
version = "0.14.3"
edition = "2021"
readme = "./README.md"
repository = "https://github.com/ow-mods/ow-mod-man/"
license = "GPL-3.0-or-later"

[package.metadata.deb]
depends = "libssl1.1"

[dependencies]
owmods_core = { version = "0.14.1", path = "../owmods_core" }
owmods_core = { version = "0.14.2", path = "../owmods_core" }
clap = { version = "4.5.4", features = ["derive"] }
colored = "2.1.0"
anyhow = "1.0.82"
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.14.1"
version = "0.14.2"
edition = "2021"
readme = "./README.md"
license = "GPL-3.0-or-later"
Expand Down
Loading

0 comments on commit 1141f63

Please sign in to comment.