0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-21 21:23:08 -05:00

bump to version 115.0-1

This commit is contained in:
Bert van der Weerd 2023-07-05 16:24:28 +02:00
parent d4096f6bb3
commit e8ae3cc018
No known key found for this signature in database
GPG key ID: 73370A0B9E5516B0
6 changed files with 22 additions and 33 deletions

View file

@ -1,7 +1,7 @@
diff --git a/toolkit/components/extensions/Extension.jsm b/toolkit/components/extensions/Extension.jsm
index 7281518..322dc09 100644
--- a/toolkit/components/extensions/Extension.jsm
+++ b/toolkit/components/extensions/Extension.jsm
--- a/toolkit/components/extensions/Extension.sys.mjs
+++ b/toolkit/components/extensions/Extension.sys.mjs
@@ -3286,6 +3286,16 @@ class Extension extends ExtensionData {
this.permissions.add(PRIVATE_ALLOWED_PERMISSION);
}

View file

@ -26,7 +26,7 @@
def update_git_tools(git: Optional[Path], root_state_dir: Path):
--- a/python/mozversioncontrol/mozversioncontrol/__init__.py
+++ b/python/mozversioncontrol/mozversioncontrol/__init__.py
@@ -744,6 +744,29 @@ class GitRepository(Repository):
@@ -744,7 +744,30 @@ class GitRepository(Repository):
self._run("config", name, value)
@ -53,9 +53,10 @@
+
+
+
def get_repository_object(path: Optional[Union[str, Path]], hg="hg", git="git"):
def get_repository_object(
path: Optional[Union[str, Path]], hg="hg", git="git", src="src"
):
"""Get a repository object for the repository at `path`.
If `path` is not a known VCS repository, raise an exception.
@@ -757,7 +780,7 @@ def get_repository_object(path: Optional[Union[str, Path]], hg="hg", git="git"):
elif (path / ".git").exists():
return GitRepository(path, git=git)
@ -71,9 +72,9 @@
return GitRepository(Path(config.topsrcdir), git=config.substs["GIT"])
+ elif flavor == "local":
+ return LocalRepository(config.topsrcdir)
elif flavor == "src":
return SrcRepository(Path(config.topsrcdir), src=config.substs["SRC"])
else:
raise MissingVCSInfo("unknown VCS_CHECKOUT_TYPE value: %s" % flavor)
--- a/third_party/python/mozilla_repo_urls/mozilla_repo_urls/parser.py
+++ b/third_party/python/mozilla_repo_urls/mozilla_repo_urls/parser.py
@@ -9,22 +9,7 @@ for i, platform in enumerate(ADDITIONAL_PLATFORMS):

View file

@ -22,7 +22,7 @@
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo"/>
@@ -108,31 +109,4 @@
@@ -108,20 +108,4 @@
</Extensions>
</Application>
</Applications>
@ -30,20 +30,9 @@
- <!-- These COM registrations allow Windows/MSAA to access Firefox accessibility features. -->
- <com:Extension Category="windows.comInterface">
- <com:ComInterface>
- <com:ProxyStub DisplayName="AccessibleHandler"
- Id="@MOZ_IGECKOBACKCHANNEL_IID@"
- Path="VFS\ProgramFiles\@APPX_INSTDIR@\AccessibleHandler.dll" />
- <com:ProxyStub DisplayName="AccessibleMarshal"
- Id="1814ceeb-49e2-407f-af99-fa755a7d2607"
- Path="VFS\ProgramFiles\@APPX_INSTDIR@\AccessibleMarshal.dll" />
- <com:Interface Id="@MOZ_IGECKOBACKCHANNEL_IID@"
- ProxyStubClsid="@MOZ_IGECKOBACKCHANNEL_IID@" />
- <com:Interface Id="@MOZ_IHANDLERCONTROL_IID@"
- ProxyStubClsid="@MOZ_IGECKOBACKCHANNEL_IID@"
- AsynchronousInterface="@MOZ_ASYNCIHANDLERCONTROL_IID@" />
- <com:Interface Id="@MOZ_ASYNCIHANDLERCONTROL_IID@"
- ProxyStubClsid="@MOZ_IGECKOBACKCHANNEL_IID@"
- SynchronousInterface="@MOZ_IHANDLERCONTROL_IID@" />
- <com:Interface Id="4e747be5-2052-4265-8af0-8ecad7aad1c0"
- ProxyStubClsid="1814ceeb-49e2-407f-af99-fa755a7d2607" />
- <com:Interface Id="1814ceeb-49e2-407f-af99-fa755a7d2607"

View file

@ -66,9 +66,9 @@ index e9d50107cb10..914a2f1a6310 100644
- reference = "browser/extensions/report-site-issue/locales/en-US/**"
- l10n = "{l}browser/extensions/report-site-issue/**"
-
[[paths]]
reference = "services/sync/locales/en-US/**"
l10n = "{l}services/sync/**"
[[includes]]
path = "toolkit/locales/l10n.toml"
--
2.37.3

View file

@ -51,8 +51,8 @@
</html:template>
</toolbox>
</box>
--- a/browser/components/customizableui/CustomizableUI.jsm
+++ b/browser/components/customizableui/CustomizableUI.jsm
--- a/browser/components/customizableui/CustomizableUI.sys.mjs
+++ b/browser/components/customizableui/CustomizableUI.sys.mjs
@@ -289,7 +289,6 @@ var CustomizableUIInternal = {
{
type: CustomizableUI.TYPE_TOOLBAR,
@ -82,15 +82,14 @@
if (currentVersion < 19) {
--- a/browser/components/firefoxview/firefoxview.html
+++ b/browser/components/firefoxview/firefoxview.html
@@ -34,7 +34,7 @@
</div>
</div>
<main>
- <details class="content-container" is="tab-pickup-container" id="tab-pickup-container" open>
+ <details class="content-container" is="tab-pickup-container" id="tab-pickup-container" open hidden>
@@ -62,6 +62,7 @@
is="tab-pickup-container"
id="tab-pickup-container"
open
+ hidden
>
<summary class="page-section-header">
<span class="twisty icon" data-l10n-id="firefoxview-collapse-button-hide" aria-role="presentation"></span>
<h1 id="collapsible-synced-tabs-header" data-l10n-id="firefoxview-tabpickup-header"></h1>
<span
--- a/browser/components/firefoxview/firefoxview.mjs
+++ b/browser/components/firefoxview/firefoxview.mjs
@@ -41,7 +41,26 @@ const launchFeatureTour = () => {

View file

@ -1 +1 @@
114.0.2
115.0