Update to 1.0.0.0.

This commit is contained in:
Ottermandias 2023-09-26 15:47:00 +02:00
parent dccf24e98c
commit a2de7ece25
6 changed files with 20 additions and 20 deletions

Binary file not shown.

View file

@ -5,11 +5,11 @@
<PlatformTarget>x64</PlatformTarget> <PlatformTarget>x64</PlatformTarget>
<RootNamespace>Glamourer</RootNamespace> <RootNamespace>Glamourer</RootNamespace>
<AssemblyName>Glamourer</AssemblyName> <AssemblyName>Glamourer</AssemblyName>
<FileVersion>0.2.0.27</FileVersion> <FileVersion>1.0.0.0</FileVersion>
<AssemblyVersion>0.2.0.27</AssemblyVersion> <AssemblyVersion>1.0.0.0</AssemblyVersion>
<Company>SoftOtter</Company> <Company>SoftOtter</Company>
<Product>Glamourer</Product> <Product>Glamourer</Product>
<Copyright>Copyright © 2020</Copyright> <Copyright>Copyright © 2023</Copyright>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>

View file

@ -5,7 +5,7 @@
"Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.", "Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.",
"Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ], "Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ],
"InternalName": "Glamourer", "InternalName": "Glamourer",
"AssemblyVersion": "0.2.0.27", "AssemblyVersion": "1.0.0.0",
"RepoUrl": "https://github.com/Ottermandias/Glamourer", "RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any", "ApplicableVersion": "any",
"DalamudApiLevel": 8, "DalamudApiLevel": 8,

View file

@ -28,9 +28,9 @@ public class MainWindow : Window, IDisposable
Unlocks = 5, Unlocks = 5,
} }
private readonly Configuration _config; private readonly Configuration _config;
private readonly TabSelected _event; private readonly TabSelected _event;
private readonly ITab[] _tabs; private readonly ITab[] _tabs;
public readonly SettingsTab Settings; public readonly SettingsTab Settings;
public readonly ActorTab Actors; public readonly ActorTab Actors;
@ -51,14 +51,14 @@ public class MainWindow : Window, IDisposable
MinimumSize = new Vector2(700, 675), MinimumSize = new Vector2(700, 675),
MaximumSize = ImGui.GetIO().DisplaySize, MaximumSize = ImGui.GetIO().DisplaySize,
}; };
Settings = settings; Settings = settings;
Actors = actors; Actors = actors;
Designs = designs; Designs = designs;
Automation = automation; Automation = automation;
Debug = debugTab; Debug = debugTab;
Unlocks = unlocks; Unlocks = unlocks;
_event = @event; _event = @event;
_config = config; _config = config;
_tabs = new ITab[] _tabs = new ITab[]
{ {
settings, settings,
@ -136,6 +136,6 @@ public class MainWindow : Window, IDisposable
private static string GetLabel() private static string GetLabel()
=> Glamourer.Version.Length == 0 => Glamourer.Version.Length == 0
? "Glamourer 2099###GlamourerMainWindow" ? "Glamourer###GlamourerMainWindow"
: $"Glamourer 2099 v{Glamourer.Version}###GlamourerMainWindow"; : $"Glamourer v{Glamourer.Version}###GlamourerMainWindow";
} }

Binary file not shown.

View file

@ -6,8 +6,8 @@
"Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.", "Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.",
"Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ], "Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ],
"InternalName": "Glamourer", "InternalName": "Glamourer",
"AssemblyVersion": "0.1.3.2", "AssemblyVersion": "1.0.0.0",
"TestingAssemblyVersion": "0.2.0.27", "TestingAssemblyVersion": "1.0.0.0",
"RepoUrl": "https://github.com/Ottermandias/Glamourer", "RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any", "ApplicableVersion": "any",
"DalamudApiLevel": 8, "DalamudApiLevel": 8,
@ -17,7 +17,7 @@
"LastUpdate": 1618608322, "LastUpdate": 1618608322,
"DownloadLinkInstall": "https://github.com/Ottermandias/Glamourer/raw/main/Glamourer.zip", "DownloadLinkInstall": "https://github.com/Ottermandias/Glamourer/raw/main/Glamourer.zip",
"DownloadLinkUpdate": "https://github.com/Ottermandias/Glamourer/raw/main/Glamourer.zip", "DownloadLinkUpdate": "https://github.com/Ottermandias/Glamourer/raw/main/Glamourer.zip",
"DownloadLinkTesting": "https://github.com/Ottermandias/Glamourer/raw/main/GlamourerTest.zip", "DownloadLinkTesting": "https://github.com/Ottermandias/Glamourer/raw/main/Glamourer.zip",
"IconUrl": "https://raw.githubusercontent.com/Ottermandias/Glamourer/main/images/icon.png" "IconUrl": "https://raw.githubusercontent.com/Ottermandias/Glamourer/main/images/icon.png"
} }
] ]