diff -Nru ice-6.0.5/debian/changelog ice-6.0.6/debian/changelog --- ice-6.0.5/debian/changelog 2019-06-16 21:07:58.000000000 +0000 +++ ice-6.0.6/debian/changelog 2019-09-06 15:51:47.000000000 +0000 @@ -1,3 +1,10 @@ +ice (6.0.6) bionic; urgency=low + + * Fixed address/tab bar reappearance in + * SSB's using Firefox 69. + + -- Mark Greaves (PCNetSpec) 06 Sep 2019 16:52:00 +0000 + ice (6.0.5) bionic; urgency=low * Add check for zero lentgh SSB name, and diff -Nru ice-6.0.5/usr/bin/ice ice-6.0.6/usr/bin/ice --- ice-6.0.5/usr/bin/ice 2019-06-16 21:02:22.000000000 +0000 +++ ice-6.0.6/usr/bin/ice 2019-09-06 14:22:28.000000000 +0000 @@ -330,6 +330,7 @@ sfile.write('user_pref("browser.ctrlTab.previews", true);') sfile.write('user_pref("browser.tabs.warnOnClose", false);') sfile.write('user_pref("plugin.state.flash", 2);') + sfile.write('user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);') # rhein: do we really need this? #os.system('rm -rf ' + chromepath + '/cache2') diff -Nru ice-6.0.5/usr/bin/ice-firefox ice-6.0.6/usr/bin/ice-firefox --- ice-6.0.5/usr/bin/ice-firefox 2019-06-01 23:06:58.000000000 +0000 +++ ice-6.0.6/usr/bin/ice-firefox 2019-09-06 14:23:21.000000000 +0000 @@ -25,6 +25,7 @@ os.system('echo "user_pref(\\"browser.ctrlTab.previews\\", true);" >> ' + profilepath + '/user.js') os.system('echo "user_pref(\\"browser.tabs.warnOnClose\\", false);" >> ' + profilepath + '/user.js') os.system('echo "user_pref(\\"plugin.state.flash\\", 2);" >> ' + profilepath + '/user.js') +os.system('echo "user_pref(\\"toolkit.legacyUserProfileCustomizations.stylesheets\\", true);" >> ' + profilepath + '/user.js') os.system('cp -n /usr/lib/peppermint/ice/search.json.mozlz4 ' + profilepath + '/search.json.mozlz4') os.system('cp -n /usr/lib/peppermint/ice/places.sqlite ' + profilepath + '/places.sqlite') os.system(execute)