Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

Commit ae14e9a

Browse files
committed
Updated dependencies and fixed resulting bugs
1 parent a1f8a92 commit ae14e9a

File tree

12 files changed

+20
-19
lines changed

12 files changed

+20
-19
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,10 @@ Common operation:
199199
* Most plguins, including the main ml_easysrv plugin, can be configured by editing the `easysrv.ini` file
200200
* Downloaded files and saved credentials are stored in `System.IO.Path.GetTempPath()`, unless specified otherwise
201201

202+
# Known problems
203+
204+
`esrv_soundcloud` and `msrv_soundcloud_plus` are inoperable, though `wsrv_soundcloud` still seems to work.
205+
202206
# Screenshot
203207

204208
![Screenshot](screenshot.png)

ServicePlugins/archiveskins_helper/archiveskins_helper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
11+
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
1212
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1313
</ItemGroup>
1414

ServicePlugins/esrv_soundcloud/Form1.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ private async void button1_Click(object sender, EventArgs e)
3232
button1.Text = "Please wait...";
3333

3434
var soundcloud = new SoundCloudClient();
35-
var results = await soundcloud.Search.GetResultsAsync(textBox1.Text);
36-
foreach (var result in results)
35+
await foreach (var result in soundcloud.Search.GetResultsAsync(textBox1.Text))
3736
{
3837
switch (result)
3938
{

ServicePlugins/esrv_soundcloud/Program.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ static async Task Main(string[] args)
4747
if (args[1] == "search")
4848
{
4949
var soundcloud = new SoundCloudClient();
50-
var results = await soundcloud.Search.GetResultsAsync(args[3]);
51-
foreach (var result in results)
50+
await foreach (var result in soundcloud.Search.GetResultsAsync(args[3]))
5251
{
5352
switch (result)
5453
{
@@ -83,9 +82,8 @@ static async Task Main(string[] args)
8382
else if (args[1] == "openlist")
8483
{
8584
var soundcloud = new SoundCloudClient();
86-
var tracks = await soundcloud.Playlists.GetTracksAsync(args[2]);
8785

88-
foreach (var track in tracks)
86+
await foreach (var track in soundcloud.Playlists.GetTracksAsync(args[2]))
8987
{
9088
string author = track?.User?.FullName;
9189
if (string.IsNullOrEmpty(author))

ServicePlugins/esrv_soundcloud/esrv_soundcloud.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="SoundCloudExplode" Version="1.5.0" />
12+
<PackageReference Include="SoundCloudExplode" Version="1.6.6" />
1313
<PackageReference Include="TagLibSharp" Version="2.3.0" />
1414
</ItemGroup>
1515

ServicePlugins/esrv_spotify/esrv_spotify.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="SpotifyExplode" Version="1.0.7" />
12+
<PackageReference Include="SpotifyExplode" Version="1.1.2" />
1313
<PackageReference Include="TagLibSharp" Version="2.3.0" />
14-
<PackageReference Include="YoutubeExplode" Version="6.3.1" />
14+
<PackageReference Include="YoutubeExplode" Version="6.5.4" />
1515
</ItemGroup>
1616

1717
</Project>

ServicePlugins/esrv_youtube/esrv_youtube.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="TagLibSharp" Version="2.3.0" />
13-
<PackageReference Include="YoutubeExplode" Version="6.3.1" />
13+
<PackageReference Include="YoutubeExplode" Version="6.5.4" />
1414
</ItemGroup>
1515

1616
</Project>

ServicePlugins/heritageskins_helper/heritageskins_helper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
11+
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
1212
</ItemGroup>
1313

1414
</Project>

ServicePlugins/skinbrowser2_helper/skinbrowser2_helper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
11+
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
1212
</ItemGroup>
1313

1414
</Project>

ServicePlugins/skinmuseum_helper/skinmuseum_helper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
11+
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
1212
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1313
</ItemGroup>
1414

0 commit comments

Comments
 (0)