Skip to content

Commit 7fab29d

Browse files
Merge branch 'master' into master
2 parents 5e177ac + 620e662 commit 7fab29d

5 files changed

Lines changed: 17 additions & 4 deletions

File tree

changelog-template.hbs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
Just a few community PRs and miscellany. As usual, Reloaded-II is on life support while I spend
55
the next years building the next best thing - if you want features, please contribute!
66

7+
# 1.29.5: Add missing `ModConfig.json` to include files
8+
9+
There was a small regression in `1.29.3`, where the default includes did not
10+
include `ModConfig.json`, that's now been fixed.
11+
12+
In addition I added a missing 'include files' label before the second table.
13+
714
# 1.29.4: Misc Linux Installer Improvements
815

916
Small improvements to install on Linux:

source/Reloaded.Mod.Launcher/Pages/Dialogs/PublishModDialog.xaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<default:ReloadedWindow x:Class="Reloaded.Mod.Launcher.Pages.Dialogs.PublishModDialog"
1+
<default:ReloadedWindow x:Class="Reloaded.Mod.Launcher.Pages.Dialogs.PublishModDialog"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
@@ -137,6 +137,12 @@
137137
Click="AddIgnoreRegex_Click" />
138138
</StackPanel>
139139

140+
<TextBlock Text="{DynamicResource PublishModIncludeTitle}"
141+
Margin="{DynamicResource CommonItemVerticalMarginSmaller}"
142+
HorizontalAlignment="Center"
143+
VerticalAlignment="Center"
144+
Style="{DynamicResource DefaultTextBlock}" />
145+
140146
<DataGrid Margin="{DynamicResource CommonItemVerticalMarginSmaller}"
141147
HorizontalAlignment="Center"
142148
VerticalAlignment="Center"

source/Reloaded.Mod.Launcher/Reloaded.Mod.Launcher.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<UseWPF>true</UseWPF>
88
<AssemblyName>Reloaded-II</AssemblyName>
99
<RootNamespace>Reloaded.Mod.Launcher</RootNamespace>
10-
<Version>1.29.4</Version>
10+
<Version>1.29.5</Version>
1111
<Copyright>Sewer56 ~ $([System.DateTime]::UtcNow.ToString("s")) | $(Version)</Copyright>
1212
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1313
<ApplicationIcon>appicon.ico</ApplicationIcon>

source/Reloaded.Mod.Loader.IO/Config/ModConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class ModConfig : ObservableObject, IConfig<ModConfig>, IModConfig
3939

4040
/// Publishing
4141
public List<string> IgnoreRegexes { get; set; } = [@".*\.json"];
42-
public List<string> IncludeRegexes { get; set; } = [@"\.deps\.json", @"\.runtimeconfig\.json"];
42+
public List<string> IncludeRegexes { get; set; } = [@"\.deps\.json", @"\.runtimeconfig\.json", @"ModConfig\.json"];
4343

4444
[JsonIgnore]
4545
public string ModSubDirs { get; set; } = string.Empty;

source/Reloaded.Mod.Loader/Reloaded.Mod.Loader.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
1616
<NoWarn>$(NoWarn);NU1605;NU1701</NoWarn>
17-
<Version>1.29.4</Version>
17+
<Version>1.29.5</Version>
1818
<CETCompat>false</CETCompat>
1919
<Platforms>x86;x64</Platforms>
2020
<GenerateDepsJson>false</GenerateDepsJson>

0 commit comments

Comments
 (0)