Skip to content

Commit 153edbc

Browse files
committed
v2.0.1
1 parent 7f77956 commit 153edbc

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

IMDbAPI_Client/IMDbAPI_Client.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<ApplicationIcon>ProjectIcon.ico</ApplicationIcon>
5252
</PropertyGroup>
5353
<ItemGroup>
54-
<Reference Include="IMDbApiLib, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
55-
<HintPath>..\packages\IMDbApiLib.2.0.0\lib\net46\IMDbApiLib.dll</HintPath>
54+
<Reference Include="IMDbApiLib, Version=2.0.1.0, Culture=neutral, processorArchitecture=MSIL">
55+
<HintPath>..\packages\IMDbApiLib.2.0.1\lib\net46\IMDbApiLib.dll</HintPath>
5656
</Reference>
5757
<Reference Include="MetroFramework, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a, processorArchitecture=MSIL">
5858
<HintPath>..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll</HintPath>

IMDbAPI_Client/MainForm.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public MainForm()
1818
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
1919
var fileVersionInfo = FileVersionInfo.GetVersionInfo(assembly.Location);
2020
var version = new Version(fileVersionInfo.ProductVersion);
21-
_version = btnVersion.Text = $"v{version.ToString(2)}";
21+
_version = btnVersion.Text = $"v{version.ToString(3)}";
2222
}
2323

2424

@@ -252,7 +252,7 @@ private void btnPing_Click(object sender, EventArgs e)
252252

253253
private void btnVersion_Click(object sender, EventArgs e)
254254
{
255-
string url = "https://imdb-api.com/client";
255+
string url = "https://tv-api.com/client";
256256
var ps = new ProcessStartInfo(url)
257257
{
258258
UseShellExecute = true,

IMDbAPI_Client/PingForm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ private async void PingForm_Shown(object sender, EventArgs e)
3131

3232
var servers = new List<string>()
3333
{
34-
"imdb-api.com",
34+
"tv-api.com",
3535
"imdb.com",
3636
"wikipedia.org",
3737
"themoviedb.org",

IMDbAPI_Client/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.0.0.0")]
35-
[assembly: AssemblyFileVersion("2.0.0.0")]
34+
[assembly: AssemblyVersion("2.0.1.0")]
35+
[assembly: AssemblyFileVersion("2.0.1.0")]

IMDbAPI_Client/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="IMDbApiLib" version="2.0.0" targetFramework="net472" />
3+
<package id="IMDbApiLib" version="2.0.1" targetFramework="net472" />
44
<package id="MetroModernUI" version="1.4.0.0" targetFramework="net472" />
55
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net472" />
66
<package id="System.ComponentModel.Annotations" version="5.0.0" targetFramework="net472" />

0 commit comments

Comments
 (0)