From 703ac23c35734210e27ac0d76db6f2c029645453 Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Mon, 15 Oct 2018 16:13:11 +0300 Subject: [PATCH] Update version --- Changelog.md | 5 +++++ Deploy/Choco/lightbulb.nuspec | 2 +- Deploy/Choco/tools/chocolateyinstall.ps1 | 2 +- Deploy/Installer/Installer.iss | 2 +- LightBulb/Properties/AssemblyInfo.cs | 4 ++-- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index ff65e85d..94621b0d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +### v1.6.4.1 (15-Oct-2018) + +- Changed to a different geoip provider, again. This fixes issues with LightBulb not being able to acquire location and sunrise/sunset times automatically since Oct 8th. +- Fixed "Configure" tray menu item not doing anything. + ### v1.6.4 (23-Jul-2018) - Improved the temperature calculation algorithm so that it works for those cases when sunset happens at night. diff --git a/Deploy/Choco/lightbulb.nuspec b/Deploy/Choco/lightbulb.nuspec index 5fedd34b..ae6d2e4b 100644 --- a/Deploy/Choco/lightbulb.nuspec +++ b/Deploy/Choco/lightbulb.nuspec @@ -2,7 +2,7 @@ lightbulb - 1.6.4 + 1.6.4.1 https://github.com/Tyrrrz/LightBulb Tyrrrz LightBulb diff --git a/Deploy/Choco/tools/chocolateyinstall.ps1 b/Deploy/Choco/tools/chocolateyinstall.ps1 index c2362ddd..adc7cea4 100644 --- a/Deploy/Choco/tools/chocolateyinstall.ps1 +++ b/Deploy/Choco/tools/chocolateyinstall.ps1 @@ -1,7 +1,7 @@ $ErrorActionPreference = 'Stop'; $packageName= 'lightbulb' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" -$url = 'https://github.com/Tyrrrz/LightBulb/releases/download/1.6.4/LightBulb-Installer.exe' +$url = 'https://github.com/Tyrrrz/LightBulb/releases/download/1.6.4.1/LightBulb-Installer.exe' $packageArgs = @{ packageName = $packageName unzipLocation = $toolsDir diff --git a/Deploy/Installer/Installer.iss b/Deploy/Installer/Installer.iss index 4435df99..bd149098 100644 --- a/Deploy/Installer/Installer.iss +++ b/Deploy/Installer/Installer.iss @@ -1,5 +1,5 @@ #define MyAppName "LightBulb" -#define MyAppVersion "1.6.4" +#define MyAppVersion "1.6.4.1" #define MyAppPublisher "Alexey 'Tyrrrz' Golub" #define MyAppURL "http://tyrrrz.me/Projects/LightBulb" diff --git a/LightBulb/Properties/AssemblyInfo.cs b/LightBulb/Properties/AssemblyInfo.cs index 799c0cad..62c93710 100644 --- a/LightBulb/Properties/AssemblyInfo.cs +++ b/LightBulb/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)] -[assembly: AssemblyVersion("1.6.4")] -[assembly: AssemblyFileVersion("1.6.4")] \ No newline at end of file +[assembly: AssemblyVersion("1.6.4.1")] +[assembly: AssemblyFileVersion("1.6.4.1")] \ No newline at end of file