Skip to content

Commit 9009b71

Browse files
committed
version bump
1 parent 0312746 commit 9009b71

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

BombRushRadio.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net462</TargetFramework>
4+
<TargetFramework>net461</TargetFramework>
55
<AssemblyName>BombRushRadio</AssemblyName>
66
<Description>Allows adding custom music tracks to Bomb Rush Cyberfunk.</Description>
7-
<Version>1.6.1</Version>
7+
<Version>1.7</Version>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9-
<LangVersion>latest</LangVersion>
9+
<LangVersion>11</LangVersion>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>

Helpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static string[] GetMetadata(string filePath, bool oldMethod)
6060
songArtist = songArtist.Trim();
6161
}
6262

63-
return [songArtist, songName.Trim()];
63+
return new[]{songArtist, songName.Trim()};
6464
}
6565

6666
public static string FormatMetadata(string[] metadata, string type)

Plugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void SanitizeSongs()
5555
Logger.LogInfo("[BRR] Adding " + tr.Title);
5656
}
5757

58-
if (Loaded.FirstOrDefault(l => l == Helpers.FormatMetadata([tr.Artist, tr.Title], "dash")) == null)
58+
if (Loaded.FirstOrDefault(l => l == Helpers.FormatMetadata(new []{tr.Artist, tr.Title}, "dash")) == null)
5959
{
6060
Logger.LogInfo("[BRR] Removing " + tr.Title);
6161
toRemove.Add(tr);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You can also use folders, like this:
4343
# Config
4444

4545
```
46-
## Settings file was created by plugin Bomb Rush Radio! v1.4
46+
## Settings file was created by plugin Bomb Rush Radio! v1.7
4747
## Plugin GUID: kade.bombrushradio
4848
4949
[Audio]

0 commit comments

Comments
 (0)