diff --git a/Core/Utils/BrowserUtils.cs b/Core/Utils/BrowserUtils.cs index ad143c0c..1ce0b383 100644 --- a/Core/Utils/BrowserUtils.cs +++ b/Core/Utils/BrowserUtils.cs @@ -8,7 +8,6 @@ using CefSharp.WinForms; using TweetDuck.Configuration; using TweetDuck.Core.Other; -using TweetDuck.Data; namespace TweetDuck.Core.Utils{ static class BrowserUtils{ diff --git a/Program.cs b/Program.cs index db3b9297..8b9a9e2f 100644 --- a/Program.cs +++ b/Program.cs @@ -20,7 +20,7 @@ static class Program{ public const string BrandName = "TweetDuck"; public const string Website = "https://tweetduck.chylex.com"; - public const string VersionTag = "1.16.3"; + public const string VersionTag = "1.17"; public static readonly string ProgramPath = AppDomain.CurrentDomain.BaseDirectory; public static readonly bool IsPortable = File.Exists(Path.Combine(ProgramPath, "makeportable")); diff --git a/bld/gen_upd.iss b/bld/gen_upd.iss index c78c9412..80673b19 100644 --- a/bld/gen_upd.iss +++ b/bld/gen_upd.iss @@ -220,14 +220,14 @@ begin end; { Return whether the version of the installed libcef.dll library matches internal one. } -{ TODO: Remove workaround that forces full installation for 1.15 and older eventually. } +{ TODO: Remove workaround that forces full installation for 1.16 and older eventually. } function TDIsMatchingCEFVersion: Boolean; var CEFVersion: String; var TDVersionMS: Cardinal; var TDVersionLS: Cardinal; begin - if (GetVersionNumbers(UpdatePath+'TweetDuck.exe', TDVersionMS, TDVersionLS)) and ((TDVersionMS and $FFFF) < 16) then + if (GetVersionNumbers(UpdatePath+'TweetDuck.exe', TDVersionMS, TDVersionLS)) and ((TDVersionMS and $FFFF) < 17) then begin Result := False Exit diff --git a/subprocess/TweetDuck.Browser.csproj b/subprocess/TweetDuck.Browser.csproj index b758d32f..6e0f93e7 100644 --- a/subprocess/TweetDuck.Browser.csproj +++ b/subprocess/TweetDuck.Browser.csproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="..\packages\Microsoft.Net.Compilers.2.9.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.2.9.0\build\Microsoft.Net.Compilers.props')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />