mirror of
https://codeberg.org/librewolf/source.git
synced 2025-04-06 10:21:23 -05:00
use --with-app-basename for clean(ish) profile dir handling; patch UA handling accordingly
This commit is contained in:
parent
0c5f05d58f
commit
b8b66166ac
3 changed files with 36 additions and 0 deletions
|
@ -13,6 +13,7 @@ ac_add_options --enable-release
|
|||
ac_add_options --enable-rust-simd
|
||||
|
||||
ac_add_options --with-app-name=librewolf
|
||||
ac_add_options --with-app-basename=librewolf
|
||||
ac_add_options --with-branding=browser/branding/librewolf
|
||||
|
||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||
|
|
|
@ -28,4 +28,5 @@ patches/ui-patches/remove-cfrprefs.patch
|
|||
patches/ui-patches/remove-organization-policy-banner.patch
|
||||
patches/ui-patches/website-appearance-ui-rfp.patch
|
||||
patches/urlbarprovider-interventions.patch
|
||||
patches/useragent.patch
|
||||
patches/windows-theming-bug.patch
|
||||
|
|
34
patches/useragent.patch
Normal file
34
patches/useragent.patch
Normal file
|
@ -0,0 +1,34 @@
|
|||
diff --git a/netwerk/protocol/http/nsHttpHandler.cpp b/netwerk/protocol/http/nsHttpHandler.cpp
|
||||
index bf1ad95..bd38f28 100644
|
||||
--- a/netwerk/protocol/http/nsHttpHandler.cpp
|
||||
+++ b/netwerk/protocol/http/nsHttpHandler.cpp
|
||||
@@ -427,18 +427,8 @@ nsresult nsHttpHandler::Init() {
|
||||
nsCOMPtr<nsIXULAppInfo> appInfo;
|
||||
appInfo = mozilla::components::XULRuntime::Service();
|
||||
|
||||
- mAppName.AssignLiteral(MOZ_APP_UA_NAME);
|
||||
- if (mAppName.Length() == 0 && appInfo) {
|
||||
- // Try to get the UA name from appInfo, falling back to the name
|
||||
- appInfo->GetUAName(mAppName);
|
||||
- if (mAppName.Length() == 0) {
|
||||
- appInfo->GetName(mAppName);
|
||||
- }
|
||||
- appInfo->GetVersion(mAppVersion);
|
||||
- mAppName.StripChars(R"( ()<>@,;:\"/[]?={})");
|
||||
- } else {
|
||||
- mAppVersion.AssignLiteral(MOZ_APP_UA_VERSION);
|
||||
- }
|
||||
+ mAppName.AssignLiteral("Firefox");
|
||||
+ mAppVersion.AssignLiteral(MOZ_APP_UA_VERSION);
|
||||
|
||||
mMisc.AssignLiteral("rv:" MOZILLA_UAVERSION);
|
||||
|
||||
@@ -2846,7 +2836,7 @@ void nsHttpHandler::SetHttpHandlerInitArgs(const HttpHandlerInitArgs& aArgs) {
|
||||
mMisc = aArgs.mMisc();
|
||||
mProduct = aArgs.mProduct();
|
||||
mProductSub = aArgs.mProductSub();
|
||||
- mAppName = aArgs.mAppName();
|
||||
+ mAppName = "Firefox";
|
||||
mAppVersion = aArgs.mAppVersion();
|
||||
mCompatFirefox = aArgs.mCompatFirefox();
|
||||
mCompatDevice = aArgs.mCompatDevice();
|
Loading…
Add table
Reference in a new issue