Skip to content

Commit

Permalink
Ensure slewing flag is freshly read before returning from starting a …
Browse files Browse the repository at this point in the history
…meridian flip.

Bump version to 6.6.1.2
  • Loading branch information
astroman133 committed Jan 15, 2023
1 parent aebb593 commit d886c31
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions DeviceHub/DeviceManagers/TelescopeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,9 @@ public void StartMeridianFlip()
DoSlewToCoordinates( ra, dec );
}

Status = new DevHubTelescopeStatus( this );
SetFastPolling();

SlewInProgressMessage msg = new SlewInProgressMessage( true, ra, dec, newSide );
Messenger.Default.Send( msg );
PreviousSlewInProgressMessage = msg;
Expand Down
5 changes: 3 additions & 2 deletions Inno Setup/ASCOM Device Hub Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;

#define MyAppName "ASCOM.DeviceHub"
#define MyAppVersion "6.6.1.1"
#define MyAppVersion "6.6.1.2"
#define MyDestSubdirName "DeviceHub"
; #define MyPlatformRoot "D:\Github Repos\ASCOMPlatform\"
#define MyPlatformRoot "D:\My Projects\Visual Studio 2022\Ascom\"
Expand Down Expand Up @@ -182,8 +182,9 @@ end;
function InitializeSetup(): Boolean;
var
PlatformVersionNumber : double;
RequiredPlatformVersion := REQUIRED_PLATFORM_VERSION;
RequiredPlatformVersion : double;
begin
RequiredPlatformVersion := REQUIRED_PLATFORM_VERSION;
result := FALSE; // Assume failure
PlatformVersionNumber := PlatformVersion(); // Get the installed Platform version as a double
Expand Down
2 changes: 1 addition & 1 deletion ProductAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
// 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( "6.6.1.1" )]
[assembly: AssemblyVersion( "6.6.1.2" )]

0 comments on commit d886c31

Please sign in to comment.