mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #120 from omnivore-app/fix/mac-app-google-auth
Google auth fix [Mac App]
This commit is contained in:
commit
811cbaee8e
5 changed files with 8 additions and 6 deletions
|
|
@ -16,6 +16,8 @@
|
|||
<true/>
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
<key>com.apple.security.network.server</key>
|
||||
<true/>
|
||||
<key>keychain-access-groups</key>
|
||||
<array>
|
||||
<string>$(AppIdentifierPrefix)app.omnivoreapp.shared</string>
|
||||
|
|
|
|||
|
|
@ -11,6 +11,6 @@
|
|||
"extensionAppUnauthorized" = "Please login to Omnivore from the app before saving your first link.";
|
||||
"loginError.invalidCreds" = "The login credentials provided are invalid.";
|
||||
"saveArticleSavingState" = "Saving...";
|
||||
"saveArticleSavedState" = "Link Saved!";
|
||||
"saveArticleProcessingState" = "Link saved!";
|
||||
"saveArticleSavedState" = "Saved to Omnivore";
|
||||
"saveArticleProcessingState" = "Saved to Omnivore";
|
||||
"dismissButton" = "Dismiss";
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ public struct ShareExtensionView: View {
|
|||
savedStateView
|
||||
} else {
|
||||
HStack(spacing: 4) {
|
||||
Text("Link saved and will be available in your inbox shortly.")
|
||||
Text("Saved to Omnivore")
|
||||
.font(.appTitleThree)
|
||||
.foregroundColor(.appGrayText)
|
||||
.padding(.trailing, 16)
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -210,7 +210,7 @@ function saveArticle (tab) {
|
|||
browserApi.tabs.sendMessage(tab.id, {
|
||||
action: ACTIONS.ShowMessage,
|
||||
payload: {
|
||||
text: 'Page saved!',
|
||||
text: 'Saved to Omnivore',
|
||||
link: link,
|
||||
linkText: 'View',
|
||||
type: 'success'
|
||||
|
|
@ -232,7 +232,7 @@ function saveArticle (tab) {
|
|||
browserApi.tabs.sendMessage(tab.id, {
|
||||
action: ACTIONS.ShowMessage,
|
||||
payload: {
|
||||
text: 'Page saved!',
|
||||
text: 'Saved to Omnivore',
|
||||
link: link,
|
||||
linkText: 'View',
|
||||
type: 'success'
|
||||
|
|
|
|||
Loading…
Reference in a new issue