Skip to content
Snippets Groups Projects
Commit dff8f675 authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

Abrowser: fixed automated connection and unbranding

parent 048feb78
No related branches found
No related tags found
No related merge requests found
...@@ -101,6 +101,8 @@ pref("dom.ipc.plugins.flash.subprocess.crashreporter.enabled", false); ...@@ -101,6 +101,8 @@ pref("dom.ipc.plugins.flash.subprocess.crashreporter.enabled", false);
pref("browser.safebrowsing.enabled", false); pref("browser.safebrowsing.enabled", false);
pref("browser.safebrowsing.downloads.remote.enabled", false); pref("browser.safebrowsing.downloads.remote.enabled", false);
pref("browser.safebrowsing.malware.enabled", false); pref("browser.safebrowsing.malware.enabled", false);
pref("browser.safebrowsing.provider.mozilla.gethashURL", "");
pref("browser.safebrowsing.provider.mozilla.updateURL", "");
pref("services.sync.privacyURL", "https://trisquel.info/en/legal"); pref("services.sync.privacyURL", "https://trisquel.info/en/legal");
pref("social.enabled", false); pref("social.enabled", false);
pref("social.remote-install.enabled", false); pref("social.remote-install.enabled", false);
......
#!/bin/bash #!/bin/bash
# #
# Copyright (C) 2008-2018 Ruben Rodriguez <ruben@trisquel.info> # Copyright (C) 2008-2019 Ruben Rodriguez <ruben@trisquel.info>
# Copyright (C) 2015 Santiago Rodriguez <santi@trisquel.info> # Copyright (C) 2015 Santiago Rodriguez <santi@trisquel.info>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
VERSION=60 VERSION=61
. ./config . ./config
...@@ -239,12 +239,12 @@ done ...@@ -239,12 +239,12 @@ done
for STRING in rights-intro-point-2 rights-intro-point-3 rights-intro-point-4 rights-intro-point-5 rights-intro-point-6 rights-webservices rights-safebrowsing for STRING in rights-intro-point-2 rights-intro-point-3 rights-intro-point-4 rights-intro-point-5 rights-intro-point-6 rights-webservices rights-safebrowsing
do do
find -name aboutRights.ftl | xargs sed -i "s/^$STRING.*/$STRING = \"\">/" find -name aboutRights.ftl | xargs sed -i "s/^$STRING.*/$STRING = /"
done done
for STRING in helpus community-2 community-exp for STRING in helpus community-2 community-exp
do do
find -name aboutDialog.ftl | xargs sed -i "s/^$STRING.*/$STRING = \"\">/" find -name aboutDialog.ftl | xargs sed -i "s/^$STRING.*/$STRING = /"
done done
sed -i 's/<a\ href\=\"http\:\/\/www.mozilla.org\/\">Mozilla\ Project<\/a>/<a\ href\=\"http\:\/\/www.trisquel.info\/\"\>Trisquel\ Project<\/a>/g' browser/base/content/overrides/app-license.html sed -i 's/<a\ href\=\"http\:\/\/www.mozilla.org\/\">Mozilla\ Project<\/a>/<a\ href\=\"http\:\/\/www.trisquel.info\/\"\>Trisquel\ Project<\/a>/g' browser/base/content/overrides/app-license.html
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment