File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
4
#define MyAppName " OATControl"
5
- #define MyAppVersion " 1.1.3 .0"
5
+ #define MyAppVersion " 1.1.4 .0"
6
6
#define MyAppPublisher " OpenAstroTech"
7
7
#define MyAppURL " https://wiki.openastrotech.com/"
8
8
#define MyAppExeName " OATControl.exe"
Original file line number Diff line number Diff line change @@ -272,8 +272,8 @@ public MountVM()
272
272
_setDecLowerLimitCommand = new DelegateCommand ( ( p ) => SetDecLowLimit ( ) , ( ) => MountConnected ) ;
273
273
_setDECHomeOffsetFromPowerOnCommand = new DelegateCommand ( ( p ) => OnSetDECHomeOffsetFromPowerOn ( ) , ( ) => MountConnected ) ;
274
274
_gotoDECHomeFromPowerOnCommand = new DelegateCommand ( ( p ) => OnGotoDECHomeFromPowerOn ( ) , ( ) => MountConnected && ( FirmwareVersion > 10915 ) ) ;
275
- _setAzAltHomeCommand = new DelegateCommand ( ( p ) => OnSetAzAltHome ( ) , ( ) => MountConnected && ( FirmwareVersion > 11306 ) ) ;
276
- _moveAzAltToHomeCommand = new DelegateCommand ( ( p ) => OnMoveAzAltToHome ( ) , ( ) => MountConnected && ( FirmwareVersion > 11306 ) ) ;
275
+ _setAzAltHomeCommand = new DelegateCommand ( ( p ) => OnSetAzAltHome ( ) , ( ) => MountConnected && ( FirmwareVersion > 11306 ) && ( ScopeHasAZ || ScopeHasALT ) ) ;
276
+ _moveAzAltToHomeCommand = new DelegateCommand ( ( p ) => OnMoveAzAltToHome ( ) , ( ) => MountConnected && ( FirmwareVersion > 11306 ) && ( ScopeHasAZ || ScopeHasALT ) ) ;
277
277
278
278
279
279
_setRAHomeOffsetCommand = new DelegateCommand ( ( p ) => OnSetRAHomeOffset ( ) , ( ) => MountConnected && ( FirmwareVersion >= 10921 ) && ScopeHasHSAH ) ;
You can’t perform that action at this time.
0 commit comments