Skip to content

Commit

Permalink
Preparing for beta release (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
wannkunstbeikor committed Mar 7, 2023
1 parent d84ac61 commit 75d7400
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
15 changes: 14 additions & 1 deletion FrostyEditor/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
v1.0.6.2 (Alpha 2)
v1.0.6.2 (Beta 1)
--------
- Fixed memory issue and writing of cat files (#222)
- Fixed about menu support link being cut off (#224)
- Changed error text for loading a wrong project (#225)
- Fixed issue with ealayer3 library (#235)

Plugin Changes
- Fixed crash when exporting textures (#223)
- Added bundle box to Chunk/Res Editor (#226)
- Fixed crash in BiowareLocalizationPlugin (#232)
- Fixed issue for importing sounds (#236)

v1.0.6.2 (Alpha 2)
--------
- Fixed issue with logging legacy mods (#217)

Expand Down
2 changes: 1 addition & 1 deletion FrostyPlugin/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public sealed class App
public static string SelectedPack;
public static ILogger Logger;

public static readonly int Version = 2;
public static readonly int Version = 1;

public static string ProfileSettingsPath => Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "/Frosty/" + ProfilesLibrary.ProfileName;
public static string GlobalSettingsPath => Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "/Frosty";
Expand Down
11 changes: 8 additions & 3 deletions Plugins/ChunkResExplorerPlugin/Themes/Generic.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@
</ListBox.ItemTemplate>
</ListBox>

<ListBox Grid.Row="3" x:Name="PART_ChunksBundlesBox">

<ListBox Grid.Row="3"
x:Name="PART_ChunksBundlesBox"
BorderThickness="2"
BorderBrush="{StaticResource ControlBackground}">
</ListBox>

</Grid>
Expand Down Expand Up @@ -151,7 +153,10 @@
</ContextMenu>
</core:FrostyDataExplorer.AssetContextMenu>
</core:FrostyDataExplorer>
<ListBox Grid.Row="1" x:Name="PART_ResBundlesBox">
<ListBox Grid.Row="1"
x:Name="PART_ResBundlesBox"
BorderThickness="2"
BorderBrush="{StaticResource ControlBackground}">
</ListBox>
</Grid>

Expand Down

0 comments on commit 75d7400

Please sign in to comment.