Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
b441b4c
Update README.md
tillkruss Apr 20, 2024
b8fd684
Update README.md
tillkruss Apr 20, 2024
f785c0d
add link
tillkruss Apr 20, 2024
b5a5220
add worker link
tillkruss Apr 20, 2024
d7ecfac
Merge remote-tracking branch 'origin/develop'
tillkruss Apr 24, 2024
570898b
Merge remote-tracking branch 'origin/develop'
tillkruss Apr 28, 2024
2184954
Merge remote-tracking branch 'origin/develop'
tillkruss May 3, 2024
01eb1c6
Merge remote-tracking branch 'origin/develop'
tillkruss May 21, 2024
30aa50a
Merge remote-tracking branch 'origin/develop'
tillkruss Sep 16, 2024
971426a
Merge remote-tracking branch 'origin/develop'
tillkruss Oct 3, 2024
846b4aa
Merge remote-tracking branch 'origin/develop'
tillkruss Oct 23, 2024
97520e9
Merge remote-tracking branch 'origin/develop'
tillkruss Nov 4, 2024
394b533
remove debug code
tillkruss Nov 4, 2024
b3eb96f
Merge remote-tracking branch 'origin/develop'
tillkruss Dec 9, 2024
25fe10c
Merge remote-tracking branch 'origin/develop'
tillkruss Feb 28, 2025
7ac7ecb
Merge remote-tracking branch 'origin/develop'
tillkruss Mar 11, 2025
289cfc0
Merge remote-tracking branch 'origin/develop'
tillkruss Mar 17, 2025
294427b
Merge remote-tracking branch 'origin/develop'
tillkruss Apr 9, 2025
234a1ad
Merge remote-tracking branch 'origin/develop'
tillkruss Apr 24, 2025
1855f9b
Merge remote-tracking branch 'origin/develop'
tillkruss Apr 28, 2025
c8f2179
bump whats new version
tillkruss Apr 28, 2025
833e2ae
Merge remote-tracking branch 'origin/develop'
tillkruss Jun 2, 2025
e0ffaf9
Merge remote-tracking branch 'origin/develop'
tillkruss Sep 8, 2025
9a5f1a7
Merge remote-tracking branch 'origin/develop'
tillkruss Oct 5, 2025
33b0abb
Merge remote-tracking branch 'origin/develop'
tillkruss Oct 12, 2025
fe53aa0
Merge remote-tracking branch 'origin/develop'
tillkruss Dec 2, 2025
4e3cc70
Merge remote-tracking branch 'origin/develop'
tillkruss Feb 25, 2026
6071645
Merge remote-tracking branch 'origin/develop'
tillkruss Apr 9, 2026
0b55993
Initial work on implementing Lidarr support
May 9, 2026
442d037
Created remaining views, more work to be done filling them out. Worki…
May 11, 2026
29fe6eb
Further work to integrate Lidarr, need to fix artist monitoring and b…
May 15, 2026
f45efa6
Add missing deeplink for artists
May 15, 2026
6243320
Got the update/push working for artists and finished the artist detai…
May 15, 2026
199a34e
Merge remote-tracking branch 'origin/develop'
tillkruss May 15, 2026
cabafc0
Majority of remaining work on Lidarr integration. Still some testing …
May 17, 2026
ba9ef0a
Merge branch 'main'
May 18, 2026
529c9d0
Added calendar views for albums and release searching for albums + ad…
May 20, 2026
d457100
Add shortcut integration for searching artists
May 20, 2026
ce43492
Clean up TODOs and code
May 21, 2026
d37d56b
Final Lidarr clean up and bug fixes
May 21, 2026
7b4b65b
Final Lidarr clean up and bug fixes
May 21, 2026
9101de9
Cleaned up old settings trial
May 21, 2026
0050993
Notification support for Lidarr
May 21, 2026
6fd69d3
Add workspace settings ignore to .gitignore
May 21, 2026
bbafb1d
Remove invalid property
May 21, 2026
2cf1a5a
Merge branch 'develop' into lidarr
lukasmcd May 21, 2026
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## User settings
xcuserdata/
*.xcworkspace

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
Expand Down
250 changes: 246 additions & 4 deletions Ruddarr.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions Ruddarr/AppShortcuts.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@
}
}
},
"Search for artist in ${applicationName}" : {
"extractionState" : "extracted_with_value",
"localizations" : {
"en" : {
"stringSet" : {
"state" : "new",
"values" : [
"Search for artist in ${applicationName}",
"Add artist to ${applicationName}"
]
}
}
}
},
"Search for movie in ${applicationName}" : {
"extractionState" : "extracted_with_value",
"localizations" : {
Expand Down
867 changes: 553 additions & 314 deletions Ruddarr/Dependencies/API/API+Live.swift

Large diffs are not rendered by default.

Loading