Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .flagged
Empty file.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.0-a.61

### Added

- The user can reposition the sideber (#222)

### Changed

- Updated Firefox to `111.0` (#227)
- Updated uBlock to `1.47.4` (#227)
- Update BetterFox (#227)
- Distroid is now `com.fushra.browser.alpha` (#227)

## 1.0.0-a.60

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions configs/common/mozconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export MOZ_APP_VENDOR="Pulse browser"
export MOZ_APP_BASENAME=PulseBrowser
export MOZ_APP_PROFILE=${binName}
export MOZ_APP_DISPLAYNAME="Pulse browser"
export MOZ_MACBUNDLE_ID=com.fushra.browser.desktop
export MOZ_DISTRIBUTION_ID=com.fushra.browser.desktop
export MOZ_MACBUNDLE_ID=com.fushra.browser.alpha
export MOZ_DISTRIBUTION_ID=com.fushra.browser.alpha
export MOZ_MACBUNDLE_NAME="Pulse browser.app"

# Misc
Expand Down
10 changes: 4 additions & 6 deletions gluon.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"binaryName": "pulse-browser",
"version": {
"product": "firefox",
"version": "110.0.1"
"version": "111.0"
},
"buildOptions": {
"generateBranding": true
Expand All @@ -15,7 +15,7 @@
"platform": "github",
"id": "uBlock0@raymondhill.net",
"repo": "gorhill/uBlock",
"version": "1.47.0",
"version": "1.47.4",
"fileGlob": "uBlock0_*.firefox(.signed)?.xpi"
},
"tabliss": {
Expand Down Expand Up @@ -93,10 +93,8 @@
}
},
"license": {
"ignoredFiles": [
".*\\.json"
],
"ignoredFiles": [".*\\.json"],
"licenseType": "MPL-2.0"
},
"updateHostname": "updates.pulsebrowser.app"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"scripts": {
"build": "gluon build",
"build:ui": "gluon build --ui",
"bs": "yarn build && yarn start",
"bus": "yarn build:ui && yarn start",
"start": "yarn clearStartupCache && gluon run",
"bs": "pnpm build && pnpm start",
"bus": "pnpm build:ui && pnpm start",
"start": "pnpm clearStartupCache && gluon run",
"export": "gluon export-file",
"imp": "gluon import",
"clearProfile": "rm -rf engine/obj-x86_64-pc-linux-gnu/tmp/profile-default",
Expand Down
10 changes: 5 additions & 5 deletions src/browser/app/profile/better-fox.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
/****************************************************************************
* Betterfox *
* "Ad meliora" *
* version: 110 *
* version: 111 *
* url: https://github.com/yokoffing/Betterfox *
****************************************************************************/

Expand Down Expand Up @@ -76,6 +76,8 @@ pref('browser.cache.memory.max_entry_size', 153600);
/** NETWORK ***/
pref('network.buffer.cache.size', 262144);
pref('network.buffer.cache.count', 128);
pref('network.http.max-connections', 1800);
pref('network.http.max-persistent-connections-per-server', 10);
pref('network.ssl_tokens_cache_capacity', 32768);

/****************************************************************************
Expand All @@ -97,6 +99,8 @@ pref(
'__hsfp __hssc __hstc __s _hsenc _openstat dclid fbclid gbraid gclid hsCtaTracking igshid mc_eid ml_subscriber ml_subscriber_hash msclkid oft_c oft_ck oft_d oft_id oft_ids oft_k oft_lk oft_sk oly_anon_id oly_enc_id rb_clickid s_cid twclid vero_conv vero_id wbraid wickedid yclid'
);
pref('browser.uitour.enabled', false);
pref('privacy.globalprivacycontrol.enabled', true);
pref('privacy.globalprivacycontrol.functionality.enabled', true);

/** OCSP & CERTS / HPKP ***/
pref('security.OCSP.enabled', 0);
Expand Down Expand Up @@ -280,10 +284,6 @@ pref('browser.link.open_newwindow.restriction', 0);
pref('dom.disable_window_move_resize', true);
pref('browser.tabs.loadBookmarksInTabs', true);
pref('browser.bookmarks.openInTabClosesMenu', false);
pref(
'dom.popup_allowed_events',
'change click dblclick auxclick mousedown mouseup pointerdown pointerup notificationclick reset submit touchend contextmenu'
); // reset pref; remove in v.111
pref('layout.css.has-selector.enabled', true);

/****************************************************************************
Expand Down
10 changes: 5 additions & 5 deletions src/browser/app/profile/firefox-js.patch
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 9b56ba74cff12f029b6d8910ff487a216a15194f..ec90cd53380cd948d4aaee457c257fdeea7023ea 100644
index 81f4d49068c285049d49db6c8fc5c0fbe042ff6b..39ef13fb66567c31ebf932d7a6f528fa1d635069 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -2781,3 +2781,5 @@ pref("browser.pdfjs.feature-tour", "{\"screen\":\"\",\"complete\":false}");

// Enables the cookie banner desktop UI.
pref("cookiebanners.ui.desktop.enabled", false);
@@ -2804,3 +2804,5 @@ pref("cookiebanners.ui.desktop.cfrVariant", 0);
pref("browser.swipe.navigation-icon-min-radius", 12);
pref("browser.swipe.navigation-icon-max-radius", 20);
#endif
+
+#include pulse-browser.js
Loading