[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r22443: {torbrowser} add https everywhere, update README/changelog in preparation (in torbrowser/trunk: . build-scripts)
Author: erinn
Date: 2010-05-31 07:02:24 +0000 (Mon, 31 May 2010)
New Revision: 22443
Modified:
torbrowser/trunk/README.Linux
torbrowser/trunk/build-scripts/Makefile.linux
Log:
add https everywhere, update README/changelog in preparation for release
Modified: torbrowser/trunk/README.Linux
===================================================================
--- torbrowser/trunk/README.Linux 2010-05-30 11:50:04 UTC (rev 22442)
+++ torbrowser/trunk/README.Linux 2010-05-31 07:02:24 UTC (rev 22443)
@@ -11,6 +11,7 @@
\_ Torbutton 1.2.5
|_ NoScript 1.9.9.80
|_ BetterPrivacy 1.4.7
+ |_ HTTPS Everywhere 0.0.2
Usage
-----
@@ -29,6 +30,14 @@
Changelog
---------
+1.0.6: Released 2010-05-31
+ Add arch to tarball name so there's no collision
+ Add libpng for Arch Linux
+ Add HTTPS Everywhere extension
+ Update Qt to 4.6.2
+ Update Vidalia to 0.2.9
+ Update NoScript to 1.9.9.80
+
1.0.5: Released 2010-05-15
Fix missing OpenSSL shared library bug
(thanks to bee at http://honeybeenet.altervista.org/homepage/)
Modified: torbrowser/trunk/build-scripts/Makefile.linux
===================================================================
--- torbrowser/trunk/build-scripts/Makefile.linux 2010-05-30 11:50:04 UTC (rev 22442)
+++ torbrowser/trunk/build-scripts/Makefile.linux 2010-05-31 07:02:24 UTC (rev 22443)
@@ -41,6 +41,7 @@
TBB_FINAL=$(BUILT_DIR)/TBBL
## Versions for our source packages
+HTTPSEVERY_VER=0.0.2
FIREFOX_VER=3.5.8
LIBEVENT_VER=1.4.13-stable
LIBPNG_VER=1.4.2
@@ -228,12 +229,13 @@
endif
## Extensions to install by default
-DEFAULT_EXTENSIONS=torbutton.xpi noscript.xpi betterprivacy.xpi
+DEFAULT_EXTENSIONS=torbutton.xpi noscript.xpi betterprivacy.xpi httpseverywhere.xpi
## Where to download Torbutton from
TORBUTTON=https://www.torproject.org/torbutton/releases/torbutton-$(TORBUTTON_VER).xpi
NOSCRIPT=https://secure.informaction.com/download/releases/noscript-$(NOSCRIPT_VER).xpi
BETTERPRIVACY=https://addons.mozilla.org/en-US/firefox/downloads/latest/6623/addon-6623-latest.xpi
+HTTPSEVERYWHERE=https://eff.org/files/https-everywhere-$(HTTPSEVERY_VER).xpi
## Where to download Mozilla language packs
MOZILLA_LANGUAGE=http://releases.mozilla.org/pub/mozilla.org/firefox/releases/$(FIREFOX_VER)/linux-i686/xpi
@@ -425,6 +427,10 @@
betterprivacy.xpi:
$(WGET) -O $@ $(BETTERPRIVACY)
+## HTTPS Everywhere
+httpseverywhere.xpi:
+ $(WGET) -O $@ --no-check-certificate $(HTTPSEVERYWHERE)
+
## Generic language pack rule
langpack_%.xpi:
$(WGET) -O $@ $(MOZILLA_LANGUAGE)/$*.xpi