summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-07-05 17:30:33 -0400
committerB Stack <bgstack15@gmail.com>2019-07-05 17:30:33 -0400
commited88ab64a9c5a4c9ea6feb706c720bb21a6a35c1 (patch)
tree16b0b9c49f347ab9cf5941b0893b2cb6bf1d30a0 /palemoon
parentWIP: palemoon 28.6.0 rc1 (diff)
downloadstackrpms-ed88ab64a9c5a4c9ea6feb706c720bb21a6a35c1.tar.gz
stackrpms-ed88ab64a9c5a4c9ea6feb706c720bb21a6a35c1.tar.bz2
stackrpms-ed88ab64a9c5a4c9ea6feb706c720bb21a6a35c1.zip
palemoon 28.6.0.1
Diffstat (limited to 'palemoon')
-rw-r--r--palemoon/debian/changelog11
-rw-r--r--palemoon/palemoon-stackrpms.spec9
-rw-r--r--palemoon/palemoon.spec9
3 files changed, 23 insertions, 6 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index abdc6c5..93955bf 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,14 @@
+palemoon (28.6.0.1-1+devuan) manual; urgency=low
+
+ * From releasenotes.shtml: This is an out-of-band update to fix some pressing issues with the latest release.
+ - Updated the application icon to provide better visuals on Windows classic and other grey backgrounds.
+ - Reduced the Master Password hashing rounds to prevent issues with stored password retrieval while still sufficiently strengthening the encryption.
+ - If you have previously re-keyed the database after the update to 28.6.0, you should do so again by going through the change master password process to reduce access times.
+ - Updated the WhatsApp Web site-specific user-agent override to respond to Google refusing access based on the old string.
+ - Updated the branding for the portable launcher.
+
+ -- B Stack <bgstack15@gmail.com> Fri, 5 Jul 2019 16:29:51 -0500
+
palemoon (28.6.0-1+devuan) manual; urgency=low
* From releasenotes.shtml: This is a major development and bugfix update.
diff --git a/palemoon/palemoon-stackrpms.spec b/palemoon/palemoon-stackrpms.spec
index b29f3d0..358b7e6 100644
--- a/palemoon/palemoon-stackrpms.spec
+++ b/palemoon/palemoon-stackrpms.spec
@@ -40,7 +40,7 @@ Summary: Pale Moon web browser with stackrpms prefs
Name: palemoon
Summary: Pale Moon web browser
%endif
-Version: 28.6.0
+Version: 28.6.0.1
Release: 1
Group: Networking/Web
@@ -256,7 +256,7 @@ filelist file.lst %{appname} usr langpack
%{__rm} -rf %{buildroot} || :
%post
-touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+touch --no-create %{_datadir}/icons/hicolor 1>/dev/null 2>&1 || :
%preun
# is it a final removal?
@@ -267,7 +267,7 @@ touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun
if test "$1" = "0" ;
then
- touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ touch --no-create %{_datadir}/icons/hicolor 1>/dev/null 2>&1 || :
fi
%posttrans
@@ -280,6 +280,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Fri Jul 5 2019 B Stack <bgstack15@gmail.com> - 28.6.0.1-1
+- update version
+
* Tue Jul 2 2019 B Stack <bgstack15@gmail.com> - 28.6.0-1
- update version
- improve scriptlets for streamlining
diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec
index e2ea199..53abff1 100644
--- a/palemoon/palemoon.spec
+++ b/palemoon/palemoon.spec
@@ -40,7 +40,7 @@ Summary: Pale Moon web browser with stackrpms prefs
Name: palemoon
Summary: Pale Moon web browser
%endif
-Version: 28.6.0
+Version: 28.6.0.1
Release: 1
Group: Networking/Web
@@ -256,7 +256,7 @@ filelist file.lst %{appname} usr langpack
%{__rm} -rf %{buildroot} || :
%post
-touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+touch --no-create %{_datadir}/icons/hicolor 1>/dev/null 2>&1 || :
%preun
# is it a final removal?
@@ -267,7 +267,7 @@ touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun
if test "$1" = "0" ;
then
- touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ touch --no-create %{_datadir}/icons/hicolor 1>/dev/null 2>&1 || :
fi
%posttrans
@@ -280,6 +280,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Fri Jul 5 2019 B Stack <bgstack15@gmail.com> - 28.6.0.1-1
+- update version
+
* Tue Jul 2 2019 B Stack <bgstack15@gmail.com> - 28.6.0-1
- update version
- improve scriptlets for streamlining
bgstack15