From 5c5359bf37add98eb4b55867d18698187ab92660 Mon Sep 17 00:00:00 2001 From: rennmaus-coder Date: Sat, 4 Mar 2023 11:11:27 +0100 Subject: [PATCH] version number --- NINA.Plugin.Template/FocusDriver.cs | 2 +- NINA.Plugin.Template/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NINA.Plugin.Template/FocusDriver.cs b/NINA.Plugin.Template/FocusDriver.cs index 027acfe..f392669 100644 --- a/NINA.Plugin.Template/FocusDriver.cs +++ b/NINA.Plugin.Template/FocusDriver.cs @@ -57,7 +57,7 @@ public bool IsMoving } } - private int _position = 200; + private int _position = Settings.Default.FocusStopPosition; public int Position { get => _position; diff --git a/NINA.Plugin.Template/Properties/AssemblyInfo.cs b/NINA.Plugin.Template/Properties/AssemblyInfo.cs index 55c415b..579fbe6 100644 --- a/NINA.Plugin.Template/Properties/AssemblyInfo.cs +++ b/NINA.Plugin.Template/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ // [MANDATORY] The assembly versioning //Should be incremented for each new release build of a plugin -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyVersion("2.0.0.1")] +[assembly: AssemblyFileVersion("2.0.0.1")] // [MANDATORY] The name of your plugin [assembly: AssemblyTitle("Lens AF")]