diff --git a/debian/changelog b/debian/changelog index 01e389f..a7461ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +ice (6.0.8) bionic; urgency=low + + * Updated search.json.mozlz4 for Firefox 71. + + -- Mark Greaves (PCNetSpec) 10 Dec 2019 13:23:00 +0000 + +ice (6.0.7) bionic; urgency=low + + * Fixed transparent nav-bar covering top of window. + + -- Mark Greaves (PCNetSpec) 22 Nov 2019 16:52:00 +0000 + ice (6.0.6) bionic; urgency=low * Fixed address/tab bar reappearance in @@ -7,7 +19,7 @@ ice (6.0.6) bionic; urgency=low ice (6.0.5) bionic; urgency=low - * Add check for zero lentgh SSB name, and + * Add check for zero length SSB name, and * EmptyNameError to warn/prevent the user * from creating an SSB with a blank name. * Updated translations with EmptyNameError diff --git a/debian/files b/debian/files deleted file mode 100644 index c9b6241..0000000 --- a/debian/files +++ /dev/null @@ -1 +0,0 @@ -ice_6.0.6_source.buildinfo net optional diff --git a/usr/bin/ice b/usr/bin/ice index f332dcd..81ed86f 100755 --- a/usr/bin/ice +++ b/usr/bin/ice @@ -317,7 +317,7 @@ def init_firefox_profile(path): os.system('cp -n /usr/lib/peppermint/ice/places.sqlite ' + path + '/places.sqlite') os.system("touch {0}".format(cssfile)) with open(cssfile, 'w') as cfile: - cfile.write("#nav-bar { max-height: 0 !important; margin-bottom: -20px !important; opacity: 0; } #identity-box, #navigator-toolbox::after, #tabbrowser-tabs { --tab-min-height: 0px !important; margin-left: 0px !important; height: 0px !important; }") + cfile.write("#nav-bar, #identity-box, #tabbrowser-tabs, #TabsToolbar { visibility: collapse !important; }") os.system("touch {0}".format(settingsfile)) with open(settingsfile, 'w') as sfile: diff --git a/usr/bin/ice-firefox b/usr/bin/ice-firefox index 7f5e0c0..eb5e578 100755 --- a/usr/bin/ice-firefox +++ b/usr/bin/ice-firefox @@ -15,7 +15,7 @@ path = os.path.dirname(chromepath) execute = 'firefox -profile ' + path + ' -no-remote -new-instance' + ' ' + sys.argv[1] os.system('mkdir -p ' + chromepath) -os.system('echo "#nav-bar { max-height: 0 !important; margin-bottom: -20px !important; opacity: 0; } #identity-box, #navigator-toolbox::after, #tabbrowser-tabs { --tab-min-height: 0px !important; margin-left: 0px !important; height: 0px !important; }" > ' + chromepath + '/userChrome.css') +os.system('echo "#nav-bar, #identity-box, #tabbrowser-tabs, #TabsToolbar { visibility: collapse !important; }" > ' + chromepath + '/userChrome.css') os.system('echo "user_pref(\\"browser.cache.disk.enable\\", false);" > ' + profilepath + '/user.js') os.system('echo "user_pref(\\"browser.cache.disk.capacity\\", 0);" >> ' + profilepath + '/user.js') os.system('echo "user_pref(\\"browser.cache.disk.filesystem_reported\\", 1);" >> ' + profilepath + '/user.js') diff --git a/usr/lib/peppermint/ice/search.json.mozlz4 b/usr/lib/peppermint/ice/search.json.mozlz4 index 6a4e7a0..0b6f066 100644 Binary files a/usr/lib/peppermint/ice/search.json.mozlz4 and b/usr/lib/peppermint/ice/search.json.mozlz4 differ