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

Release 5.4.0 #1200

Merged
merged 28 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
646b489
Add asset for dark mode icon
GianniCarlo Sep 27, 2024
d2a23a6
Merge pull request #1188 from TortugaPower/dark-mode-icon
GianniCarlo Sep 28, 2024
c17f8d2
Add swift format rules
GianniCarlo Sep 28, 2024
1c75b17
Merge pull request #1189 from TortugaPower/swift-format
GianniCarlo Sep 28, 2024
cc608aa
Add nested chapter logic to set offset
GianniCarlo Sep 29, 2024
563fca2
Cleanup comment
GianniCarlo Sep 30, 2024
9fd73b3
Merge pull request #1190 from TortugaPower/fix-chapters-volume
GianniCarlo Sep 30, 2024
04768ce
Add FUNDING.yml for Github Sponsors
GianniCarlo Oct 1, 2024
4ea4e06
Merge pull request #1191 from TortugaPower/GianniCarlo-patch-1
GianniCarlo Oct 1, 2024
658f982
Rework last played widget small
GianniCarlo Oct 1, 2024
1fed5e4
Rework recent books widget to use same provider as last played
GianniCarlo Oct 1, 2024
aecf1cf
Update Localizable.strings
wu0lss4j Oct 2, 2024
5b73bcc
Merge pull request #1193 from wu0lss4j/patch-5
GianniCarlo Oct 2, 2024
80dc100
Merge pull request #1192 from TortugaPower/fix-widgets
GianniCarlo Oct 2, 2024
d668cba
Add launch button for control center
GianniCarlo Oct 2, 2024
805ddd9
Update ci.yml
GianniCarlo Oct 2, 2024
8d6af63
Merge pull request #1194 from TortugaPower/controlcenter-widget
GianniCarlo Oct 2, 2024
c6012cc
Rework how core services are created
GianniCarlo Oct 4, 2024
5f015fe
Replace launch widget for last played widget
GianniCarlo Oct 5, 2024
ef8d36d
Update tests
GianniCarlo Oct 5, 2024
73a84f8
Merge pull request #1197 from TortugaPower/rework-launch
GianniCarlo Oct 6, 2024
b1af3b3
Fix remote play command logic
GianniCarlo Oct 6, 2024
fea7739
Merge pull request #1198 from TortugaPower/fix-play-command
GianniCarlo Oct 6, 2024
5f57938
Filter out chapters with 0 duration
GianniCarlo Oct 7, 2024
f9c17d9
Fix navigation for volumes with nested chapters
GianniCarlo Oct 7, 2024
fac3e62
Merge pull request #1199 from TortugaPower/fix-playback
GianniCarlo Oct 7, 2024
2e93aa6
Set app version
GianniCarlo Oct 7, 2024
4e66760
Remove unused class
GianniCarlo Oct 7, 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
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: GianniCarlo
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:
jobs:
build:
# https://github.com/actions/runner-images/tree/main/images/macos
runs-on: macos-14
runs-on: macos-15

steps:
- uses: actions/checkout@v4
# We only use Xcode 15.4
# We only use Xcode 16.0
- name: Remove unused applications
run: |
df -hI /dev/disk3s1s1
Expand All @@ -26,8 +26,8 @@ jobs:
- name: Create Debug.xcconfig
run: cp ./BuildConfiguration/Debug.template.xcconfig ./BuildConfiguration/Debug.xcconfig
- name: Set Xcode version
run: sudo xcode-select -s "/Applications/Xcode_15.4.app/Contents/Developer"
run: sudo xcode-select -s "/Applications/Xcode_16.app/Contents/Developer"
- name: Resolve dependencies
run: xcodebuild -resolvePackageDependencies
- name: Build and Run tests
run: xcodebuild -scheme BookPlayer test -testPlan Unit\ Tests -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5'
run: xcodebuild -scheme BookPlayer test -testPlan Unit\ Tests -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.0'
10 changes: 10 additions & 0 deletions .swift-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"version": 1,
"lineLength": 120,
"indentation": {
"spaces": 2
},
"maximumBlankLines": 1,
"lineBreakBeforeEachArgument": true,
"prioritizeKeepingFunctionOutputTogether": true
}
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ disabled_rules:
- file_length
- orphaned_doc_comment
- large_tuple
- opening_brace
114 changes: 86 additions & 28 deletions BookPlayer.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Loading