Skip to content

Commit

Permalink
Add GitHub and support link
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuslos committed Feb 24, 2024
1 parent b270920 commit 635b37e
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Available on the App Store soon™️
- Siri integration
- Custom playback speed
- Automatic downloads & notifications
- CarPlay integration (only downloads for now)

## Roadmap

Expand All @@ -38,11 +39,11 @@ Available on the App Store soon™️

**Pre built binaries**

Grab the [latest Release](https://github.com/rasmuslos/ShelfPlayer/releases/tag/v2.1.4) and install it using your favorite tool like SideStore.
Grab the [latest Release](https://github.com/rasmuslos/ShelfPlayer/releases/latest) and install it using your favorite tool like SideStore.

Please not that the pre build binaries lack Siri and Widget support because these features either require a paid developer account or cannot be reliably implemented in a way that works with tools like SideStore. For further information see https://github.com/rasmuslos/ShelfPlayer/issues/20 & https://github.com/rasmuslos/ShelfPlayer/issues/4

This means that stripping app extensions is highly recommended, as they will not work as intended.
Stripping app extensions is highly recommended, they will not work as intended.

**Build the app yourself**

Expand All @@ -65,4 +66,4 @@ Contributions are welcome, just fork the repository, and open a pull request wit
## Miscellaneous

Please note that collections are not supported right now.
ShelfPlayer is not endorsed nor associated with Audiobookshelf
ShelfPlayer is not endorsed by nor associated with Audiobookshelf
14 changes: 14 additions & 0 deletions iOS/Account/AccountSheet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,20 @@ struct AccountSheet: View {
.font(.caption)
.foregroundStyle(.secondary)

Section {
Button {
UIApplication.shared.open(URL(string: "https://github.com/rasmuslos/AmpFin")!)
} label: {
Text("account.github")
}

Button {
UIApplication.shared.open(URL(string: "https://rfk.io/support.htm")!)
} label: {
Text("account.support")
}
}

#if !ENABLE_ALL_FEATURES
Section {
HStack {
Expand Down
32 changes: 32 additions & 0 deletions iOS/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,22 @@
}
}
},
"account.github" : {
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GitHub"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "GitHub"
}
}
}
},
"account.logout" : {
"localizations" : {
"de" : {
Expand Down Expand Up @@ -361,6 +377,22 @@
}
}
},
"account.support" : {
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Hilfe"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Support"
}
}
}
},
"account.user" : {
"localizations" : {
"de" : {
Expand Down

0 comments on commit 635b37e

Please sign in to comment.