Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Release v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ded3d committed Mar 16, 2024
1 parent 8fdffc1 commit b950912
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and release an artifact
env:
VERSION: 0.1.4
VERSION: 0.1.5
on: workflow_dispatch
jobs:
buildAndRelease:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Noita YouTube Integration mod `v0.1.4`
# Noita YouTube Integration mod `v0.1.5`

Thanks to [dextercd](https://github.com/dextercd) for making this mod possible.

Expand All @@ -23,7 +23,7 @@ Please note that the mod is currently on active development stage.
2. Get the mod [source code](https://github.com/ded3d/noita_youtube_integration/archive/refs/heads/master.zip).
3. Run the following Powershell script:
```powershell
Get-ChildItem -Recurse -File -Include *.lua,*.toml | ForEach-Object { (Get-Content $_.FullName) | ForEach-Object { $_ -replace "`{VERSION`}", "0.1.4" } | Set-Content $_.FullName }
Get-ChildItem -Recurse -File -Include *.lua,*.toml | ForEach-Object { (Get-Content $_.FullName) | ForEach-Object { $_ -replace "`{VERSION`}", "0.1.5" } | Set-Content $_.FullName }
rustup target add i686-pc-windows-msvc
cargo build --release --target i686-pc-windows-msvc
Copy-Item -Path .\target\i686-pc-windows-msvc\release\yt_wrapper.dll -Destination .\lib\
Expand All @@ -35,7 +35,7 @@ Copy-Item -Path .\target\i686-pc-windows-msvc\release\yt_wrapper.dll -Destinatio
2. Get the mod [source code](https://github.com/ded3d/noita_youtube_integration/archive/refs/heads/master.zip).
3. Run the following script:
```sh
find . -type f \( -name "*.lua" -o -name "*.toml" \) -exec sed -i 's/{VERSION}/0.1.4/g' {} +
find . -type f \( -name "*.lua" -o -name "*.toml" \) -exec sed -i 's/{VERSION}/0.1.5/g' {} +
rustup target add i686-pc-windows-gnu
cargo build --release --target i686-pc-windows-gnu
cp ./target/i686-pc-windows-gnu/release/yt_wrapper.dll ./lib/
Expand Down

0 comments on commit b950912

Please sign in to comment.