File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11&larr ; [ mod build config] ( ./mod-build-config.md )
22
33## Release notes
4+ # 4.3.2
5+ Released 09 November 2024 for SMAPI 4.1.0 or later.
6+
7+ * Fixed ` IgnoreModFilePaths ` and ` IgnoreModFilePatterns ` not working correctly in recent versions.
8+
49## 4.3.1
510Released 04 November 2024 for SMAPI 4.1.0 or later.
611
Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ public override bool Execute()
123123 ExtraAssemblyTypes bundleAssemblyTypes = this . GetExtraAssembliesToBundleOption ( ) ;
124124
125125 // parse ignore patterns
126- string [ ] ignoreFilePaths = this . GetCustomIgnoreFilePaths ( this . IgnoreModFilePatterns ) . ToArray ( ) ;
127- Regex [ ] ignoreFilePatterns = this . GetCustomIgnorePatterns ( this . IgnoreModFilePaths ) . ToArray ( ) ;
126+ string [ ] ignoreFilePaths = this . GetCustomIgnoreFilePaths ( this . IgnoreModFilePaths ) . ToArray ( ) ;
127+ Regex [ ] ignoreFilePatterns = this . GetCustomIgnorePatterns ( this . IgnoreModFilePatterns ) . ToArray ( ) ;
128128
129129 var modPackages = new Dictionary < string , IModFileManager >
130130 {
@@ -149,8 +149,8 @@ public override bool Execute()
149149 string version = item . GetMetadata ( "Version" ) ;
150150
151151 // get options
152- ignoreFilePaths = this . GetCustomIgnoreFilePaths ( item . GetMetadata ( "IgnoreModFilePatterns " ) ) . ToArray ( ) ;
153- ignoreFilePatterns = this . GetCustomIgnorePatterns ( this . IgnoreModFilePaths ) . ToArray ( ) ;
152+ ignoreFilePaths = this . GetCustomIgnoreFilePaths ( item . GetMetadata ( "IgnoreModFilePaths " ) ) . ToArray ( ) ;
153+ ignoreFilePatterns = this . GetCustomIgnorePatterns ( item . GetMetadata ( "IgnoreModFilePatterns" ) ) . ToArray ( ) ;
154154 string rawValidateManifest = item . GetMetadata ( "ValidateManifest" ) ;
155155 bool validateManifest = string . IsNullOrEmpty ( rawValidateManifest ) || bool . Parse ( rawValidateManifest ) ;
156156
Original file line number Diff line number Diff line change 1010 <!-- NuGet package-->
1111 <PackageId >Pathoschild.Stardew.ModBuildConfig</PackageId >
1212 <Title >Build package for SMAPI mods</Title >
13- <Version >4.3.1 </Version >
13+ <Version >4.3.2 </Version >
1414 <Authors >Pathoschild</Authors >
15- <Description >Automates the build configuration for crossplatform Stardew Valley SMAPI mods. For SMAPI 3.13 .0 or later.</Description >
15+ <Description >Automates the build configuration for crossplatform Stardew Valley SMAPI mods. For SMAPI 4.1 .0 or later.</Description >
1616 <PackageReadmeFile >mod-package.md</PackageReadmeFile >
1717 <PackageLicenseExpression >MIT</PackageLicenseExpression >
1818 <PackageIcon >images/icon.png</PackageIcon >
You can’t perform that action at this time.
0 commit comments