summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-04-27 15:03:29 -0400
committerB. Stack <bgstack15@gmail.com>2021-04-27 15:03:29 -0400
commit8a630eab4edd9584490ccf17ce5d3038d23b39ec (patch)
tree364ddf2b091d02bab6c1a38c04167dba147d7a39 /palemoon
parentMerge branch 'scite-bump' into 'master' (diff)
downloadstackrpms-8a630eab4edd9584490ccf17ce5d3038d23b39ec.tar.gz
stackrpms-8a630eab4edd9584490ccf17ce5d3038d23b39ec.tar.bz2
stackrpms-8a630eab4edd9584490ccf17ce5d3038d23b39ec.zip
nm 29.2.0
Upstream palemoon has dropped support for old-style extensions, but I am leaving the ac_add_option in the mozconfigs. This will be the first thing to check if the builds fail.
Diffstat (limited to 'palemoon')
-rw-r--r--palemoon/debian/changelog60
-rw-r--r--palemoon/debian/palemoon+devuan.dsc2
-rw-r--r--palemoon/palemoon.spec7
3 files changed, 66 insertions, 3 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index 297fce8..f02e01f 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,63 @@
+newmoon (29.2.0-1+devuan) obs; urgency=medium
+
+ * This is a development and bugfix release.
+ - Starting with this version, we will no longer be supporting
+ unmaintained legacy Firefox extensions that are not updated
+ for/targeting Pale Moon directly.
+ - Please see https://forum.palemoon.org/viewtopic.php?f=1&t=26657
+ for details.
+ * Changes/fixes:
+ - When opening tabs from the History side bar, Pale Moon will now
+ warn you about the action if it would result in opening many tabs at
+ once.
+ - Pale Moon now offers “Open All in Tabs” on bookmark folders
+ even if there is only one sub-item in it, for UI consistency.
+ - Added media format controls in the Content category of
+ Preferences.
+ - Added controls for preferred color scheme. See implementation
+ notes.
+ - Updated several site-specific user-agent overrides for web
+ compatibility.
+ - Removed the ability to accept Firefox IDs for extension
+ installation.
+ - Removed conditional Macintosh code from the application front-end.
+ - Updated the AV1 reference library to 2.0.
+ - Cleaned up more Android code from the platform.
+ - Updated the embedded emoji font to cater to even more
+ race-dependent profession emoji.
+ - Fixed an overflow in clip paths, potentially causing them to be
+ rendered incorrectly.
+ - Added CSS values smooth, high-quality and pixelated to the
+ image-rendering keyword.
+ - Implemented Intl.NumberFormat.formatToParts() to allow
+ deconstruction of localized number formats by scripts.
+ - Reinstated the dom.details_element.enabled preference and fixed a
+ rendering issue with summary/details html elements.
+ - Fixed an issue with CSP .nonce attributes on elements.
+ - Security issues addressed: CVE-2021-29946 DiD and CVE-2021-23994
+ DiD.
+ - Unified XUL Platform Mozilla Security Patch Summary: 2 DiD, 14
+ not applicable.
+ * Implementation notes:
+ - This version adds support for the prefers-color-scheme CSS
+ keyword. This keyword is a media query keyword that indicates to
+ websites whether your content styling preference is "light" or "dark".
+ Unlike other browsers where this will be tied to your system color
+ scheme and determined automatically (which might be a point on which
+ you can be fingerprinted, so this would be a privacy concern), we've
+ decided to give the user control through Preferences -> Content ->
+ Colors where you will find a new control to indicate your user
+ preference (it defaults to "light" for everyone). While this control
+ also gives you the option to disable this feature and effectively not
+ support the keyword, be aware that this might cause issues on some
+ websites that do not provide styling for "unspecified" color scheme
+ preferences.
+ - In the future we may add an "automatic" option similar to other
+ browsers in case you regularly switch your system application style
+ from light to dark and v.v.
+
+ -- B. Stack <bgstack15@gmail.com> Tue, 27 Apr 2021 14:56:07 -0400
+
palemoon (29.1.1-1+devuan) obs; urgency=medium
* Changes/fixes:
diff --git a/palemoon/debian/palemoon+devuan.dsc b/palemoon/debian/palemoon+devuan.dsc
index 7dd9f19..51a8953 100644
--- a/palemoon/debian/palemoon+devuan.dsc
+++ b/palemoon/debian/palemoon+devuan.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: palemoon
Binary: palemoon
Architecture: any
-Version: 29.1.1-1+devuan
+Version: 29.2.0-1+devuan
Maintainer: B Stack <bgstack15@gmail.com>
Homepage: http://www.palemoon.org/
Standards-Version: 4.1.4
diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec
index ea3b384..ca6d0bc 100644
--- a/palemoon/palemoon.spec
+++ b/palemoon/palemoon.spec
@@ -5,7 +5,7 @@
%global stackrpms_custom 1
# derive from inside the source tree or from https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases
# git submodule | awk -v "name=platform" '$2 == name {gsub("-","",$1); print $1}'
-%global submodule_platform_tag RELBASE_20210330
+%global submodule_platform_tag RELBASE_20210427
%global badname palemoon
# additional repos to get python27 and devtoolset-7
@@ -43,7 +43,7 @@ Name: palemoon-stackrpms
Name: palemoon
%endif
Summary: Pale Moon web browser
-Version: 29.1.1
+Version: 29.2.0
Release: 1
Group: Networking/Web
@@ -286,6 +286,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Tue Apr 27 2021 B. Stack <bgstack15@gmail.com> - 29.2.0-1
+- update version
+
* Thu Apr 01 2021 B. Stack <bgstack15@gmail.com> - 29.1.1-1
- update version
bgstack15