Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #43

Merged
merged 31 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0e2a4ac
Add Platform and minor bug fixes
aromanov91 Sep 26, 2024
94505bc
Up CI devices
aromanov91 Sep 26, 2024
b8cf6bc
Fix platform
aromanov91 Sep 26, 2024
b0aa8aa
Fix ci
aromanov91 Sep 26, 2024
676d05b
Update ci-pull-request.yml
aromanov91 Sep 26, 2024
852d398
Update ci-pull-request.yml
aromanov91 Sep 26, 2024
718b80a
Update ci-pull-request.yml
aromanov91 Sep 26, 2024
fcb58f6
Update CI
aromanov91 Sep 26, 2024
718d93b
Update ci-pull-request.yml
aromanov91 Sep 26, 2024
fb8c56c
Update steps
aromanov91 Sep 26, 2024
51a6825
Update ci.yml
aromanov91 Sep 26, 2024
d0c8354
Revert changes
aromanov91 Sep 26, 2024
65f14ed
Add RoundedRectangleCorner for macOS, update filed position and etc
aromanov91 Oct 6, 2024
13962f0
Add Platform and minor bug fixes
aromanov91 Sep 26, 2024
09bb010
Fix platform
aromanov91 Sep 26, 2024
68cf2b8
Update ci.yml
aromanov91 Sep 26, 2024
bf97a4c
Revert changes
aromanov91 Sep 26, 2024
48fd61f
Add RoundedRectangleCorner for macOS, update filed position and etc
aromanov91 Oct 6, 2024
35fd367
Merge branch 'develop' of https://github.com/oversizedev/OversizeUI i…
aromanov91 Oct 6, 2024
cb90839
Fix watchOS field
aromanov91 Oct 6, 2024
5109927
Fix iOS build
aromanov91 Oct 6, 2024
246ff31
Fix example
aromanov91 Oct 6, 2024
8af2ddb
Adopt Swift 6
aromanov91 Oct 15, 2024
97220d1
Update MacOS styles
aromanov91 Nov 3, 2024
c364a56
Fix tvOS build
aromanov91 Nov 3, 2024
a6028de
Up CI versions
aromanov91 Nov 3, 2024
924c5fb
Fix fontStyle
aromanov91 Nov 3, 2024
4e825fa
Add HUD autoHide and format
aromanov91 Nov 9, 2024
a334c18
Renamed colors
aromanov91 Nov 9, 2024
d14b9e9
Delete deprecated HUD and Row
aromanov91 Nov 9, 2024
703fff7
Fix examples #major
aromanov91 Nov 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
strategy:
matrix:
destination:
- platform=iOS Simulator,name=iPhone 16,OS=18.0
- platform=watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation),OS=11.0
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation) (at 1080p),OS=18.0
- platform=iOS Simulator,name=iPhone 16,OS=18.1
- platform=watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation),OS=11.1
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation) (at 1080p),OS=18.1
- platform=macOS,arch=arm64
with:
package: OversizeUI
Expand All @@ -33,8 +33,8 @@ jobs:
strategy:
matrix:
destination:
- platform=iOS Simulator,name=iPhone 16 Pro,OS=18.0
- platform=iOS Simulator,name=iPad (10th generation),OS=18.0
- platform=iOS Simulator,name=iPhone 16 Pro,OS=18.1
- platform=iOS Simulator,name=iPad (10th generation),OS=18.1
with:
path: Example/Example
scheme: Example (iOS)
Expand All @@ -58,8 +58,8 @@ jobs:
strategy:
matrix:
destination:
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation) (at 1080p),OS=18.0
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation),OS=18.0
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation) (at 1080p),OS=18.1
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation),OS=18.1
with:
path: Example/Example
scheme: Example (tvOS)
Expand All @@ -73,7 +73,7 @@ jobs:
strategy:
matrix:
destination:
- platform=watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation),OS=11.0
- platform=watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation),OS=11.1
with:
path: Example/Example
scheme: Example (watchOS)
Expand Down
6 changes: 5 additions & 1 deletion Example/Example WatchKit App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>CLKComplicationPrincipalClass</key>
<string>$(PRODUCT_MODULE_NAME).ComplicationController</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>WKWatchKitApp</key>
<key>WKApplication</key>
<true/>
<key>WKWatchOnly</key>
<true/>
</dict>
</plist>
Loading