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

[feat] Login with Quick Connect #76

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
91b928a
feat: Add support for quick connect feature flag
TechGeekGamer Sep 28, 2024
440da6e
feat: Add Quick Connect login support
TechGeekGamer Sep 28, 2024
adb66a3
fix compatility with versions between 10.7.x and 10.9
TechGeekGamer Sep 28, 2024
17b665c
Refactor JellyfinClient+FeatureFlags.swift for improved compatibility
TechGeekGamer Sep 29, 2024
01d1f33
Refactor JellyfinClient+User.swift to handle compatibility with diffe…
TechGeekGamer Sep 29, 2024
5de083d
Refactor JellyfinUtility.swift for improved compatibility
TechGeekGamer Sep 29, 2024
af140f9
Refactor JellyfinClient+QuickConnect.swift for improved compatibility…
TechGeekGamer Sep 29, 2024
c4f3be6
Refactor LoginQuickConnectView.swift
TechGeekGamer Sep 29, 2024
ff201ad
Refactor LoginView.swift to update server version and check for Quick…
TechGeekGamer Sep 29, 2024
71b02aa
Remove Quick Connect compatility for 10.7 and 10.8
TechGeekGamer Sep 29, 2024
4e6b0ce
remove unused language strings
TechGeekGamer Sep 29, 2024
c29ac24
Redo layout based on dev feedback
TechGeekGamer Sep 29, 2024
97739d2
Refactor LoginQuickConnectView.swift to use private access modifiers …
TechGeekGamer Oct 1, 2024
9d1a358
Update Quick Connect description
TechGeekGamer Oct 2, 2024
c754692
Update LoginQuickConnectView to use new description
TechGeekGamer Oct 2, 2024
09d0ef6
Refactor LoginQuickConnectView.swift
TechGeekGamer Oct 4, 2024
b8be7e2
remove 'login.quickconnect.copy'
TechGeekGamer Oct 4, 2024
41933f4
Merge branch 'rasmuslos:main' into support-Quick-Connect
TechGeekGamer Oct 4, 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
Prev Previous commit
Next Next commit
Refactor LoginQuickConnectView.swift to use private access modifiers …
…for state properties
  • Loading branch information
TechGeekGamer committed Oct 1, 2024
commit 97739d2d51247b2a6c8f3656f881796c3a829d8c
9 changes: 5 additions & 4 deletions Multiplatform/Account/LoginQuickConnectView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ import AmpFinKit

internal struct LoginQuickConnectView: View {
let dismiss: (() -> Void)
@State var code: String?
@State var secret: String = ""
@State var success: Bool = false
@State var caughtError: Bool = false
@State private var code: String?
@State private var secret: String = ""
@State private var success: Bool = false
@State private var caughtError: Bool = false
@State private var expired: Bool = false

var body: some View {

Expand Down