Update to version 0.8.0

This commit is contained in:
Carsten Larsen 2016-12-22 22:32:44 +01:00
parent 5fa992a5b9
commit 3cf9f128e6
21 changed files with 25 additions and 20 deletions

View File

@ -1,3 +1,8 @@
v0.8.0
- Import from ntp.exactlywww.com
- Fix string truncation bug
- Generic autotool support
v0.7.10
- Fixed bug in time server list

View File

@ -7,7 +7,7 @@
<OutputType>Exe</OutputType>
<RootNamespace>Ntp.Analyzer.Cli</RootNamespace>
<StartupObject>Ntp.Analyzer.Cli.Program</StartupObject>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<AssemblyName>Ntp.Analyzer.Cli</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>

View File

@ -90,7 +90,7 @@ public static void Main(string[] args)
private static void ShowUsage()
{
Console.WriteLine("NTP Analyzer v0.7.10");
Console.WriteLine("NTP Analyzer v0.8.0");
Console.WriteLine("Usage: ntpa --config file [--temp dir] [--writepid file] [--daemon name]");
usage = true;
}

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer.Data</RootNamespace>
<AssemblyName>Ntp.Analyzer.Data</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer.Import</RootNamespace>
<AssemblyName>Ntp.Analyzer.Import</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -6,7 +6,7 @@
<ProjectGuid>{0349CF56-C07C-46B5-B9CD-2BCB2709EE0A}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Ntp.Analyzer.Monitor.Cli</RootNamespace>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<AssemblyName>Ntp.Analyzer.Monitor.Cli</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer.Monitor.Client</RootNamespace>
<AssemblyName>Ntp.Analyzer.Monitor.Client</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer.Monitor.Server</RootNamespace>
<AssemblyName>Ntp.Analyzer.Monitor.Server</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer.Objects</RootNamespace>
<AssemblyName>Ntp.Analyzer.Objects</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -66,7 +66,7 @@ public Initializer(string configFile, int pid, string pidFile, string name, LogG
this.initlog = initlog;
Nodes = new List<IRequest>();
Listeners = new List<Listener>();
version = "0.7.10";
version = "0.8.0";
}
private static bool firstrun = true;

View File

@ -8,7 +8,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer.Process</RootNamespace>
<AssemblyName>Ntp.Analyzer.Process</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -6,7 +6,7 @@
<ProjectGuid>{9790FACF-170E-43C7-889A-D4445FC7E7A1}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Ntp.Analyzer.Validate.Cli</RootNamespace>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<StartupObject>Ntp.Analyzer.Validate.Cli.Program</StartupObject>
<AssemblyName>Ntp.Analyzer.Validate.Cli</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>

View File

@ -140,7 +140,7 @@ private static void SetDecompilerParam(Decompiler decompiler, char indent, strin
private static void ShowUsage()
{
Console.WriteLine("NTP Analyzer validator tool v0.7.10");
Console.WriteLine("NTP Analyzer validator tool v0.8.0");
Console.WriteLine("Usage: ntpav [-s|-v] [-d] [-t n|-w n] configuration");
Console.WriteLine(" -s Show parsed configuration");
Console.WriteLine(" -v Check if configuration is valid");

View File

@ -10,7 +10,7 @@
<AssemblyName>Ntp.Analyzer.Validate.Gui</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

View File

@ -123,7 +123,7 @@ Global
$5.IncludeInstanceMembers = True
$5.IncludeStaticEntities = True
description = NTP Analyzer is a tool dedicated to analyze the operation of time servers.
version = 0.7.10
version = 0.8.0
StartupItem = Ntp.Analyzer.Cli\Ntp.Analyzer.Cli.csproj
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Analyzer</RootNamespace>
<AssemblyName>Ntp.Analyzer</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Common</RootNamespace>
<AssemblyName>Ntp.Common</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Data.Provider</RootNamespace>
<AssemblyName>Ntp.Data.Provider</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -7,7 +7,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Ntp.Data</RootNamespace>
<AssemblyName>Ntp.Data</AssemblyName>
<ReleaseVersion>0.7.10</ReleaseVersion>
<ReleaseVersion>0.8.0</ReleaseVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@ -22,7 +22,7 @@
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyVersion("0.7.10.0")]
[assembly: AssemblyVersion("0.8.0.0")]
[assembly: AssemblyCopyright("Copyright (c) 2013-2016 Carsten Sonne Larsen <cs@innolan.dk>")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]

View File

@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.54])
AC_INIT([ntpa], [0.7.10])
AC_INIT([ntpa], [0.8.0])
AM_INIT_AUTOMAKE([foreign])
AM_MAINTAINER_MODE