Skip to content

Commit b51ca09

Browse files
1.0.3
1 parent b73af98 commit b51ca09

File tree

11 files changed

+736
-745
lines changed

11 files changed

+736
-745
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
## [1.0.3] - 2025-03-27
9+
10+
### Fixed
11+
12+
- Minor issues in iOS binary
13+
814
## [1.0.2] - 2025-03-25
915

1016
### Fixed

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,7 @@ Important project params for correct header generation:
3737
- `Precompile Bridging Header` - Yes
3838
- `Deployment`
3939
- `Skip Install` - No
40+
41+
### Serialization
42+
43+
We are using serializing to JSON string to make transferring data between Objective-C and C# easy and reliable as we already have JSON string (de)serialization in the SDK API ouf of the box.

HyperTrackSdkMaui.sln

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 17
4-
VisualStudioVersion = 17.0.31903.59
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HyperTrackSdkMaui", "HyperTrackSdkMaui\HyperTrackSdkMaui.csproj", "{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|Any CPU = Debug|Any CPU
11-
Release|Any CPU = Release|Any CPU
12-
EndGlobalSection
13-
GlobalSection(SolutionProperties) = preSolution
14-
HideSolutionNode = FALSE
15-
EndGlobalSection
16-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
17-
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18-
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Debug|Any CPU.Build.0 = Debug|Any CPU
19-
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Release|Any CPU.ActiveCfg = Release|Any CPU
20-
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Release|Any CPU.Build.0 = Release|Any CPU
21-
EndGlobalSection
22-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HyperTrackSdkMaui", "HyperTrackSdkMaui\HyperTrackSdkMaui.csproj", "{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(SolutionProperties) = preSolution
14+
HideSolutionNode = FALSE
15+
EndGlobalSection
16+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
17+
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{B63A9CF8-DC2B-4659-9DFE-FADA0067CE31}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
EndGlobal

HyperTrackSdkMaui/Common/GeotagData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ public class GeotagData(
1616
public HyperTrack.OrderStatus? OrderStatus { get; } = orderStatus;
1717
}
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)