Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Renzo904 committed Dec 24, 2024
1 parent 37ca668 commit eb2a87a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main
- dev
tags:
- "**"

pull_request:
branches:
Expand Down Expand Up @@ -50,3 +52,22 @@ jobs:
path: |
./TekaTeka/bin/Release/net6.0/RF.TekaTeka.dll
./TekaTeka/bin/Release/net6.0/RF.TekaTeka.pdb
- name: Create Release Page
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
fail_on_unmatched_files: true
body: |
## How to use
- Install [BepInEx](https://docs.bepinex.dev/articles/user_guide/installation/index.html)
- Download the latest version of `RF.TekaTeka.dll` from this page and paste it on `(GameFolder)\BepInEx\plugins\`
- Place all your mods on the folder named `TekaSongs` created the the first time you execute the mod
## CHANGELOG
`TODO`
files: |
./TekaTeka/bin/Release/net6.0/RF.TekaTeka.dll
./TekaTeka/bin/Release/net6.0/RF.TekaTeka.pdb
2 changes: 1 addition & 1 deletion TekaTeka/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace TekaTeka
public class Plugin : BasePlugin
{
public const string ModName = "TekaTeka";
public const string ModVersion = "1.0.0";
public const string ModVersion = "1.0.1";

public static Plugin Instance;
private Harmony _harmony = null;
Expand Down
2 changes: 1 addition & 1 deletion TekaTeka/TekaTeka.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ModName>TekaTeka</ModName>
<ModVersion>0.0.1</ModVersion>
<ModVersion>1.0.1</ModVersion>
<Description>A Rhythm Festival Custom Song Loader</Description>
</PropertyGroup>

Expand Down

0 comments on commit eb2a87a

Please sign in to comment.