build: 6.2.0.0

This commit is contained in:
goaaats 2021-12-08 21:52:53 +01:00
parent 3dd8a09f15
commit 7999ad64e6
No known key found for this signature in database
GPG key ID: F18F057873895461
2 changed files with 7 additions and 3 deletions

View file

@ -8,7 +8,7 @@
</PropertyGroup>
<PropertyGroup Label="Feature">
<DalamudVersion>6.1.0.0</DalamudVersion>
<DalamudVersion>6.2.0.0</DalamudVersion>
<Description>XIV Launcher addon framework</Description>
<AssemblyVersion>$(DalamudVersion)</AssemblyVersion>
<Version>$(DalamudVersion)</Version>

View file

@ -19,7 +19,7 @@ namespace Dalamud.Interface.Internal.Windows
/// <summary>
/// Whether the latest update warrants a changelog window.
/// </summary>
public const string WarrantsChangelogForMajorMinor = "6.1.";
public const string WarrantsChangelogForMajorMinor = "6.2.";
private const string ChangeLog =
@"• Internal adjustments to allow plugins to work on the new version of the game
@ -31,7 +31,11 @@ Thanks and have fun with the new expansion!";
@"• All of your plugins were disabled automatically, due to this update. This is normal.
Open the plugin installer, then click 'update plugins'. Updated plugins should update and then re-enable themselves.
=> Please keep in mind that not all of your plugins may already be updated for the new version.
=> If some plugins are displayed with a red cross in the 'Installed Plugins' tab, they may not yet be available.";
=> If some plugins are displayed with a red cross in the 'Installed Plugins' tab, they may not yet be available.
While we tested the released plugins considerably with a smaller set of people and believe that they are stable, we cannot guarantee to you that you will not run into crashes.
Considering current queue times, this is why we recommend that for now, you only use a set of plugins that are most essential to you, so you can go on playing the game instead of waiting endlessly.";
private readonly string assemblyVersion = Util.AssemblyVersion;