Skip to content

Commit c410162

Browse files
Merge pull request #129 from gerwaric/chore/aaplus-v2.63-upgrade
Chore/aaplus v2.63 upgrade
2 parents aa1e6f8 + 45fc3a4 commit c410162

File tree

261 files changed

+4928
-3634
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

261 files changed

+4928
-3634
lines changed

AABridge.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Pod::Spec.new do |s|
1111
s.social_media_url = "https://twitter.com/onekiloparsec"
1212

1313
# When using multiple platforms
14-
s.ios.deployment_target = "12.0"
15-
s.osx.deployment_target = "10.13"
14+
s.ios.deployment_target = "13.0"
15+
s.osx.deployment_target = "10.15"
1616
s.watchos.deployment_target = "7.0"
1717
s.tvos.deployment_target = "12.0"
1818

@@ -22,9 +22,9 @@ Pod::Spec.new do |s|
2222
s.swift_version = "5"
2323

2424
s.name = "AABridge"
25-
s.source_files = "Sources/AABridge", "Sources/AABridge/**/*.{h,cpp}", "Sources/aaplus-v2.50", "Sources/aaplus-v2.50/**/*.{h,cpp}"
25+
s.source_files = "Sources/AABridge", "Sources/AABridge/**/*.{h,cpp}", "Sources/AA+", "Sources/AA+/**/*.{h,cpp}"
2626
s.public_header_files = "Sources/AABridge/include/*.h"
27-
s.exclude_files = "Sources/aaplus-v2.50/AATest.cpp", "Sources/aaplus-v2.50/include/AAVSOP2013.h", "Sources/aaplus-v2.50/AAVSOP2013.cpp"
27+
s.exclude_files = "Sources/AA+/AATest.cpp", "Sources/AA+/include/AAVSOP2013.h", "Sources/AA+/AAVSOP2013.cpp"
2828

2929
s.library = 'c++'
3030
s.xcconfig = {

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55

66
let package = Package(
77
name: "SwiftAA",
8-
platforms: [.macOS(.v10_13), .iOS(.v12)],
8+
platforms: [.macOS(.v10_15), .iOS(.v13)],
99
products: [
1010
// The AAplus product is the C++ project this one wraps.
1111
.library(name: "AAplus", targets: ["AAplus"]),

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The AA+ framework, written in C++ by PJ Naughter (Visual C++ MVP) is certainly t
8888

8989
Pull requests are accepted only about the C(++) and Swift code. The AA+ code changes must be directed (as I will personnaly do if I need to) to the original source (see the [AA+ website](http://www.naughter.com/aa.html)).
9090

91-
Today's version of AA+ used in SwiftAA is 2.50 (released 16 April 2023).
91+
Today's version of AA+ used in SwiftAA is 2.63 (released 16 May 2025).
9292

9393

9494
Caution on Coordinates

Sources/AA+

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aaplus-v2.50
1+
aaplus-v2.63

Sources/AABridge/KPCAAParabolic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ KPCAAParabolicObjectDetails KPCAAParabolic_CalculateDetails(double JD, struct KP
4242
details.TrueGeocentricDeclination = detailsPlus.TrueGeocentricDeclination;
4343
details.TrueGeocentricDistance = detailsPlus.TrueGeocentricDistance;
4444
details.TrueGeocentricLightTime = detailsPlus.TrueGeocentricLightTime;
45-
details.AstrometricGeocentricRA = detailsPlus.AstrometricGeocenticRA;
45+
details.AstrometricGeocentricRA = detailsPlus.AstrometricGeocentricRA;
4646
details.AstrometricGeocentricDeclination = detailsPlus.AstrometricGeocentricDeclination;
4747
details.AstrometricGeocentricDistance = detailsPlus.AstrometricGeocentricDistance;
4848
details.AstrometricGeocentricLightTime = detailsPlus.AstrometricGeocentricLightTime;

Sources/aaplus-v2.50/AARefraction.cpp

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)