diff --git a/LICENSE b/LICENSE index c0b098c8c..03685b753 100644 --- a/LICENSE +++ b/LICENSE @@ -2,9 +2,9 @@ LokiNET is the reference implementation of LLARP (Low Latency Anonymous Routing Protocol) and is licensed under ZLIB license, however the protocol specifications are placed into the public domian using the CC0 License. -Copyright (c) 2018-2019 The Loki Project -Copyright (c) 2018-2019 Jeff Becker -Windows NT port and portions Copyright (c) 2018-2019 Rick V. +Copyright (c) 2018-2020 The Loki Project +Copyright (c) 2018-2020 Jeff Becker +Windows NT port and portions Copyright (c) 2018-2020 Rick V. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/llarp/win32/version.rc b/llarp/win32/version.rc index 34a0171f2..8b024dccd 100644 --- a/llarp/win32/version.rc +++ b/llarp/win32/version.rc @@ -77,7 +77,7 @@ BEGIN VALUE "FileDescription", "LokiNET daemon for Microsoft® Windows® NT™" VALUE "FileVersion", VERSION_STRING(LLARP_VERSION_TRIPLET, LLARP_RELEASE_MOTTO, VERSIONTAG) VALUE "InternalName", "llarpd" - VALUE "LegalCopyright", "Copyright ©2018-2019 Jeff Becker, Rick V for the Loki Foundation. All rights reserved. This software is provided under the terms of the zlib-libpng licence; see the file LICENSE for details." + VALUE "LegalCopyright", "Copyright ©2018-2020 Jeff Becker, Rick V for the Loki Foundation. All rights reserved. This software is provided under the terms of the zlib-libpng licence; see the file LICENSE for details." VALUE "OriginalFilename", "llarpd.exe" VALUE "ProductName", "LokiNET for Windows" VALUE "ProductVersion", VERSION_STRING(LLARP_VERSION_TRIPLET, LLARP_RELEASE_MOTTO, VERSIONTAG) diff --git a/test/win32/test.rc b/test/win32/test.rc index a48e06670..e88a53cda 100644 --- a/test/win32/test.rc +++ b/test/win32/test.rc @@ -82,7 +82,7 @@ BEGIN VALUE "FileDescription", "LokiNET for Microsoft® Windows® NT™" VALUE "FileVersion", VERSION_STRING(LLARP_VERSION_TRIPLET, LLARP_RELEASE_MOTTO, VERSIONTAG) VALUE "InternalName", "llarpd" - VALUE "LegalCopyright", "Copyright ©2018-2019 Jeff Becker, Rick V for the Loki Foundation. All rights reserved. This software is provided under the terms of the zlib-libpng licence; see the file LICENSE for details." + VALUE "LegalCopyright", "Copyright ©2018-2020 Jeff Becker, Rick V for the Loki Foundation. All rights reserved. This software is provided under the terms of the zlib-libpng licence; see the file LICENSE for details." VALUE "OriginalFilename", "llarpd.exe" VALUE "ProductName", "LokiNET for Windows" VALUE "ProductVersion", VERSION_STRING(LLARP_VERSION_TRIPLET, LLARP_RELEASE_MOTTO, VERSIONTAG) diff --git a/ui-win32/Properties/AssemblyInfo.cs b/ui-win32/Properties/AssemblyInfo.cs index 0d4c77e78..fed29c028 100644 --- a/ui-win32/Properties/AssemblyInfo.cs +++ b/ui-win32/Properties/AssemblyInfo.cs @@ -15,8 +15,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Loki Project")] [assembly: AssemblyProduct("Lokinet Launcher")] -[assembly: AssemblyCopyright("Copyright ©2018-2019 Loki Project. All rights reserved. See LICENSE for more details.")] -[assembly: AssemblyTrademark("Loki, Loki Project, LokiNET are ™ & ©2018-2019 Loki Foundation")] +[assembly: AssemblyCopyright("Copyright ©2018-2020 Loki Project. All rights reserved. See LICENSE for more details.")] +[assembly: AssemblyTrademark("Loki, Loki Project, LokiNET are ™ & ©2018-2020 Loki Foundation")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible @@ -37,10 +37,10 @@ using System.Runtime.InteropServices; // 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.6.0")] -[assembly: AssemblyFileVersion("0.6.0")] +[assembly: AssemblyVersion("0.6.1")] +[assembly: AssemblyFileVersion("0.6.1")] #if DEBUG -[assembly: AssemblyInformationalVersion("0.6.0-dev-{chash:8}")] +[assembly: AssemblyInformationalVersion("0.6.1-dev-{chash:8}")] #else -[assembly: AssemblyInformationalVersion("0.6.0 (RELEASE_CODENAME)")] +[assembly: AssemblyInformationalVersion("0.6.1 (RELEASE_CODENAME)")] #endif \ No newline at end of file diff --git a/win32-setup/lokinet-win32.iss b/win32-setup/lokinet-win32.iss index da1d5325f..2048acfd1 100644 --- a/win32-setup/lokinet-win32.iss +++ b/win32-setup/lokinet-win32.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Lokinet" -#define MyAppVersion "0.6.0" +#define MyAppVersion "0.6.1" #define MyAppPublisher "Loki Project" #define MyAppURL "https://lokinet.org" #define MyAppExeName "lokinetui.exe" @@ -11,7 +11,7 @@ #define DevPath "D:\dev\external\llarp\" #endif #include "version.txt" - +#define RELEASE ; see ../LICENSE [Setup] @@ -38,22 +38,22 @@ OutputDir={#DevPath}win32-setup OutputBaseFilename=lokinet-win32 Compression=lzma2/ultra64 SolidCompression=yes -VersionInfoVersion=0.6.0 +VersionInfoVersion=0.6.1 VersionInfoCompany=Loki Project VersionInfoDescription=Lokinet for Microsoft® Windows® NT™ #ifndef RELEASE -VersionInfoTextVersion=0.6.0-dev-{#VCSRev} -VersionInfoProductTextVersion=0.6.0-dev-{#VCSRev} +VersionInfoTextVersion=0.6.1-dev-{#VCSRev} +VersionInfoProductTextVersion=0.6.1-dev-{#VCSRev} #else -VersionInfoTextVersion=0.6.0 -VersionInfoProductTextVersion=0.6.0 ({#Codename}) +VersionInfoTextVersion=0.6.1 +VersionInfoProductTextVersion=0.6.1 ({#Codename}) #endif VersionInfoProductName=Lokinet -VersionInfoProductVersion=0.6.0 +VersionInfoProductVersion=0.6.1 InternalCompressLevel=ultra64 MinVersion=0,5.0 ArchitecturesInstallIn64BitMode=x64 -VersionInfoCopyright=Copyright ©2018-2019 Loki Project +VersionInfoCopyright=Copyright ©2018-2020 Loki Project [Languages] Name: "english"; MessagesFile: "compiler:Default.isl"