Previously, only S01E01-style episode codes triggered show-name injection from the folder name. Plain numbered filenames (e.g. "11 - Title.mkv") with a release tag sourced only from the folder (e.g. "[DmonHiro] Digimon Tamers (BD, 1080p)") were left untouched apart from the tag prefix. Also fixes ExtractShowName to strip trailing parenthetical metadata blocks like "(BD, 1080p)", which previously leaked into the derived show name.
31 lines
768 B
XML
31 lines
768 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AssemblyName>Futonizer</AssemblyName>
|
|
<RootNamespace>Futonizer</RootNamespace>
|
|
<Version>1.0.14</Version>
|
|
<FileVersion>1.0.14.0</FileVersion>
|
|
<ApplicationIcon>Assets\app.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="WPF-UI" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Remove="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Assets\app.png" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|