summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-04-30 10:33:26 -0400
committerB Stack <bgstack15@gmail.com>2020-04-30 10:33:26 -0400
commit2ef54eab3cf4230ea74be699571800ba1f7a93eb (patch)
tree9767b09bc51a4e831f34ab46284a2216b9f42b0f /palemoon
parentMerge branch 'makemkv-bump' into 'master' (diff)
downloadstackrpms-2ef54eab3cf4230ea74be699571800ba1f7a93eb.tar.gz
stackrpms-2ef54eab3cf4230ea74be699571800ba1f7a93eb.tar.bz2
stackrpms-2ef54eab3cf4230ea74be699571800ba1f7a93eb.zip
pm 28.9.2
Diffstat (limited to 'palemoon')
-rw-r--r--palemoon/debian/changelog11
-rw-r--r--palemoon/debian/palemoon_devuan.dsc2
-rw-r--r--palemoon/palemoon.spec8
3 files changed, 18 insertions, 3 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index 4a161ca..8ebc9c3 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,14 @@
+palemoon (28.9.2-1+devuan) obs; urgency=medium
+
+ * This is a minor update for stability and compatibility.
+ - Re-based the 28.9 version of browsers on a separate development branch that excludes the extensive work being done for Google WebComponents, to avoid potential performance and stability issues caused by as-of-yet incomplete and in-progress code for the new milestone.
+ - Enabled DOM High Resolution timestamps for compatibility with websites that strictly rely on them for operation.
+ - Added a preference to allow copying the unescaped URL from the address bar (especially useful for internationalized domain names and paths).
+ - To enable this, set `browser.urlbar.decodeURLsOnCopy` to true in about:config
+ - Fixed several application crashes (thanks, Fysac!)
+
+ -- Ben Stack <bgstack15@gmail.com> Thu, 30 Apr 2020 10:11:14 -0400
+
palemoon (28.9.1-1+devuan) obs; urgency=medium
* This is a minor security and bugfix release.
diff --git a/palemoon/debian/palemoon_devuan.dsc b/palemoon/debian/palemoon_devuan.dsc
index eca025f..8e5f0d8 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: 28.9.1-1+devuan
+Version: 28.9.2-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 702bb9b..c65a3bc 100644
--- a/palemoon/palemoon.spec
+++ b/palemoon/palemoon.spec
@@ -5,7 +5,7 @@
%global stackrpms_custom 1
# derive from inside the full source tree:
# git submodule | awk -v "name=platform" '$2 == name {gsub("-","",$1); print $1}'
-%global submodule_platform_commit 85a97e9a35a75e58d35f741a62a7f9ff4c1d85e3
+%global submodule_platform_tag RELBASE_20200427
# additional repos to get python27 and devtoolset-7
# for el6 and el7: Software Collection;, for x86_64 only
@@ -50,7 +50,7 @@ Group: Networking/Web
License: MPLv2.0
URL: http://linux.palemoon.org/
Source0: https://github.com/MoonchildProductions/Pale-Moon/archive/%{version}_Release.tar.gz
-Source1: https://github.com/MoonchildProductions/UXP/archive/%{submodule_platform_commit}.tar.gz
+Source1: https://github.com/MoonchildProductions/UXP/archive/%{submodule_platform_tag}.tar.gz
Source2: palemoon-mozconfig
Source3: palemoon.desktop
Source4: palemoon-mimeinfo.xml
@@ -284,11 +284,15 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Thu Apr 30 2020 B Stack <bgstack15@gmail.com> - 28.9.2-1
+- update version
+
* Fri Apr 10 2020 B Stack <bgstack15@gmail.com> - 28.9.1-1
- update version
* Thu Mar 26 2020 B Stack <bgstack15@gmail.com> - 28.9.0.2-1
- update version
+- add git submodule support
* Mon Mar 02 2020 B Stack <bgstack15@gmail.com> - 28.8.4-1
- update version
bgstack15