-
Notifications
You must be signed in to change notification settings - Fork 119
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
FXVPN-32 add message (and fix bug involving lists and shared strings) #10045
Changes from 3 commits
d685da0
c7e3adb
3bf28f4
22d3fec
3f34248
fb3db79
825f697
24e9643
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
((api) => { | ||
api.urlOpener.openUrlLabel('downloadFirefoxWindows'); | ||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
((api) => { | ||
api.urlOpener.openUrlLabel('downloadExtension'); | ||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"api_version": "0.1", | ||
"id": "message_try_firefox_extension", | ||
"name": "Try the Firefox extension", | ||
"type": "message", | ||
"conditions": { | ||
"min_client_version": "2.25.1", | ||
"enabled_features": ["webExtension"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ++ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, we just removed the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, maybe that was a mistake and I should put it back as an un-toggle-able feature. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @lesleyjanenorton , were you suggesting adding (I'm looking for the name of a feature that will be the thing we "flip on" to make this go live for users - to be clear this is not a user-toggleable thing.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
@oskirby Does this mean that the proxy will be available by default on Windows in v2.25? If yes, we should put it back behind the 'localProxy' feature flag.
@mcleinman Let's sort this out in the office hours meetings. Previously this was 'localProxy' and 'webExtension'. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To summarize a zoom discussion: I'm not in favor of adding a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated per our meeting |
||
"trigger_time": 1209600, | ||
"platforms": ["windows"] | ||
}, | ||
"message": { | ||
"date": 1733157651, | ||
"usesSharedStrings": true, | ||
"shortVersion": "N/A", | ||
lesleyjanenorton marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"id": "message_try_firefox_extension.24", | ||
"title": "vpn.tryFirefoxExtension.title", | ||
"subtitle": "vpn.tryFirefoxExtension.subtitle", | ||
"badge": "new_update", | ||
"blocks": [ | ||
{ | ||
"id": "c_1", | ||
"type": "ulist", | ||
"content": [ | ||
{ | ||
"id": "l_1", | ||
"content": "vpn.tryFirefoxExtension.bullet1" | ||
}, | ||
{ | ||
"id": "l_2", | ||
"content": "vpn.tryFirefoxExtension.bullet2" | ||
}, | ||
{ | ||
"id": "l_3", | ||
"content": "vpn.tryFirefoxExtension.bullet3" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "c_2", | ||
"type": "text", | ||
"content": "vpn.tryFirefoxExtension.finalLine" | ||
}, | ||
{ | ||
"id": "c_3", | ||
"type": "button", | ||
"style": "primary", | ||
"content": "vpn.tryFirefoxExtension.getExtension", | ||
"javascript": "getExtension.js" | ||
}, | ||
{ | ||
"id": "c_4", | ||
"type": "button", | ||
"style": "link", | ||
"content": "vpn.tryFirefoxExtension.downloadFirefox", | ||
"javascript": "downloadFirefox.js" | ||
} | ||
] | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as for
downloadFirefox.js
this could done directly asapi.urlOpener.openUrl('https://foo.bar/baz/...')