Skip to content

Commit 1fb2ec0

Browse files
committed
pushing v2
1 parent cc7bc66 commit 1fb2ec0

File tree

152 files changed

+4563
-1434
lines changed

Some content is hidden

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

152 files changed

+4563
-1434
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## v0.2 - 2023-01-31
8+
9+
### Added
10+
- Support for compiling on iOS Simulators
11+
- Support for running on M1/M2 Mac's with Designed for iPhone/iPad
12+
- Support for loading local video files
13+
14+
### Fixed
15+
- Unsupported Architecture's bug, where Xcode reports error Could not build Objective-C module QuickPoseCore and Unsupported Swift Architecture.
16+
17+
## v0.1 - 2023-01-18
18+
19+
### Added
20+
- Initial Release
21+

Package.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ let package = Package(
1212
.library(name: "QuickPoseCore", targets: ["QuickPoseCoreTarget"]),
1313
.library(name: "QuickPoseMP", targets: ["QuickPoseMPTarget"]),
1414
.library(name: "QuickPoseSwiftUI", targets: ["QuickPoseSwiftUI"]),
15+
.library(name: "QuickPoseCamera", targets: ["QuickPoseCamera"]),
1516
],
1617
dependencies: [],
1718
targets: [
18-
.target(name: "QuickPoseSwiftUI"),
19+
.target(name: "QuickPoseCamera"),
20+
.target(name: "QuickPoseSwiftUI", dependencies: ["QuickPoseCamera"]),
1921
.target(name: "QuickPoseCoreTarget", dependencies: ["QuickPoseCore"], path: "QuickPoseCoreWrapper"),
2022
.target(name: "QuickPoseMPTarget", dependencies: ["QuickPoseMP",], path: "QuickPoseMPWrapper", linkerSettings: [.linkedLibrary("c++")]),
2123

0 commit comments

Comments
 (0)