Merge for 1.2.4 #8
@ -18,8 +18,8 @@ namespace OWTrack
 | 
			
		||||
            InitializeComponent();
 | 
			
		||||
            loadSave();
 | 
			
		||||
            checkStatus();
 | 
			
		||||
            label4.Text = Program.Version;
 | 
			
		||||
            Text = "OWTrack " + Program.Version;           
 | 
			
		||||
            label4.Text = Program.Version.ToString();
 | 
			
		||||
            Text = "OWTrack " + Program.Version.ToString();           
 | 
			
		||||
        }
 | 
			
		||||
                
 | 
			
		||||
        private void checkStatus()
 | 
			
		||||
 | 
			
		||||
@ -11,6 +11,7 @@
 | 
			
		||||
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
 | 
			
		||||
    <FileAlignment>512</FileAlignment>
 | 
			
		||||
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
 | 
			
		||||
    <IsWebBootstrapper>false</IsWebBootstrapper>
 | 
			
		||||
    <PublishUrl>publish\</PublishUrl>
 | 
			
		||||
    <Install>true</Install>
 | 
			
		||||
    <InstallFrom>Disk</InstallFrom>
 | 
			
		||||
@ -21,10 +22,10 @@
 | 
			
		||||
    <UpdatePeriodically>false</UpdatePeriodically>
 | 
			
		||||
    <UpdateRequired>false</UpdateRequired>
 | 
			
		||||
    <MapFileExtensions>true</MapFileExtensions>
 | 
			
		||||
    <ApplicationRevision>0</ApplicationRevision>
 | 
			
		||||
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
 | 
			
		||||
    <IsWebBootstrapper>false</IsWebBootstrapper>
 | 
			
		||||
    <ApplicationRevision>12</ApplicationRevision>
 | 
			
		||||
    <ApplicationVersion>1.2.3.%2a</ApplicationVersion>
 | 
			
		||||
    <UseApplicationTrust>false</UseApplicationTrust>
 | 
			
		||||
    <PublishWizardCompleted>true</PublishWizardCompleted>
 | 
			
		||||
    <BootstrapperEnabled>true</BootstrapperEnabled>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 | 
			
		||||
@ -67,6 +68,18 @@
 | 
			
		||||
    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
 | 
			
		||||
    <Prefer32Bit>true</Prefer32Bit>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <ManifestCertificateThumbprint>120F37EDC91FF77172D31673046260B265C70C5D</ManifestCertificateThumbprint>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <ManifestKeyFile>OWTrack_TemporaryKey.pfx</ManifestKeyFile>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <GenerateManifests>true</GenerateManifests>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <SignManifests>true</SignManifests>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
 | 
			
		||||
      <HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
 | 
			
		||||
@ -105,6 +118,7 @@
 | 
			
		||||
      <AutoGen>True</AutoGen>
 | 
			
		||||
      <DependentUpon>Resources.resx</DependentUpon>
 | 
			
		||||
    </Compile>
 | 
			
		||||
    <None Include="OWTrack_TemporaryKey.pfx" />
 | 
			
		||||
    <None Include="packages.config" />
 | 
			
		||||
    <None Include="Properties\Settings.settings">
 | 
			
		||||
      <Generator>SettingsSingleFileGenerator</Generator>
 | 
			
		||||
 | 
			
		||||
@ -1,14 +1,17 @@
 | 
			
		||||
using System;
 | 
			
		||||
using System.Collections.Generic;
 | 
			
		||||
using System.Deployment.Application;
 | 
			
		||||
using System.Linq;
 | 
			
		||||
using System.Threading.Tasks;
 | 
			
		||||
using System.Windows.Forms;
 | 
			
		||||
using System.Deployment.Application;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
namespace OWTrack
 | 
			
		||||
{
 | 
			
		||||
    static class Program
 | 
			
		||||
    {
 | 
			
		||||
        public static string Version = "1.2.3";
 | 
			
		||||
    {        
 | 
			
		||||
        //public static string Version = Application.ProductVersion;
 | 
			
		||||
        /// <summary>
 | 
			
		||||
        /// The main entry point for the application.
 | 
			
		||||
        /// </summary>
 | 
			
		||||
@ -19,6 +22,14 @@ namespace OWTrack
 | 
			
		||||
            Application.SetCompatibleTextRenderingDefault(false);
 | 
			
		||||
            Application.Run(new Form1());
 | 
			
		||||
        }
 | 
			
		||||
        
 | 
			
		||||
        private static Version version = new Version(Application.ProductVersion);
 | 
			
		||||
 | 
			
		||||
        public static Version Version
 | 
			
		||||
        {
 | 
			
		||||
            get
 | 
			
		||||
            {
 | 
			
		||||
                return version;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
 | 
			
		||||
[assembly: AssemblyTitle("OWTrack")]
 | 
			
		||||
[assembly: AssemblyDescription("")]
 | 
			
		||||
[assembly: AssemblyConfiguration("")]
 | 
			
		||||
[assembly: AssemblyCompany("")]
 | 
			
		||||
[assembly: AssemblyCompany("Hesham Systems LLC")]
 | 
			
		||||
[assembly: AssemblyProduct("OWTrack")]
 | 
			
		||||
[assembly: AssemblyCopyright("Copyright ©  2018")]
 | 
			
		||||
[assembly: AssemblyTrademark("")]
 | 
			
		||||
@ -33,7 +33,9 @@ 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("1.0.0.0")]
 | 
			
		||||
[assembly: AssemblyFileVersion("1.0.0.0")]
 | 
			
		||||
//[assembly: AssemblyVersion("1.0.0.0")]
 | 
			
		||||
//[assembly: AssemblyFileVersion("1.0.0.0")]
 | 
			
		||||
[assembly: NeutralResourcesLanguage("")]
 | 
			
		||||
[assembly: AssemblyVersion("1.2.3")]
 | 
			
		||||
[assembly: AssemblyFileVersion("1.2.3")]
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user