Skip to content

Commit 9dc2796

Browse files
committed
ASCOM 0.1.3.1 RC - Fix for , and . localization
1 parent bef2edf commit 9dc2796

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/Driver.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Public Class Telescope
4040
'
4141
' Driver ID and descriptive string that shows in the Chooser
4242
'
43-
Private Version As String = "0.1.3.0 RC1"
43+
Private Version As String = "0.1.3.1 RC1"
4444
Friend Shared driverID As String = "ASCOM.OpenAstroTracker.Telescope"
4545
Private Shared driverDescription As String = "OpenAstroTracker Telescope"
4646

Binary file not shown.

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/SetupDialogForm.Designer.vb

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/SetupDialogForm.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,4 @@
120120
<metadata name="ToolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121121
<value>17, 17</value>
122122
</metadata>
123-
<metadata name="ToolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
124-
<value>17, 17</value>
125-
</metadata>
126123
</root>

Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/SetupDialogForm.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Public Class SetupDialogForm
5555
End Sub
5656

5757
Private Sub txtLat_KeyPress(sender As Object, e As KeyPressEventArgs) Handles txtLat.KeyPress
58-
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "-" Then
58+
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "," And Not e.KeyChar = "-" Then
5959
e.Handled = True
6060
End If
6161
End Sub
6262

6363
Private Sub txtLong_KeyPress(sender As Object, e As KeyPressEventArgs) Handles txtLong.KeyPress
64-
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "-" Then
64+
If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not e.KeyChar = "." And Not e.KeyChar = "," And Not e.KeyChar = "-" Then
6565
e.Handled = True
6666
End If
6767
End Sub
@@ -72,5 +72,5 @@ Public Class SetupDialogForm
7272
End If
7373
End Sub
7474

75-
75+
7676
End Class

Software/OpenAstroTracker ASCOM/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
OpenAstroTracker ASCOM driver 0.1.3.0 RC1 : 2020-04-15
1+
OpenAstroTracker ASCOM driver 0.1.3.1 RC1 : 2020-04-16
22

33
The first release candidate of the OAT ASCOM Driver. This is an early release candidate/beta, use at your own risk!
44

5+
* History
6+
* 0.1.3.0 2020-04-15 : Initial release
7+
* 0.1.3.1 2020-04-16 : BUGFIX : Allow , as decimal separator where Windows regional settings use it.
8+
59
* Arduino information
610
* Tested on Arduino Uno. No other variants of Arduino have been tested.
711
* Currently built for Version V1.6.25 of the Arduino Code (As of 2020-04-15)

0 commit comments

Comments
 (0)