This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
85 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"binaryName": "pulse-browser", | ||
"version": { | ||
"product": "firefox", | ||
"version": "106.0.5" | ||
"version": "107.0" | ||
}, | ||
"buildOptions": { | ||
"generateBranding": true | ||
|
@@ -15,7 +15,7 @@ | |
"platform": "github", | ||
"id": "[email protected]", | ||
"repo": "gorhill/uBlock", | ||
"version": "1.44.4", | ||
"version": "1.45.2", | ||
"fileGlob": "uBlock0_*.firefox(.signed)?.xpi" | ||
}, | ||
"tabliss": { | ||
|
@@ -80,7 +80,7 @@ | |
"brandShortName": "Pulse Browser", | ||
"brandFullName": "Pulse Browser Alpha", | ||
"release": { | ||
"displayVersion": "1.0.0-a.32", | ||
"displayVersion": "1.0.0-a.37", | ||
"github": { | ||
"repo": "pulse-browser/browser" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...owser/themes/BuiltInThemeConfig-jsm.patch → ...r/themes/BuiltInThemeConfig-sys-mjs.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/browser/themes/ThemeVariableMap.sys.mjs b/browser/themes/ThemeVariableMap.sys.mjs | ||
index f2fd99193ddd0c24b7ad3ec953216973b162aaed..2d07c599152d8b0329f84a6cb626a1a40fdd241d 100644 | ||
--- a/browser/themes/ThemeVariableMap.sys.mjs | ||
+++ b/browser/themes/ThemeVariableMap.sys.mjs | ||
@@ -126,7 +126,9 @@ export const ThemeVariableMap = [ | ||
"--sidebar-background-color", | ||
{ | ||
lwtProperty: "sidebar", | ||
- optionalElementID: "sidebar-box", | ||
+ // Pulse: we want to use the sidebar color in the sidebar tabs, which are | ||
+ // under the `browser` parent rather than the `sidebar-box` parent | ||
+ optionalElementID: "browser", | ||
processColor(rgbaChannels, element) { | ||
if (!rgbaChannels) { | ||
element.removeAttribute("lwt-sidebar"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
src/toolkit/modules/LightweightThemeConsumer-sys-mjs.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
diff --git a/toolkit/modules/LightweightThemeConsumer.sys.mjs b/toolkit/modules/LightweightThemeConsumer.sys.mjs | ||
index 3a3ac065afb636d6ceb1ca568c3eabd10a7127f6..db44fb7b9bc4c0f5b714154be0cc00d91e3ef44b 100644 | ||
--- a/toolkit/modules/LightweightThemeConsumer.sys.mjs | ||
+++ b/toolkit/modules/LightweightThemeConsumer.sys.mjs | ||
@@ -183,6 +183,14 @@ const toolkitVariableMap = [ | ||
lwtProperty: "toolbar_field_highlight_text", | ||
}, | ||
], | ||
+ // Pulse browser: Sidebar colors | ||
+ // Expose some light weight theme variables to be available for use within css | ||
+ [ | ||
+ '--lwt-sidebar-background-color', | ||
+ { | ||
+ lwtProperty: "sidebar", | ||
+ } | ||
+ ] | ||
]; | ||
|
||
export function LightweightThemeConsumer(aDocument) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build | ||
index 26acb92b37b7c0989a117a082de1861710ca65d7..ff7101147f0e14ec32ec2bd0d4afff535cd14a9a 100644 | ||
index c0c6e76515978b05ae9ed0281f0106469df2b573..12f3a1820f79430f5baeaf7ad51dcf61c1bb0c29 100644 | ||
--- a/toolkit/modules/moz.build | ||
+++ b/toolkit/modules/moz.build | ||
@@ -163,6 +163,7 @@ EXTRA_JS_MODULES += [ | ||
"Color.jsm", | ||
@@ -160,6 +160,7 @@ EXTRA_JS_MODULES += [ | ||
"Color.sys.mjs", | ||
"Console.jsm", | ||
"ContentDOMReference.jsm", | ||
+ "ContextMenu.jsm", | ||
"CreditCard.jsm", | ||
"DateTimePickerPanel.jsm", | ||
"CreditCard.sys.mjs", | ||
"DateTimePickerPanel.sys.mjs", | ||
"DeferredTask.jsm", |