Skip to content

Commit

Permalink
Merge branch 'release-0.2.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Otiel committed Mar 12, 2019
2 parents e35e0e3 + dd358cf commit f60d917
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.2.5.0

## Improvements

* When a new version is available, its number is displayed on the main window.
* Updated dependencies to their latest version. This should fix issue [#76](https://github.com/Otiel/BandcampDownloader/issues/76) (false positive from Windows Defender).

# 0.2.4.2

## Bug fixes
Expand Down
4 changes: 2 additions & 2 deletions src/BandcampDownloader/BandcampDownloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
<Reference Include="Costura, Version=3.3.2.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
<HintPath>..\packages\Costura.Fody.3.3.2\lib\net40\Costura.dll</HintPath>
</Reference>
<Reference Include="HtmlAgilityPack, Version=1.9.1.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.9.1\lib\Net45\HtmlAgilityPack.dll</HintPath>
<Reference Include="HtmlAgilityPack, Version=1.9.2.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.9.2\lib\Net45\HtmlAgilityPack.dll</HintPath>
</Reference>
<Reference Include="ImageResizer, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\ImageResizer.4.2.5\lib\net45\ImageResizer.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions src/BandcampDownloader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.2.4.2")]
[assembly: AssemblyFileVersion("0.2.4.2")]
[assembly: AssemblyVersion("0.2.5.0")]
[assembly: AssemblyFileVersion("0.2.5.0")]
[assembly: GuidAttribute("8C171C7F-9BAC-4EC0-A287-59908B48953F")]
2 changes: 1 addition & 1 deletion src/BandcampDownloader/UI/Dialogs/WindowMain.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
Content="" />
<Label
x:Name="labelDownloadSpeed"
Width="150"
Width="100"
Margin="0,0,480,0"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Expand Down
2 changes: 1 addition & 1 deletion src/BandcampDownloader/UI/Dialogs/WindowMain.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private void CheckForUpdates() {
if (currentVersion.CompareTo(latestVersion) < 0) {
// The latest version is newer than the current one
Dispatcher.BeginInvoke(new Action(() => {
labelVersion.Content += " - A new version is available";
labelVersion.Content = $"A new version ({latestVersion}) is available";
}));
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BandcampDownloader/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<package id="Config.Net" version="4.13.2" targetFramework="net452" />
<package id="Costura.Fody" version="3.3.2" targetFramework="net452" />
<package id="Fody" version="4.0.2" targetFramework="net452" developmentDependency="true" />
<package id="HtmlAgilityPack" version="1.9.1" targetFramework="net452" />
<package id="HtmlAgilityPack" version="1.9.2" targetFramework="net452" />
<package id="ImageResizer" version="4.2.5" targetFramework="net452" />
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net452" />
<package id="NLog" version="4.5.11" targetFramework="net452" />
Expand Down

0 comments on commit f60d917

Please sign in to comment.