Browse Source

Version bump

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
076856fdf8
5 changed files with 6 additions and 4 deletions
  1. +1
    -1
      IPA.Loader/Config/SelfConfig.cs
  2. +2
    -0
      IPA.Loader/Loader/Features/Feature.cs
  3. +1
    -1
      IPA.Loader/Loader/manifest.json
  4. +1
    -1
      IPA/Program.cs
  5. +1
    -1
      appveyor.yml

+ 1
- 1
IPA.Loader/Config/SelfConfig.cs View File

@ -37,7 +37,7 @@ namespace IPA.Config
}
internal const string IPAName = "Beat Saber IPA";
internal const string IPAVersion = "3.12.20";
internal const string IPAVersion = "3.12.21";
public bool Regenerate = true;


+ 2
- 0
IPA.Loader/Loader/Features/Feature.cs View File

@ -18,6 +18,8 @@ namespace IPA.Loader.Features
/// Note: When no parenthesis are provided, <paramref name="parameters"/> is an empty array.
/// </summary>
/// <remarks>
/// This gets called BEFORE your Init method.
///
/// Returning <see langword="false" /> does *not* prevent the plugin from being loaded. It simply prevents the feature from being used.
/// </remarks>
/// <param name="meta">the metadata of the plugin that is being prepared</param>


+ 1
- 1
IPA.Loader/Loader/manifest.json View File

@ -8,7 +8,7 @@
"gameVersion": "1.0.0",
"id": "BSIPA",
"name": "Beat Saber IPA",
"version": "3.12.20",
"version": "3.12.21",
"icon": "IPA.icon.png",
"features": [
"define-feature(print, IPA.Loader.Features.PrintFeature)",


+ 1
- 1
IPA/Program.cs View File

@ -23,7 +23,7 @@ namespace IPA
Unknown
}
public const string FileVersion = "3.12.20";
public const string FileVersion = "3.12.21";
public static Version Version => Assembly.GetEntryAssembly().GetName().Version;


+ 1
- 1
appveyor.yml View File

@ -1,6 +1,6 @@
version: 'BSIPA-{branch}-{build}'
environment:
bsipa_version: '3.12.20'
bsipa_version: '3.12.21'
pull_requests:
do_not_increment_build_number: true
install:


Loading…
Cancel
Save