Skip to content

Commit

Permalink
Release v1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
lkcheng89 committed Nov 6, 2021
1 parent 19775f2 commit 31b84c3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Starbook Driver v1.0
--------------------

* Add Use Extended Feature to support more features of Starbook Ten.

Starbook Driver v0.9
--------------------

Expand Down
8 changes: 7 additions & 1 deletion Driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public partial class Telescope : ITelescopeV3
internal static int autoMeridianFlipDefault = 0;
internal static string extendedFeaturesProfileName = "ExtendedFeatures";
internal static string[] extendedFeaturesOff = { };
internal static string[] extendedFeaturesOn = { "Altitude", "Azimuth", "RightAscension", "Declination", "J2000", "MoveAxis", "Park", "SetPark", "Unpark" };
internal static string[] extendedFeaturesOn = { "Altitude", "Azimuth", "RightAscension", "Declination", "J2000", "MoveAxis", "Park", "SetPark", "Unpark", "TBD" };
internal static string[] extendedFeatureDefault = extendedFeaturesOff;
internal static string traceLoggerProfileName = "TraceLogger";
internal static bool traceLoggerDefault = false;
Expand Down Expand Up @@ -3017,6 +3017,12 @@ private void ThreadEntry()

starbook.J2000 = raDecType == Starbook.RADecType.J2000;
}

if (extendedFeatures.Contains("TBD"))
{
LogMessage("Thread", "Starbook.GetMountCode()={0}", starbook.GetMountCode(out string code));
LogMessage("Thread", "Starbook.GetStatus2()={0}", starbook.GetStatus2());
}
}
while (false);

Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// by using the '*' as shown below:
//
// TODO - Set your driver's version here
[assembly: AssemblyVersion("0.9.0.0")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
4 changes: 2 additions & 2 deletions StarbookSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
[Setup]
AppID={{6ca208b7-9809-44c8-a717-486a889f1186}
AppName=Starbook Driver
AppVerName=Starbook Driver v0.9
AppVersion=0.9
AppVerName=Starbook Driver v1.0
AppVersion=1.0
AppPublisher=Lung-Kai Cheng <lkcheng89@gmail.com>
AppPublisherURL=mailto:lkcheng89@gmail.com
AppSupportURL=https://github.com/lkcheng89/starbook
Expand Down

0 comments on commit 31b84c3

Please sign in to comment.