[tor-commits] [torbirdy/master] Revert setting no_proxies_on to an empty string

2016-08-02 Thread sukhbir
commit b2f6a45bdfebe71072bd9c791a92383ecc087dc2
Author: Sukhbir Singh 
Date:   Sat Jul 2 13:11:17 2016 -0400

Revert setting no_proxies_on to an empty string

This breaks certain configurations and actually doesn't give us much 
benefit;
reverting to the Firefox/Thunderbird default.
---
 components/torbirdy.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/components/torbirdy.js b/components/torbirdy.js
index d4743e0..11015b9 100644
--- a/components/torbirdy.js
+++ b/components/torbirdy.js
@@ -37,8 +37,6 @@ var TorBirdyPrefs = {
 
   // Use a manual proxy configuration.
   "network.proxy.type": 1,
-  // https://bugs.torproject.org/10419
-  "network.proxy.no_proxies_on": "",
   // Restrict TBB ports.
   "network.security.ports.banned": "9050,9051,9150,9151",
   // Number of seconds to wait before attempting to recontact an unresponsive 
proxy server.



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [torbirdy/master] Do not set the calendar timezone to UTC (it is a local setting)

2016-08-02 Thread sukhbir
commit 3ea8e5d3280515d1ac15f1e7002bce05fff29ba7
Author: Sukhbir Singh 
Date:   Sun Jul 24 22:19:04 2016 -0400

Do not set the calendar timezone to UTC (it is a local setting)

This is a local setting and messes up the calendar configuration so revert
back to using the system default which Thunderbird configures.
---
 components/torbirdy.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/components/torbirdy.js b/components/torbirdy.js
index 11015b9..6d6bd23 100644
--- a/components/torbirdy.js
+++ b/components/torbirdy.js
@@ -310,9 +310,6 @@ var TorBirdyPrefs = {
 
   // Mozilla Lightning.
   "calendar.useragent.extra": "",
-  // We have to set a timezone otherwise the system time is used. "UTC" or
-  // "GMT" is not an option so we set it to Europe/London.
-  "calendar.timezone.local": "Europe/London",
 
   /*
Other Settings

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Bump master version to 0.2.9.1-alpha

2016-08-02 Thread nickm
commit 70fd23f498c43bff8c482b67800e466874b00e9b
Author: Nick Mathewson 
Date:   Tue Aug 2 15:37:35 2016 -0400

Bump master version to 0.2.9.1-alpha
---
 configure.ac| 2 +-
 contrib/win32build/tor-mingw.nsi.in | 2 +-
 src/win32/orconfig.h| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index a3eb8d0..19696e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2015, The Tor Project, Inc.
 dnl See LICENSE for licensing information
 
 AC_PREREQ([2.63])
-AC_INIT([tor],[0.2.9.0-alpha-dev])
+AC_INIT([tor],[0.2.9.1-alpha])
 AC_CONFIG_SRCDIR([src/or/main.c])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/contrib/win32build/tor-mingw.nsi.in 
b/contrib/win32build/tor-mingw.nsi.in
index 47fb7e0..f3a76e0 100644
--- a/contrib/win32build/tor-mingw.nsi.in
+++ b/contrib/win32build/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
 !include "LogicLib.nsh"
 !include "FileFunc.nsh"
 !insertmacro GetParameters
-!define VERSION "0.2.9.0-alpha-dev"
+!define VERSION "0.2.9.1-alpha"
 !define INSTALLER "tor-${VERSION}-win32.exe"
 !define WEBSITE "https://www.torproject.org/;
 !define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index bb07c99..1ef6eb1 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -218,7 +218,7 @@
 #define USING_TWOS_COMPLEMENT
 
 /* Version number of package */
-#define VERSION "0.2.9.0-alpha-dev"
+#define VERSION "0.2.9.1-alpha"
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [metrics-web/master] Make y axis labels even more readable.

2016-08-02 Thread karsten
commit cc795da2d1f901d6fd45b4cb6fc0ec22978d4194
Author: Karsten Loesing 
Date:   Tue Aug 2 21:10:35 2016 +0200

Make y axis labels even more readable.

In 33f8f03 we changed thousands separators in some graphs to the thin
space character U+2006, but that didn't get displayed correctly in all
cases.  Let's just use a regular space.
---
 website/rserve/graphs.R | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/rserve/graphs.R b/website/rserve/graphs.R
index ca25bf7..da80652 100644
--- a/website/rserve/graphs.R
+++ b/website/rserve/graphs.R
@@ -849,7 +849,7 @@ plot_userstats <- function(start, end, node, variable, 
value, events,
  to = as.Date(end, "%Y-%m-%d"), by="1 day"),
  value = ifelse(value == 'all', '', value
   formatter <- function(x, ...) {
-format(x, ..., scientific = FALSE, big.mark = '\u2006') }
+format(x, ..., scientific = FALSE, big.mark = ' ') }
   date_breaks <- date_breaks(
 as.numeric(max(u$date) - min(u$date)))
   max_y <- ifelse(length(na.omit(u$users)) == 0, 0,
@@ -937,7 +937,7 @@ plot_userstats_bridge_combined <- function(start, end, 
country, path) {
 a <- a[order(a$mid, decreasing = TRUE)[1:top], ]
 u <- u[u$transport %in% a$transport, ]
 formatter <- function(x, ...) {
-  format(x, ..., scientific = FALSE, big.mark = '\u2006') }
+  format(x, ..., scientific = FALSE, big.mark = ' ') }
 max_y <- ifelse(length(na.omit(u$high)) == 0, 0,
 max(u$high, na.rm = TRUE))
 title <- paste("Bridge users by transport from ",

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [webwml/master] Attempt to update the stable version to 0.2.8.6.

2016-08-02 Thread nickm
commit 4308a4c49f7e8db92a6ee9685ae069927ade3c61
Author: Nick Mathewson 
Date:   Tue Aug 2 15:01:59 2016 -0400

Attempt to update the stable version to 0.2.8.6.
---
 Makefile | 4 ++--
 include/versions.wmi | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index f266493..4a870ed 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,8 @@
 # branch to your personal webwml repository, open a trac ticket in the
 # website component, and set it to needs_review.
 
-export STABLETAG=tor-0.2.7.6
-export DEVTAG=tor-0.2.8.5-rc
+export STABLETAG=tor-0.2.8.6
+#export DEVTAG=tor-0.2.8.5-rc
 
 
 WMLBASE=.
diff --git a/include/versions.wmi b/include/versions.wmi
index 6e534b5..72a621f 100644
--- a/include/versions.wmi
+++ b/include/versions.wmi
@@ -1,5 +1,5 @@
-0.2.7.6
-0.2.8.5-rc
+0.2.8.6
+
 
 0.2.7.6
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [webwml/master] Update Tor Browser ChangeLog branch

2016-08-02 Thread boklm
commit 738535f7cae0d9a75bc81fb3c4f815bd8aaac0cf
Author: Nicolas Vigier 
Date:   Tue Aug 2 20:32:34 2016 +0200

Update Tor Browser ChangeLog branch
---
 include/versions.wmi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/versions.wmi b/include/versions.wmi
index 6c5b8f8..6e534b5 100644
--- a/include/versions.wmi
+++ b/include/versions.wmi
@@ -3,7 +3,7 @@
 
 0.2.7.6
 
-maint-5.5
+maint-6.0
 6.0.3
 6.5a1
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [webwml/master] Add new Tor Browser version: 6.0.3

2016-08-02 Thread boklm
commit a6e00ae60e1720d43bfadbdd31a77969a2e9a54b
Author: Nicolas Vigier 
Date:   Tue Aug 2 20:27:54 2016 +0200

Add new Tor Browser version: 6.0.3
---
 include/versions.wmi   | 22 +++---
 projects/torbrowser/RecommendedTBBVersions |  4 
 2 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/include/versions.wmi b/include/versions.wmi
index a044ba3..6c5b8f8 100644
--- a/include/versions.wmi
+++ b/include/versions.wmi
@@ -4,27 +4,27 @@
 0.2.7.6
 
 maint-5.5
-6.0.2
+6.0.3
 6.5a1
 
-6.0.2
-2016-06-21
+6.0.3
+2016-08-02
 6.5a1
 2016-06-07
 
-6.0.2
-2016-06-21
-6.0.2
-2016-06-21
+6.0.3
+2016-08-02
+6.0.3
+2016-08-02
 6.5a1
 2016-06-07
 6.5a1
 2016-06-07
 
-6.0.2
-2016-06-21
-6.0.2
-2016-06-21
+6.0.3
+2016-08-02
+6.0.3
+2016-08-02
 6.5a1
 2016-06-07
 
diff --git a/projects/torbrowser/RecommendedTBBVersions 
b/projects/torbrowser/RecommendedTBBVersions
index a45ac89..23381ec 100644
--- a/projects/torbrowser/RecommendedTBBVersions
+++ b/projects/torbrowser/RecommendedTBBVersions
@@ -7,6 +7,10 @@
 "6.0.2-Linux",
 "6.0.2-MacOS",
 "6.0.2-Windows",
+"6.0.3",
+"6.0.3-Linux",
+"6.0.3-MacOS",
+"6.0.3-Windows",
 "6.5a1",
 "6.5a1-Linux",
 "6.5a1-MacOS",

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [onionoo/master] Make checkstyle task fail, when new warnings appear.

2016-08-02 Thread karsten
commit 2b34ca91762818c2003716f284c4b1d53975f658
Author: iwakeh 
Date:   Tue Aug 2 16:55:52 2016 +0200

Make checkstyle task fail, when new warnings appear.
---
 build.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/build.xml b/build.xml
index 7cfd870..d1cc58b 100644
--- a/build.xml
+++ b/build.xml
@@ -184,6 +184,17 @@
   
 
+
+  
+
+
+  
+
+  
+
+  
+
   
 
   https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [metrics-web/master] Make checkstyle fail, when new warnings appear.

2016-08-02 Thread karsten
commit 4f4ba2ea6aca62945179ba92ee8d9ab8a372bbb8
Author: iwakeh 
Date:   Tue Aug 2 16:47:05 2016 +0200

Make checkstyle fail, when new warnings appear.
---
 shared/build.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/shared/build.xml b/shared/build.xml
index ae4d292..13a09f7 100644
--- a/shared/build.xml
+++ b/shared/build.xml
@@ -34,6 +34,17 @@
   
   
 
+
+  
+
+
+  
+
+  
+
+  
+
   
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [metrics-lib/master] Make checkstyle task fail, when new warnings appear.

2016-08-02 Thread karsten
commit 7ee3038e0c681b32f7f377e7ac976cf14c8a197b
Author: iwakeh 
Date:   Tue Aug 2 16:51:02 2016 +0200

Make checkstyle task fail, when new warnings appear.
---
 build.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/build.xml b/build.xml
index 5e08766..e581578 100644
--- a/build.xml
+++ b/build.xml
@@ -170,6 +170,17 @@
   
 
+
+  
+
+
+  
+
+  
+
+  
+
   
 
   

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [collector/master] Make checkstyle task fail, when new warnings appear.

2016-08-02 Thread karsten
commit f2d0cf0b9f2acdb0bd96e39d3f7b55d458eb154a
Author: iwakeh 
Date:   Tue Aug 2 16:58:38 2016 +0200

Make checkstyle task fail, when new warnings appear.
---
 build.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/build.xml b/build.xml
index 643d94c..d21726e 100644
--- a/build.xml
+++ b/build.xml
@@ -196,6 +196,17 @@
   
 
+
+  
+
+
+  
+
+  
+
+  
+
   
   
   

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [exonerator/master] Make checkstyle task fail, when new warnings appear.

2016-08-02 Thread karsten
commit 7c1c6b75240daf5b7c4b64a469c7cda5f6bc3cd4
Author: iwakeh 
Date:   Tue Aug 2 17:09:41 2016 +0200

Make checkstyle task fail, when new warnings appear.
---
 build.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/build.xml b/build.xml
index b8e77c8..dfb7c2e 100644
--- a/build.xml
+++ b/build.xml
@@ -74,6 +74,17 @@
   
 
+
+  
+
+
+  
+
+  
+
+  
+
   
 
   

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/torbutton-aboutdialogdtd_completed] Update translations for torbutton-aboutdialogdtd_completed

2016-08-02 Thread translation
commit b8cadd0f0673ad7c65056002c254d4b783a970d3
Author: Translation commit bot 
Date:   Tue Aug 2 16:17:02 2016 +

Update translations for torbutton-aboutdialogdtd_completed
---
 zh_CN/aboutdialog.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/aboutdialog.dtd b/zh_CN/aboutdialog.dtd
index af6cabb..ae2b90c 100644
--- a/zh_CN/aboutdialog.dtd
+++ b/zh_CN/aboutdialog.dtd
@@ -3,7 +3,7 @@
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/torbutton-aboutdialogdtd] Update translations for torbutton-aboutdialogdtd

2016-08-02 Thread translation
commit 325ff15d0746cacea46d2b9919129b1e2e5bbfab
Author: Translation commit bot 
Date:   Tue Aug 2 16:16:58 2016 +

Update translations for torbutton-aboutdialogdtd
---
 zh_CN/aboutdialog.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zh_CN/aboutdialog.dtd b/zh_CN/aboutdialog.dtd
index af6cabb..ae2b90c 100644
--- a/zh_CN/aboutdialog.dtd
+++ b/zh_CN/aboutdialog.dtd
@@ -3,7 +3,7 @@
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/liveusb-creator_completed] Update translations for liveusb-creator_completed

2016-08-02 Thread translation
commit 3ab4ef15bb4dd90efa47814d307a3b871e235c93
Author: Translation commit bot 
Date:   Tue Aug 2 16:15:32 2016 +

Update translations for liveusb-creator_completed
---
 zh_CN/zh_CN.po | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/zh_CN/zh_CN.po b/zh_CN/zh_CN.po
index 3f9363d..7fe29aa 100644
--- a/zh_CN/zh_CN.po
+++ b/zh_CN/zh_CN.po
@@ -4,6 +4,7 @@
 # 
 # Translators:
 # khi, 2013
+# paperbag, 2016
 # bnw, 2014
 # JasonZ , 2015
 # khi, 2015
@@ -12,15 +13,15 @@
 # xtoaster , 2012
 # Sanya chang <408070...@qq.com>, 2013
 # Windson yang , 2015
-# YF , 2013-2015
+# Y.F Yang , 2013-2015
 # 甘 露 , 2009
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-11-02 21:23+0100\n"
-"PO-Revision-Date: 2016-03-21 16:31+\n"
-"Last-Translator: JasonZ \n"
+"PO-Revision-Date: 2016-08-02 15:51+\n"
+"Last-Translator: paperbag\n"
 "Language-Team: Chinese (China) 
(http://www.transifex.com/otf/torproject/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -105,7 +106,7 @@ msgid ""
 "The encrypted persistent storage of the Tails USB stick that you are 
currently using is not copied.\n"
 "\n"
 ""
-msgstr "\nUpgrade another Tails USB stick to the version of an ISO 
image.更新另一个Tails 
U盘到ISO镜像版本。\n\n所更新的Tails U盘被加
密受到了保护\n\n你正在使用的Tails U盘被加
密未被拷贝\n\n"
+msgstr "\n更新另一个Tails 
U盘到ISO镜像版本。\n\n所更新的Tails U盘被加
密受到了保护\n\n你正在使用的Tails U盘被加
密未被拷贝\n\n"
 
 #: ../liveusb/dialog.py:161
 msgid "Alt+B"
@@ -201,11 +202,11 @@ msgstr "正在格式化 %(device)s 为 FAT32 格式"
 
 #: ../liveusb/creator.py:150
 msgid "ISO MD5 checksum passed"
-msgstr "ISO 映像的 MD5 校验值验证通过"
+msgstr "ISO 映像的 MD5 校验和验证通过"
 
 #: ../liveusb/creator.py:148
 msgid "ISO MD5 checksum verification failed"
-msgstr "ISO 映像的 MD5 校验值验证失败"
+msgstr "ISO 映像的 MD5 校验和验证失败"
 
 #: ../liveusb/dialog.py:163
 msgid ""

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/liveusb-creator] Update translations for liveusb-creator

2016-08-02 Thread translation
commit 5daee33ed25cadb6f017286f4fd0b76f00af13b9
Author: Translation commit bot 
Date:   Tue Aug 2 16:15:28 2016 +

Update translations for liveusb-creator
---
 zh_CN/zh_CN.po | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/zh_CN/zh_CN.po b/zh_CN/zh_CN.po
index 3f9363d..7fe29aa 100644
--- a/zh_CN/zh_CN.po
+++ b/zh_CN/zh_CN.po
@@ -4,6 +4,7 @@
 # 
 # Translators:
 # khi, 2013
+# paperbag, 2016
 # bnw, 2014
 # JasonZ , 2015
 # khi, 2015
@@ -12,15 +13,15 @@
 # xtoaster , 2012
 # Sanya chang <408070...@qq.com>, 2013
 # Windson yang , 2015
-# YF , 2013-2015
+# Y.F Yang , 2013-2015
 # 甘 露 , 2009
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-11-02 21:23+0100\n"
-"PO-Revision-Date: 2016-03-21 16:31+\n"
-"Last-Translator: JasonZ \n"
+"PO-Revision-Date: 2016-08-02 15:51+\n"
+"Last-Translator: paperbag\n"
 "Language-Team: Chinese (China) 
(http://www.transifex.com/otf/torproject/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -105,7 +106,7 @@ msgid ""
 "The encrypted persistent storage of the Tails USB stick that you are 
currently using is not copied.\n"
 "\n"
 ""
-msgstr "\nUpgrade another Tails USB stick to the version of an ISO 
image.更新另一个Tails 
U盘到ISO镜像版本。\n\n所更新的Tails U盘被加
密受到了保护\n\n你正在使用的Tails U盘被加
密未被拷贝\n\n"
+msgstr "\n更新另一个Tails 
U盘到ISO镜像版本。\n\n所更新的Tails U盘被加
密受到了保护\n\n你正在使用的Tails U盘被加
密未被拷贝\n\n"
 
 #: ../liveusb/dialog.py:161
 msgid "Alt+B"
@@ -201,11 +202,11 @@ msgstr "正在格式化 %(device)s 为 FAT32 格式"
 
 #: ../liveusb/creator.py:150
 msgid "ISO MD5 checksum passed"
-msgstr "ISO 映像的 MD5 校验值验证通过"
+msgstr "ISO 映像的 MD5 校验和验证通过"
 
 #: ../liveusb/creator.py:148
 msgid "ISO MD5 checksum verification failed"
-msgstr "ISO 映像的 MD5 校验值验证失败"
+msgstr "ISO 映像的 MD5 校验和验证失败"
 
 #: ../liveusb/dialog.py:163
 msgid ""

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Start work on an 0.2.9.1-alpha changelog

2016-08-02 Thread nickm
commit cbf3699b840e5a6c6f492e6bead9727ddb8bec9d
Author: Nick Mathewson 
Date:   Tue Aug 2 11:46:18 2016 -0400

Start work on an 0.2.9.1-alpha changelog

(sort, fold, and reflow.)
---
 ChangeLog   | 282 +++-
 changes/19044   |   5 -
 changes/assert_nonfatal |   4 -
 changes/bug13239|   4 -
 changes/bug14334|   4 -
 changes/bug15942|   3 -
 changes/bug16943|   8 --
 changes/bug17688|   4 -
 changes/bug17983|  11 --
 changes/bug18240|   5 -
 changes/bug18300|   3 -
 changes/bug18322|   4 -
 changes/bug18456|   6 --
 changes/bug18604|   4 -
 changes/bug18704|   5 -
 changes/bug18815|   3 -
 changes/bug18840|   4 -
 changes/bug18889|   2 -
 changes/bug18895|   6 --
 changes/bug18934|   3 -
 changes/bug18934_2  |   5 -
 changes/bug18956|   5 -
 changes/bug18963|   5 -
 changes/bug19063|   4 -
 changes/bug19066|   5 -
 changes/bug19079|   4 -
 changes/bug19139|   3 -
 changes/bug19153|   3 -
 changes/bug19216|   4 -
 changes/bug19421|   4 -
 changes/bug19428|   5 -
 changes/bug19435|   6 --
 changes/bug19449|   4 -
 changes/bug19483|   3 -
 changes/bug19503|   3 -
 changes/bug19504|   3 -
 changes/bug19505|   5 -
 changes/bug19554|   4 -
 changes/bug19578|   3 -
 changes/bug19639|   3 -
 changes/bug19702|   3 -
 changes/feature15588|   4 -
 changes/feature18624|   7 --
 changes/feature18685|   3 -
 changes/feature18760|   6 --
 changes/feature18998|   5 -
 changes/feature19036|   4 -
 changes/feature19116|   4 -
 changes/lcov_excl   |   7 --
 changes/monotonic   |   6 --
 changes/task19035   |   5 -
 changes/test_zlib_bombs |   3 -
 changes/ticket16698 |   3 -
 changes/ticket18462 |   3 -
 changes/ticket19323 |   3 -
 changes/timeouts|   7 --
 changes/workqueue_tests |   4 -
 changes/zlib_12 |   4 -
 58 files changed, 281 insertions(+), 251 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 592cd47..3160344 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,284 @@
-Changes in version 0.2.9.1-alpha - 2016-??-??
+Changes in version 0.2.9.1-alpha - 2016-08-??
+  Tor 0.2.9.1-alpha is the first alpha release in the 0.2.9
+  development series.
+
+  o New system requirements:
+- Tor requires Libevent version 2.0.10-stable or later now.
+  Implements ticket 19554.
+- We now require zlib version 1.2 or later. (Back when we started,
+  zlib 1.1 and zlib 1.0 were still found in the wild. 1.2 was
+  released in 2003. We recommend the latest version.)
+
+  o Major features (dirauths, security, hidden services):
+- Directory authorities can now perform the shared randomness
+  protocol specified by proposal 250. Using this protocol, directory
+  authorities can generate a global fresh random number every day.
+  In the future, this global randomness will be used by hidden
+  services to select their responsible HSDirs. This release only
+  implements the directory authority feature; the hidden service
+  side will be implemented in the future as part of proposal 224 .
+  Resolves ticket 16943; implements proposal 250.
+
+  o Major features (build, hardening):
+- Tor now builds with -ftrapv by default on compilers that support
+  it. This option detects signed integer overflow, and turns it into
+  a hard-failure. We do not apply this option to code that needs to
+  run in constant time to avoid side-channels; instead, we use
+  -fwrapv. Closes ticket 17983.
+- When --enable-expensive-hardening is selected, stop applying the
+  clang/gcc sanitizers to code that needs to run in constant-time to
+  avoid side channels: although we are aware of no introduced side-
+  channels, we are not able to prove that this is safe. Related to
+  ticket 17983.
+
+  o Major bugfixes (exit policies):
+- Avoid disclosing exit outbound bind addresses, configured port
+  bind addresses, and local interface addresses in relay descriptors
+  by default under ExitPolicyRejectPrivate. Instead, only reject
+  these (otherwise unlisted) addresses if
+  ExitPolicyRejectLocalInterfaces is set. Fixes bug 18456; bugfix on
+  0.2.7.2-alpha. Patch by teor.
+
+  o Major bugfixes (hidden service client):
+- With FetchHidServDescriptors set to 0, there is no descriptor
+  fetch (which is intended) but also no descriptor cache lookup was
+  done making any Tor client not working with this option unset.
+  Fixes bug 18704; bugfix on 0.2.0.20-rc. Patch by "twim".
+
+  o Major bugfixes (user interface):
+- Fix an integer overflow in the rate-limiter that caused displaying

[tor-commits] [translation/https_everywhere_completed] Update translations for https_everywhere_completed

2016-08-02 Thread translation
commit 55951027f6a89429e60e5f67b0fbb5c5dfa7eec6
Author: Translation commit bot 
Date:   Tue Aug 2 15:45:28 2016 +

Update translations for https_everywhere_completed
---
 zh-CN/https-everywhere.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/zh-CN/https-everywhere.dtd b/zh-CN/https-everywhere.dtd
index 9471e44..30e61f0 100644
--- a/zh-CN/https-everywhere.dtd
+++ b/zh-CN/https-everywhere.dtd
@@ -41,12 +41,12 @@
 
 
 
-
+
 
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/https_everywhere] Update translations for https_everywhere

2016-08-02 Thread translation
commit c308852f1c378d8082ac80564a3c41e0fafcb23e
Author: Translation commit bot 
Date:   Tue Aug 2 15:45:21 2016 +

Update translations for https_everywhere
---
 zh-CN/https-everywhere.dtd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/zh-CN/https-everywhere.dtd b/zh-CN/https-everywhere.dtd
index 9471e44..30e61f0 100644
--- a/zh-CN/https-everywhere.dtd
+++ b/zh-CN/https-everywhere.dtd
@@ -41,12 +41,12 @@
 
 
 
-
+
 
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Remaining lintChanges fixes

2016-08-02 Thread nickm
commit 6f1a9e1d9b31619d8e447c38f65a16f92105205d
Author: Nick Mathewson 
Date:   Tue Aug 2 11:38:15 2016 -0400

Remaining lintChanges fixes
---
 changes/bug13239   | 2 +-
 changes/bug17688   | 3 ++-
 changes/bug18934   | 2 +-
 changes/bug18934_2 | 3 ++-
 changes/bug19483   | 2 +-
 changes/bug19504   | 2 +-
 6 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/changes/bug13239 b/changes/bug13239
index 17030c9..249e2b7 100644
--- a/changes/bug13239
+++ b/changes/bug13239
@@ -1,4 +1,4 @@
   o Minor bugfixes (hidden service client):
 - Increase the minimum number of internal circuits we preemptively build
   from 2 to 3 so they are available when a client connects to another
-  onion service. Fixes bug 13239; bugfix on tor-0.1.0.1-rc~460.
+  onion service. Fixes bug 13239; bugfix on 0.1.0.1-rc.
diff --git a/changes/bug17688 b/changes/bug17688
index 5e5fb05..bfbf1de 100644
--- a/changes/bug17688
+++ b/changes/bug17688
@@ -1,3 +1,4 @@
   o Minor bugfixes (guard selection):
 - Use a single entry guard even if the NumEntryGuards consensus parameter
-  is not provided. Fixes bug 17688.
+  is not provided. Fixes bug 17688; bugfix on 0.2.5.6-alpha.
+
diff --git a/changes/bug18934 b/changes/bug18934
index fba703e..18eb9ab 100644
--- a/changes/bug18934
+++ b/changes/bug18934
@@ -1,3 +1,3 @@
   o Minor features (testing):
 - Let backtrace tests work correctly under AddressSanitizer.
-  Fixes part of bug 18934.
+  Fixes part of bug 18934; bugfix on 0.2.5.2-alpha.
diff --git a/changes/bug18934_2 b/changes/bug18934_2
index 039feaf..2027e2b 100644
--- a/changes/bug18934_2
+++ b/changes/bug18934_2
@@ -1,4 +1,5 @@
   o Minor bugfixes (testing):
 - Disable ASAN's detection of segmentation faults while running
   test_bt.sh, so that we can make sure that our own backtrace generation
-  code works. Fixes another aspect of bug 18934. Patch from "cypherpunks".
+  code works. Fixes another aspect of bug 18934; bugfix on 0.2.5.2-alpha.
+  Patch from "cypherpunks".
diff --git a/changes/bug19483 b/changes/bug19483
index 9879497..0899978 100644
--- a/changes/bug19483
+++ b/changes/bug19483
@@ -1,3 +1,3 @@
   o Minor bugfixes (time):
 - Improve overflow checks in tv_udiff and tv_mdiff.
-  Fixes bug 19483, present in all tor versions.
+  Fixes bug 19483; bugfix on all released tor versions.
diff --git a/changes/bug19504 b/changes/bug19504
index 1a7676a..2162837 100644
--- a/changes/bug19504
+++ b/changes/bug19504
@@ -1,3 +1,3 @@
   o Minor bugfixes (documentation):
 - Document the --passphrase-fd option in the tor manpage.
-  Fixes bug 19504.
+  Fixes bug 19504; bugfix on 0.2.7.3-rc.



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Update lintChanges script to understand 'Minor features (debugging)'

2016-08-02 Thread nickm
commit 5aa6a19de5144e96274d8ddfbc056c8d3bc50298
Author: Nick Mathewson 
Date:   Tue Aug 2 11:39:26 2016 -0400

Update lintChanges script to understand 'Minor features (debugging)'

Previously we would give a warning because we didn't say "Fixes bug
Foo" on these.
---
 scripts/maint/lintChanges.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/maint/lintChanges.py b/scripts/maint/lintChanges.py
index 48edd06..0b8c5e5 100755
--- a/scripts/maint/lintChanges.py
+++ b/scripts/maint/lintChanges.py
@@ -44,7 +44,6 @@ def lintfile(fname):
 warn("bug number {} does not appear".format(bugnum))
 
 lines = contents.split("\n")
-isBug = ("bug" in lines[0] or "fix" in lines[0])
 
 m = re.match(r'^[ ]{2}o ([^\(:]*)([^:]*):', contents)
 if not m:
@@ -56,6 +55,7 @@ def lintfile(fname):
'(' not in m.group(2)):
 warn("Missing subcategory on %s"%m.group(1))
 
+isBug = ("bug" in m.group(1).lower() or "fix" in m.group(1).lower())
 
 contents = " ".join(contents.split())
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Fix most lintChanges warnings

2016-08-02 Thread nickm
commit 27e870cede731af83748768db26187d003905ff2
Author: Nick Mathewson 
Date:   Tue Aug 2 11:31:52 2016 -0400

Fix most lintChanges warnings

(Also remove changes/bug19530 since it was a bugfix on no released
version)
---
 changes/assert_nonfatal | 3 +--
 changes/bug14334| 2 +-
 changes/bug15942| 4 ++--
 changes/bug16943| 2 +-
 changes/bug17688| 2 +-
 changes/bug17983| 2 +-
 changes/bug18604| 6 +++---
 changes/bug18704| 6 +++---
 changes/bug18840| 2 +-
 changes/bug18963| 4 ++--
 changes/bug19066| 2 +-
 changes/bug19153| 2 +-
 changes/bug19216| 2 +-
 changes/bug19421| 2 +-
 changes/bug19428| 4 ++--
 changes/bug19483| 2 +-
 changes/bug19530| 6 --
 changes/bug19554| 2 +-
 changes/bug19702| 2 +-
 changes/feature18624| 2 +-
 changes/feature18760| 2 +-
 changes/feature18998| 2 +-
 changes/feature19036| 2 +-
 changes/feature19116| 2 +-
 changes/lcov_excl   | 2 +-
 changes/ticket18462 | 2 +-
 changes/ticket19323 | 4 ++--
 changes/timeouts| 2 +-
 28 files changed, 35 insertions(+), 42 deletions(-)

diff --git a/changes/assert_nonfatal b/changes/assert_nonfatal
index 0cbee44..9cb7ade 100644
--- a/changes/assert_nonfatal
+++ b/changes/assert_nonfatal
@@ -1,5 +1,4 @@
   o Minor features (safety, debugging):
-
-* Add a set of macros to check nonfatal assertions, for internal
+- Add a set of macros to check nonfatal assertions, for internal
   use. Migrating more of our checks to these should help us avoid
   needless crash bugs. Closes ticket 18613.
diff --git a/changes/bug14334 b/changes/bug14334
index c53781e..12b1a20 100644
--- a/changes/bug14334
+++ b/changes/bug14334
@@ -1,4 +1,4 @@
   o Minor bugfixes (guards):
 - Don't mark guards as unreachable if connection_connect() fails. That
   function fails for local reasons, so it shouldn't reveal anything about
-  the status of the guard. Fixes bug #14334; bugfix on 0.2.3.10-alpha.
+  the status of the guard. Fixes bug 14334; bugfix on 0.2.3.10-alpha.
diff --git a/changes/bug15942 b/changes/bug15942
index 0edc2b7..8426025 100644
--- a/changes/bug15942
+++ b/changes/bug15942
@@ -1,3 +1,3 @@
-  o Bugfixes (downloading):
+  o Minor features (downloading):
 - Use random exponential backoffs when retrying downloads from the dir
-  servers. Fixes bug 15942; bugfix on ?.
+  servers. Closes ticket 15942.
diff --git a/changes/bug16943 b/changes/bug16943
index 7b96d1a..3278d7b 100644
--- a/changes/bug16943
+++ b/changes/bug16943
@@ -5,4 +5,4 @@
   global randomness will be used by hidden services to select their
   responsible HSDirs. This release only implements the directory authority
   feature; the hidden service side will be implemented in the future as
-  part of proposal 224 . Resolves ticket #16943 and proposal 250.
+  part of proposal 224 . Resolves ticket 16943; implements proposal 250.
diff --git a/changes/bug17688 b/changes/bug17688
index aae6008..5e5fb05 100644
--- a/changes/bug17688
+++ b/changes/bug17688
@@ -1,3 +1,3 @@
   o Minor bugfixes (guard selection):
 - Use a single entry guard even if the NumEntryGuards consensus parameter
-  is not provided. Fixes bug #17688.
+  is not provided. Fixes bug 17688.
diff --git a/changes/bug17983 b/changes/bug17983
index db52a37..a099e1c 100644
--- a/changes/bug17983
+++ b/changes/bug17983
@@ -1,4 +1,4 @@
-  o Minor features (bug-finding):
+  o Major features (build, hardening):
 - Tor now builds with -ftrapv by default on compilers that support it.
   This option detects signed integer overflow, and turns it into a
   hard-failure.  We do not apply this option to code that needs to run
diff --git a/changes/bug18604 b/changes/bug18604
index 114c67e..7d1d37f 100644
--- a/changes/bug18604
+++ b/changes/bug18604
@@ -1,4 +1,4 @@
-  o Minor bugfixes (ephemeral hidden service)
+  o Minor bugfixes (ephemeral hidden service):
 - When deleting an ephemeral hidden service, close its intro points even
-  if not in the open state. Resolves ticket #18604; bugfix on
-  tor-0.2.7.1-alpha.
+  if not in the open state. Fixes bug 18604; bugfix on
+  0.2.7.1-alpha.
diff --git a/changes/bug18704 b/changes/bug18704
index 966cc2a..4280b74 100644
--- a/changes/bug18704
+++ b/changes/bug18704
@@ -1,5 +1,5 @@
-  o Major bugfixes (hidden service client)
+  o Major bugfixes (hidden service client):
 - With FetchHidServDescriptors set to 0, there is no descriptor fetch
   (which is intended) but also no descriptor cache lookup was done
-  making any Tor client not working with this option unset. Resolves
-  ticket #18704. Patch by "twim"; Bugfix on tor-0.2.0.20-rc.
+  making any Tor client not working with this option unset. Fixes
+  bug 18704; bugfix on 0.2.0.20-rc. Patch by "twim".
diff --git 

[tor-commits] [tor/release-0.2.8] bump maint-0.2.8 to 0.2.8.6-dev

2016-08-02 Thread nickm
commit 6b740aa46b513eaaa0d5b2dba0dce138e988e2a5
Author: Nick Mathewson 
Date:   Tue Aug 2 11:13:44 2016 -0400

bump maint-0.2.8 to 0.2.8.6-dev
---
 configure.ac| 2 +-
 contrib/win32build/tor-mingw.nsi.in | 2 +-
 src/win32/orconfig.h| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 28eef2a..4658b3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2015, The Tor Project, Inc.
 dnl See LICENSE for licensing information
 
 AC_PREREQ([2.63])
-AC_INIT([tor],[0.2.8.6])
+AC_INIT([tor],[0.2.8.6-dev])
 AC_CONFIG_SRCDIR([src/or/main.c])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/contrib/win32build/tor-mingw.nsi.in 
b/contrib/win32build/tor-mingw.nsi.in
index ba6afd1..e146694 100644
--- a/contrib/win32build/tor-mingw.nsi.in
+++ b/contrib/win32build/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
 !include "LogicLib.nsh"
 !include "FileFunc.nsh"
 !insertmacro GetParameters
-!define VERSION "0.2.8.6"
+!define VERSION "0.2.8.6-dev"
 !define INSTALLER "tor-${VERSION}-win32.exe"
 !define WEBSITE "https://www.torproject.org/;
 !define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index e4fe942..af4cba2 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -229,7 +229,7 @@
 #define USING_TWOS_COMPLEMENT
 
 /* Version number of package */
-#define VERSION "0.2.8.6"
+#define VERSION "0.2.8.6-dev"
 
 
 



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Merge branch 'maint-0.2.8'

2016-08-02 Thread nickm
commit 253f8140c862c24762181a6c6dc6bbba97d4e96c
Merge: 8c2ee16 6b740aa
Author: Nick Mathewson 
Date:   Tue Aug 2 11:14:08 2016 -0400

Merge branch 'maint-0.2.8'

(This is an "ours" merge to avoid taking the version number bump.)




___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Remove the changes files already merged in Tor 0.2.8.6

2016-08-02 Thread nickm
commit 679383fb07778315a8a673835fefb7d8078ffb53
Author: Nick Mathewson 
Date:   Tue Aug 2 11:18:29 2016 -0400

Remove the changes files already merged in Tor 0.2.8.6
---
 changes/bug18397   | 7 ---
 changes/bug19660   | 8 
 changes/bug19682   | 3 ---
 changes/bug19782   | 3 ---
 changes/geoip-july2016 | 4 
 5 files changed, 25 deletions(-)

diff --git a/changes/bug18397 b/changes/bug18397
deleted file mode 100644
index 53993da..000
--- a/changes/bug18397
+++ /dev/null
@@ -1,7 +0,0 @@
-  o Minor bugfixes (Linux seccomp2 sandbox):
-- Add a few missing syscalls to the seccomp2 sandbox: sysinfo,
-  getsockopt(SO_SNDBUF), and setsockopt(SO_SNDBUFFORCE). On
-  some systems, these are required for Tor to start with
-  "Sandbox 1" enabled.
-  Fixes bug 18397; bugfix on 0.2.5.1-alpha. Patch from
-  Daniel Pinto.
diff --git a/changes/bug19660 b/changes/bug19660
deleted file mode 100644
index 72d32c8..000
--- a/changes/bug19660
+++ /dev/null
@@ -1,8 +0,0 @@
-  o Minor bugfixes (sandboxing):
-- If we did not find a non-private IPaddress by iterating over
-  interfaces, we would try to get one via
-  get_interface_address6_via_udp_socket_hack().  This opens a
-  datagram socket with IPPROTO_UDP.  Previously all our datagram
-  sockets (via libevent) used IPPROTO_IP, so we did not have that
-  in the sandboxing whitelist.  Add (SOCK_DGRAM, IPPROTO_UDP)
-  sockets to the sandboxing whitelist.  Fixes bug 19660.
diff --git a/changes/bug19682 b/changes/bug19682
deleted file mode 100644
index c799c41..000
--- a/changes/bug19682
+++ /dev/null
@@ -1,3 +0,0 @@
-  o Minor bugfixes (compilation):
-- Fix compilation warning in the unit tests on systems where
-  char is signed. Fixes bug 19682; bugfix on 0.2.8.1-alpha.
diff --git a/changes/bug19782 b/changes/bug19782
deleted file mode 100644
index 37660ea..000
--- a/changes/bug19782
+++ /dev/null
@@ -1,3 +0,0 @@
-  o Minor bugfixes (fallback directories):
-- Remove a fallback that was on the hardcoded list, then opted-out.
-  Fixes bug 19782; update to fallback list from 0.2.8.2-alpha.
diff --git a/changes/geoip-july2016 b/changes/geoip-july2016
deleted file mode 100644
index d9963bd..000
--- a/changes/geoip-july2016
+++ /dev/null
@@ -1,4 +0,0 @@
-  o Minor features:
-- Update geoip and geoip6 to the July 6 2016 Maxmind GeoLite2
-  Country database.
-

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/maint-0.2.8] bump maint-0.2.8 to 0.2.8.6-dev

2016-08-02 Thread nickm
commit 6b740aa46b513eaaa0d5b2dba0dce138e988e2a5
Author: Nick Mathewson 
Date:   Tue Aug 2 11:13:44 2016 -0400

bump maint-0.2.8 to 0.2.8.6-dev
---
 configure.ac| 2 +-
 contrib/win32build/tor-mingw.nsi.in | 2 +-
 src/win32/orconfig.h| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 28eef2a..4658b3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2015, The Tor Project, Inc.
 dnl See LICENSE for licensing information
 
 AC_PREREQ([2.63])
-AC_INIT([tor],[0.2.8.6])
+AC_INIT([tor],[0.2.8.6-dev])
 AC_CONFIG_SRCDIR([src/or/main.c])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/contrib/win32build/tor-mingw.nsi.in 
b/contrib/win32build/tor-mingw.nsi.in
index ba6afd1..e146694 100644
--- a/contrib/win32build/tor-mingw.nsi.in
+++ b/contrib/win32build/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
 !include "LogicLib.nsh"
 !include "FileFunc.nsh"
 !insertmacro GetParameters
-!define VERSION "0.2.8.6"
+!define VERSION "0.2.8.6-dev"
 !define INSTALLER "tor-${VERSION}-win32.exe"
 !define WEBSITE "https://www.torproject.org/;
 !define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index e4fe942..af4cba2 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -229,7 +229,7 @@
 #define USING_TWOS_COMPLEMENT
 
 /* Version number of package */
-#define VERSION "0.2.8.6"
+#define VERSION "0.2.8.6-dev"
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Forward-port 0.2.8.6 entry to changelog and releasenotes

2016-08-02 Thread nickm
commit e289304c4b3f6a37f534281154a6c4a18bdaca63
Author: Nick Mathewson 
Date:   Tue Aug 2 11:15:52 2016 -0400

Forward-port 0.2.8.6 entry to changelog and releasenotes
---
 ChangeLog|  35 +++
 ReleaseNotes | 725 +++
 2 files changed, 760 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 6d066cd..592cd47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,41 @@
 Changes in version 0.2.9.1-alpha - 2016-??-??
 
 
+Changes in version 0.2.8.6 - 2016-08-02
+
+  Tor 0.2.8.6 is the first stable version of the Tor 0.2.8 series.
+
+  The Tor 0.2.8 series improves client bootstrapping performance,
+  completes the authority-side implementation of improved identity
+  keys for relays, and includes numerous bugfixes and performance
+  improvements throughout the program. This release continues to
+  improve the coverage of Tor's test suite.  For a full list of
+  changes since Tor 0.2.7, see the ReleaseNotes file.
+
+  Changes since 0.2.8.5-rc:
+
+  o Minor features (geoip):
+- Update geoip and geoip6 to the July 6 2016 Maxmind GeoLite2
+  Country database.
+
+  o Minor bugfixes (compilation):
+- Fix a compilation warning in the unit tests on systems where char
+  is signed. Fixes bug 19682; bugfix on 0.2.8.1-alpha.
+
+  o Minor bugfixes (fallback directories):
+- Remove a fallback that was on the hardcoded list, then opted-out.
+  Fixes bug 19782; update to fallback list from 0.2.8.2-alpha.
+
+  o Minor bugfixes (Linux seccomp2 sandbox):
+- Allow more syscalls when running with "Sandbox 1" enabled:
+  sysinfo, getsockopt(SO_SNDBUF), and setsockopt(SO_SNDBUFFORCE). On
+  some systems, these are required for Tor to start. Fixes bug
+  18397; bugfix on 0.2.5.1-alpha. Patch from Daniel Pinto.
+- Allow IPPROTO_UDP datagram sockets when running with "Sandbox 1",
+  so that get_interface_address6_via_udp_socket_hack() can work.
+  Fixes bug 19660; bugfix on 0.2.5.1-alpha.
+
+
 Changes in version 0.2.8.5-rc - 2016-07-07
   Tor 0.2.8.5-rc is the second release candidate in the Tor 0.2.8
   series. If we find no new bugs or regressions here, the first stable
diff --git a/ReleaseNotes b/ReleaseNotes
index ba5de30..35ddcf8 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -2,6 +2,731 @@ This document summarizes new features and bugfixes in each 
stable release
 of Tor. If you want to see more detailed descriptions of the changes in
 each development snapshot, see the ChangeLog file.
 
+
+Changes in version 0.2.8.6 - 2016-08-02
+
+  Tor 0.2.8.6 is the first stable version of the Tor 0.2.8 series.
+
+  The Tor 0.2.8 series improves client bootstrapping performance,
+  completes the authority-side implementation of improved identity
+  keys for relays, and includes numerous bugfixes and performance
+  improvements throughout the program. This release continues to
+  improve the coverage of Tor's test suite.  For a full list of
+  changes since Tor 0.2.7, see the ReleaseNotes file.
+
+  Below is a list of the changes since Tor 0.2.7.
+
+  o New system requirements:
+- Tor no longer attempts to support platforms where the "time_t"
+  type is unsigned. (To the best of our knowledge, only OpenVMS does
+  this, and Tor has never actually built on OpenVMS.) Closes
+  ticket 18184.
+- Tor no longer supports versions of OpenSSL with a broken
+  implementation of counter mode. (This bug was present in OpenSSL
+  1.0.0, and was fixed in OpenSSL 1.0.0a.) Tor still detects, but no
+  longer runs with, these versions.
+- Tor now uses Autoconf version 2.63 or later, and Automake 1.11 or
+  later (released in 2008 and 2009 respectively). If you are
+  building Tor from the git repository instead of from the source
+  distribution, and your tools are older than this, you will need to
+  upgrade. Closes ticket 17732.
+
+  o Directory authority changes:
+- Update the V3 identity key for the dannenberg directory authority:
+  it was changed on 18 November 2015. Closes task 17906. Patch
+  by teor.
+- Urras is no longer a directory authority. Closes ticket 19271.
+
+  o Major features (directory system):
+- Include a trial list of default fallback directories, based on an
+  opt-in survey of suitable relays. Doing this should make clients
+  bootstrap more quickly and reliably, and reduce the load on the
+  directory authorities. Closes ticket 15775. Patch by teor.
+  Candidates identified using an OnionOO script by weasel, teor,
+  gsathya, and karsten.
+- Previously only relays that explicitly opened a directory port
+  (DirPort) accepted directory requests from clients. Now all
+  relays, with and without a DirPort, accept and serve tunneled
+  directory requests that they receive through their ORPort. You can
+  disable this behavior using the new DirCache option. Closes
+  ticket 12538.
+- 

[tor-commits] [tor/master] bump maint-0.2.8 to 0.2.8.6-dev

2016-08-02 Thread nickm
commit 6b740aa46b513eaaa0d5b2dba0dce138e988e2a5
Author: Nick Mathewson 
Date:   Tue Aug 2 11:13:44 2016 -0400

bump maint-0.2.8 to 0.2.8.6-dev
---
 configure.ac| 2 +-
 contrib/win32build/tor-mingw.nsi.in | 2 +-
 src/win32/orconfig.h| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 28eef2a..4658b3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2015, The Tor Project, Inc.
 dnl See LICENSE for licensing information
 
 AC_PREREQ([2.63])
-AC_INIT([tor],[0.2.8.6])
+AC_INIT([tor],[0.2.8.6-dev])
 AC_CONFIG_SRCDIR([src/or/main.c])
 AC_CONFIG_MACRO_DIR([m4])
 
diff --git a/contrib/win32build/tor-mingw.nsi.in 
b/contrib/win32build/tor-mingw.nsi.in
index ba6afd1..e146694 100644
--- a/contrib/win32build/tor-mingw.nsi.in
+++ b/contrib/win32build/tor-mingw.nsi.in
@@ -8,7 +8,7 @@
 !include "LogicLib.nsh"
 !include "FileFunc.nsh"
 !insertmacro GetParameters
-!define VERSION "0.2.8.6"
+!define VERSION "0.2.8.6-dev"
 !define INSTALLER "tor-${VERSION}-win32.exe"
 !define WEBSITE "https://www.torproject.org/;
 !define LICENSE "LICENSE"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index e4fe942..af4cba2 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -229,7 +229,7 @@
 #define USING_TWOS_COMPLEMENT
 
 /* Version number of package */
-#define VERSION "0.2.8.6"
+#define VERSION "0.2.8.6-dev"
 
 
 



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/release-0.2.8] Merge branch 'maint-0.2.8' into release-0.2.8

2016-08-02 Thread nickm
commit ee47010e605e2d4c096d7fa8ebb81ddfc07d78c4
Merge: 4d21754 6b740aa
Author: Nick Mathewson 
Date:   Tue Aug 2 11:13:51 2016 -0400

Merge branch 'maint-0.2.8' into release-0.2.8

 configure.ac| 2 +-
 contrib/win32build/tor-mingw.nsi.in | 2 +-
 src/win32/orconfig.h| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/release-0.2.8] They are many but some are large.

2016-08-02 Thread nickm
commit 4d217548e3f05569da1d3806a0a9b3817ec2fb54
Author: Nick Mathewson 
Date:   Tue Aug 2 10:38:57 2016 -0400

They are many but some are large.
---
 ChangeLog| 2 +-
 ReleaseNotes | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 567f611..9f0e002 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,7 @@ Changes in version 0.2.8.6 - 2016-08-02
 
   The Tor 0.2.8 series improves client bootstrapping performance,
   completes the authority-side implementation of improved identity
-  keys for relays, and includes small bugfixes and performance
+  keys for relays, and includes numerous bugfixes and performance
   improvements throughout the program. This release continues to
   improve the coverage of Tor's test suite.  For a full list of
   changes since Tor 0.2.7, see the ReleaseNotes file.
diff --git a/ReleaseNotes b/ReleaseNotes
index bb7967c..cb1c128 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -8,7 +8,7 @@ Changes in version 0.2.8.6 - 2016-08-02
 
   The Tor 0.2.8 series improves client bootstrapping performance,
   completes the authority-side implementation of improved identity
-  keys for relays, and includes small bugfixes and performance
+  keys for relays, and includes numerous bugfixes and performance
   improvements throughout the program. This release continues to
   improve the coverage of Tor's test suite.  For a full list of
   changes since Tor 0.2.7, see the ReleaseNotes file.

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/release-0.2.8] tm_year++

2016-08-02 Thread nickm
commit f2517b31c4121c5deddb96d761af77f162b48f8c
Author: Nick Mathewson 
Date:   Tue Aug 2 10:37:42 2016 -0400

tm_year++
---
 ReleaseNotes | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ReleaseNotes b/ReleaseNotes
index 327f916..bb7967c 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -2,7 +2,7 @@ This document summarizes new features and bugfixes in each 
stable release
 of Tor. If you want to see more detailed descriptions of the changes in
 each development snapshot, see the ChangeLog file.
 
-Changes in version 0.2.8.6 - 2015-08-02
+Changes in version 0.2.8.6 - 2016-08-02
 
   Tor 0.2.8.6 is the first stable version of the Tor 0.2.8 series.
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/release-0.2.8] Today might be the day.

2016-08-02 Thread nickm
commit 64591c3e5592d2c0b0806514f9c6d76f255d6455
Author: Nick Mathewson 
Date:   Tue Aug 2 10:04:52 2016 -0400

Today might be the day.
---
 ChangeLog| 2 +-
 ReleaseNotes | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c6837dc..567f611 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Changes in version 0.2.8.6 - 2016-07-3?
+Changes in version 0.2.8.6 - 2016-08-02
 
   Tor 0.2.8.6 is the first stable version of the Tor 0.2.8 series.
 
diff --git a/ReleaseNotes b/ReleaseNotes
index a5cd305..032a727 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -2,7 +2,7 @@ This document summarizes new features and bugfixes in each 
stable release
 of Tor. If you want to see more detailed descriptions of the changes in
 each development snapshot, see the ChangeLog file.
 
-Changes in version 0.2.8.6 - 2015-07-3?
+Changes in version 0.2.8.6 - 2015-08-02
 
   Tor 0.2.8.6 is the first stable version of the Tor 0.2.8 series.
 



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/release-0.2.8] Combine and rename and sort some sections in the releasenotes

2016-08-02 Thread nickm
commit 98a9e2fb861e10ca88bd869b1c22e189364a644b
Author: Nick Mathewson 
Date:   Tue Aug 2 10:19:51 2016 -0400

Combine and rename and sort some sections in the releasenotes
---
 ReleaseNotes | 149 ---
 1 file changed, 61 insertions(+), 88 deletions(-)

diff --git a/ReleaseNotes b/ReleaseNotes
index 032a727..327f916 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -76,15 +76,27 @@ Changes in version 0.2.8.6 - 2015-08-02
   rather than the more aggressive client retry count. Fixes part of
   ticket 18809.
 
-  o Major bugfixes (compilation):
-- Repair hardened builds under the clang compiler. Previously, our
-  use of _FORTIFY_SOURCE would conflict with clang's address
-  sanitizer. Fixes bug 14821; bugfix on 0.2.5.4-alpha.
-
   o Major bugfixes (dns proxy mode, crash):
 - Avoid crashing when running as a DNS proxy. Fixes bug 16248;
   bugfix on 0.2.0.1-alpha. Patch from "cypherpunks".
 
+  o Major bugfixes (ed25519, voting):
+- Actually enable support for authorities to match routers by their
+  Ed25519 identities. Previously, the code had been written, but
+  some debugging code that had accidentally been left in the
+  codebase made it stay turned off. Fixes bug 17702; bugfix
+  on 0.2.7.2-alpha.
+- When collating votes by Ed25519 identities, authorities now
+  include a "NoEdConsensus" flag if the ed25519 value (or lack
+  thereof) for a server does not reflect the majority consensus.
+  Related to bug 17668; bugfix on 0.2.7.2-alpha.
+- When generating a vote with keypinning disabled, never include two
+  entries for the same ed25519 identity. This bug was causing
+  authorities to generate votes that they could not parse when a
+  router violated key pinning by changing its RSA identity but
+  keeping its Ed25519 identity. Fixes bug 17668; fixes part of bug
+  18318. Bugfix on 0.2.7.2-alpha.
+
   o Major bugfixes (key management):
 - If OpenSSL fails to generate an RSA key, do not retain a dangling
   pointer to the previous (uninitialized) key value. The impact here
@@ -106,6 +118,9 @@ Changes in version 0.2.8.6 - 2015-08-02
   cause a compiler warning, thereby making other checks fail, and
   needlessly disabling compiler-hardening support. Fixes one case of
   bug 18841; bugfix on 0.2.3.17-beta. Patch from "trudokal".
+- Repair hardened builds under the clang compiler. Previously, our
+  use of _FORTIFY_SOURCE would conflict with clang's address
+  sanitizer. Fixes bug 14821; bugfix on 0.2.5.4-alpha.
 
   o Major bugfixes (security, pointers):
 - Avoid a difficult-to-trigger heap corruption attack when extending
@@ -122,23 +137,6 @@ Changes in version 0.2.8.6 - 2015-08-02
   by nickname, and one such relay is found, but it is not officially
   Named. Fixes bug 19203; bugfix on 0.2.3.1-alpha.
 
-  o Major bugfixes (voting):
-- Actually enable support for authorities to match routers by their
-  Ed25519 identities. Previously, the code had been written, but
-  some debugging code that had accidentally been left in the
-  codebase made it stay turned off. Fixes bug 17702; bugfix
-  on 0.2.7.2-alpha.
-- When collating votes by Ed25519 identities, authorities now
-  include a "NoEdConsensus" flag if the ed25519 value (or lack
-  thereof) for a server does not reflect the majority consensus.
-  Related to bug 17668; bugfix on 0.2.7.2-alpha.
-- When generating a vote with keypinning disabled, never include two
-  entries for the same ed25519 identity. This bug was causing
-  authorities to generate votes that they could not parse when a
-  router violated key pinning by changing its RSA identity but
-  keeping its Ed25519 identity. Fixes bug 17668; fixes part of bug
-  18318. Bugfix on 0.2.7.2-alpha.
-
   o Minor features (accounting):
 - Added two modes to the AccountingRule option: One for limiting
   only the number of bytes sent ("AccountingRule out"), and one for
@@ -149,6 +147,10 @@ Changes in version 0.2.8.6 - 2015-08-02
 - Make Tor survive errors involving connections without a
   corresponding event object. Previously we'd fail with an
   assertion; now we produce a log message. Related to bug 16248.
+- Use tor_snprintf() and tor_vsnprintf() even in external and low-
+  level code, to harden against accidental failures to NUL-
+  terminate. Part of ticket 17852. Patch from jsturgix. Found
+  with Flawfinder.
 
   o Minor features (build):
 - Detect systems with FreeBSD-derived kernels (such as GNU/kFreeBSD)
@@ -158,12 +160,10 @@ Changes in version 0.2.8.6 - 2015-08-02
   force "make dist" to depend on "make check". Closes ticket 17893;
   patch from "cypherpunks".
 - Tor now builds once again with the recent OpenSSL 1.1 development
-  branch (tested against 1.1.0-pre5 and 

[tor-commits] [tor/master] Get the extend_info_from_router check the right way around

2016-08-02 Thread nickm
commit 8c2ee16b8f9ea5a9ed424584c3cb758c4e58883c
Author: teor 
Date:   Tue Aug 2 14:28:56 2016 +1000

Get the extend_info_from_router check the right way around
---
 src/or/router.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/router.c b/src/or/router.c
index 009dcdc..bfc2d12 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1293,7 +1293,7 @@ extend_info_from_router(const routerinfo_t *r)
   tor_assert(r);
 
   /* Make sure we don't need to check address reachability */
-  tor_assert_nonfatal(!router_skip_or_reachability(get_options(), 0));
+  tor_assert_nonfatal(router_skip_or_reachability(get_options(), 0));
 
   router_get_prim_orport(r, );
   return extend_info_new(r->nickname, r->cache_info.identity_digest,

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [exonerator/master] Upgrade metrics-lib to 1.3.1.

2016-08-02 Thread karsten
commit 44a02779dccebb9d343c48bdb3df2230b2e4536d
Author: Karsten Loesing 
Date:   Tue Aug 2 14:14:01 2016 +0200

Upgrade metrics-lib to 1.3.1.
---
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 7a52b17..b8e77c8 100644
--- a/build.xml
+++ b/build.xml
@@ -16,7 +16,7 @@
   
 
 
-  
+  
   
   
   

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [metrics-web/master] Remove note that the bandwidth unit has changed.

2016-08-02 Thread karsten
commit 5b56eb469436a34da684dc41193704ed45339119
Author: Karsten Loesing 
Date:   Tue Aug 2 13:46:54 2016 +0200

Remove note that the bandwidth unit has changed.

We switched from MiB/s to Gbit/s in January 2015.  Time to remove the
note for this change.
---
 website/etc/metrics.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/website/etc/metrics.json b/website/etc/metrics.json
index c4b47a7..64633ca 100644
--- a/website/etc/metrics.json
+++ b/website/etc/metrics.json
@@ -133,7 +133,7 @@
 ],
 "type": "Graph",
 "level": "Basic",
-"description": "The following graph shows the total advertised and consumed bandwidth of all relays in the network.  Note 
that the unit has recently changed from MiB/s to Gbit/s.",
+"description": "The following graph shows the total advertised and consumed bandwidth of all relays in the network.",
 "function": "plot_bandwidth",
 "parameters": [
   "start",
@@ -157,7 +157,7 @@
 ],
 "type": "Graph",
 "level": "Basic",
-"description": "The following graph shows the consumed bandwidth reported by 
relays, subdivided into four distinct subsets by assigned \"Exit\" and/or 
\"Guard\" flags.  Note that the unit has recently changed from MiB/s to 
Gbit/s.",
+"description": "The following graph shows the consumed bandwidth reported by 
relays, subdivided into four distinct subsets by assigned \"Exit\" and/or 
\"Guard\" flags.",
 "function": "plot_bwhist_flags",
 "parameters": [
   "start",
@@ -182,7 +182,7 @@
 ],
 "type": "Graph",
 "level": "Basic",
-"description": "The following graph shows advertised and consumed bandwidth of relays with 
either \"Exit\" or \"Guard\" flags 
assigned by the directory authorities.  These sets are not distinct, because a 
relay that has both the \"Exit\" and \"Guard\" flags assigned will be included 
in both sets.  Note that the unit has recently changed from 
MiB/s to Gbit/s.",
+"description": "The following graph shows advertised and consumed bandwidth of relays with 
either \"Exit\" or \"Guard\" flags 
assigned by the directory authorities.  These sets are not distinct, because a 
relay that has both the \"Exit\" and \"Guard\" flags assigned will be included 
in both sets.",
 "function": "plot_bandwidth_flags",
 "parameters": [
   "start",
@@ -207,7 +207,7 @@
 ],
 "type": "Graph",
 "level": "Basic",
-"description": "The following graph shows the portion of consumed bandwidth that directory authorities and mirrors have spent on answering 
directory requests.  Not all directories report these statistics, so the graph 
shows an estimation of total consumed bandwidth as it would be observed if all 
directories reported these statistics.  Note that the unit 
has recently changed from MiB/s to Gbit/s.",
+"description": "The following graph shows the portion of consumed bandwidth that directory authorities and mirrors have spent on answering 
directory requests.  Not all directories report these statistics, so the graph 
shows an estimation of total consumed bandwidth as it would be observed if all 
directories reported these statistics.",
 "function": "plot_dirbytes",
 "parameters": [
   "start",
@@ -231,7 +231,7 @@
 ],
 "type": "Graph",
 "level": "Basic",
-"description": "The following graph shows the distribution of the advertised bandwidth of relays in 
the network.  Each percentile represents the advertised bandwidth that a given 
percentage of relays does not exceed (and that in turn the remaining relays 
either match or exceed).  For example, 99% of relays advertise at most the 
bandwidth value shown in the 99th percentile line (and the remaining 1% 
advertise at least that amount).  Note that the unit has 
recently changed from MiB/s to Gbit/s.",
+"description": "The following graph shows the distribution of the advertised bandwidth of relays in 
the network.  Each percentile represents the advertised bandwidth that a given 
percentage of relays does not exceed (and that in turn the remaining relays 
either match or exceed).  For example, 99% of relays advertise at most the 
bandwidth value shown in the 99th percentile line (and the remaining 1% 
advertise at least that amount).",
 "function": "plot_advbwdist_perc",
 "parameters": [
   "start",
@@ -254,7 +254,7 @@
 ],
 "type": "Graph",
 "level": "Basic",
-"description": "The following graph shows the advertised bandwidth of the n-th 
fastest relays in the network for different values of n.  Note that the unit has recently changed from MiB/s to 
Gbit/s.",
+"description": "The following graph shows the advertised bandwidth of the n-th 
fastest relays in the network for different values of n.",
 "function": "plot_advbwdist_relay",
 "parameters": [
   "start",

___
tor-commits mailing list

[tor-commits] [translation/tor-messenger-fingerdtd_completed] Update translations for tor-messenger-fingerdtd_completed

2016-08-02 Thread translation
commit c7acc7daf16f75bc5f45f4a3b08ed29c9d2a0e64
Author: Translation commit bot 
Date:   Tue Aug 2 10:19:56 2016 +

Update translations for tor-messenger-fingerdtd_completed
---
 el/finger.dtd | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/el/finger.dtd b/el/finger.dtd
index d552d26..8b9f19e 100644
--- a/el/finger.dtd
+++ b/el/finger.dtd
@@ -7,4 +7,9 @@
 
 
 
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-messenger-fingerdtd] Update translations for tor-messenger-fingerdtd

2016-08-02 Thread translation
commit c32de97f17167411f5ca7e86380de6e7194b337b
Author: Translation commit bot 
Date:   Tue Aug 2 10:19:27 2016 +

Update translations for tor-messenger-fingerdtd
---
 el/finger.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/el/finger.dtd b/el/finger.dtd
index 56c06af..8b9f19e 100644
--- a/el/finger.dtd
+++ b/el/finger.dtd
@@ -12,4 +12,4 @@
 
 
 
-
\ No newline at end of file
+
\ No newline at end of file

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-launcher-network-settings] Update translations for tor-launcher-network-settings

2016-08-02 Thread translation
commit 8aa1f2f21b55b6a3f4c48d9a0fae971a054784c4
Author: Translation commit bot 
Date:   Tue Aug 2 10:16:58 2016 +

Update translations for tor-launcher-network-settings
---
 el/network-settings.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/el/network-settings.dtd b/el/network-settings.dtd
index 210a82e..aa2b6f4 100644
--- a/el/network-settings.dtd
+++ b/el/network-settings.dtd
@@ -66,7 +66,7 @@
 
 
 
-
+
 
 https://bridges.torproject.org;>
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/https_everywhere_completed] Update translations for https_everywhere_completed

2016-08-02 Thread translation
commit 8f4dbe7337872c136c7d3fc6445286b1cbc5849c
Author: Translation commit bot 
Date:   Tue Aug 2 10:15:51 2016 +

Update translations for https_everywhere_completed
---
 el/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/el/https-everywhere.dtd b/el/https-everywhere.dtd
index 96c3af6..f7e8a51 100644
--- a/el/https-everywhere.dtd
+++ b/el/https-everywhere.dtd
@@ -20,7 +20,7 @@
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/https_everywhere] Update translations for https_everywhere

2016-08-02 Thread translation
commit c770754e6068199ef7a09fef5c8f83c29b93187d
Author: Translation commit bot 
Date:   Tue Aug 2 10:15:22 2016 +

Update translations for https_everywhere
---
 el/https-everywhere.dtd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/el/https-everywhere.dtd b/el/https-everywhere.dtd
index 6d613ef..f7e8a51 100644
--- a/el/https-everywhere.dtd
+++ b/el/https-everywhere.dtd
@@ -20,7 +20,7 @@
 
 
 
-
+
 
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-browser-bundle/master] Bump versions for nightlies

2016-08-02 Thread gk
commit edfaa1e39cb9cfc3d0c019116b98e71aa9c788eb
Author: Georg Koppen 
Date:   Tue Aug 2 09:50:36 2016 +

Bump versions for nightlies
---
 gitian/versions.nightly | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gitian/versions.nightly b/gitian/versions.nightly
index 7d66421..749f8ea 100755
--- a/gitian/versions.nightly
+++ b/gitian/versions.nightly
@@ -17,7 +17,7 @@ MULTI_LINGUAL=1
 
 VERIFY_TAGS=0
 
-FIREFOX_VERSION=45.2.0esr
+FIREFOX_VERSION=45.3.0esr
 
 TORBROWSER_UPDATE_CHANNEL=default
 
@@ -54,7 +54,7 @@ GITIAN_TAG=tor-browser-builder-4
 OPENSSL_VER=1.0.1t
 GMP_VER=5.1.3
 FIREFOX_LANG_VER=$FIREFOX_VERSION
-FIREFOX_LANG_BUILD=build2
+FIREFOX_LANG_BUILD=build1
 BINUTILS_VER=2.24
 GCC_VER=5.1.0
 CLANG_VER=r247539
@@ -75,7 +75,7 @@ NSIS_VER=2.51
 ## File names for the source packages
 OPENSSL_PACKAGE=openssl-${OPENSSL_VER}.tar.gz
 GMP_PACKAGE=gmp-${GMP_VER}.tar.bz2
-NOSCRIPT_PACKAGE=noscript_security_suite-2.9.0.11-fn+sm+fx.xpi
+NOSCRIPT_PACKAGE=noscript_security_suite-2.9.0.12-fx+fn+sm.xpi
 
TOOLCHAIN4_OLD_PACKAGE=multiarch-darwin11-cctools127.2-gcc42-5666.3-llvmgcc42-2336.1-Linux-120724.tar.xz
 CCTOOLS_PACKAGE=cctools.tar.gz
 OSXSDK_PACKAGE=MacOSX10.7.sdk.tar.gz
@@ -109,7 +109,7 @@ 
GMP_HASH=752079520b4690531171d0f4532e40f08600215feefede70b24fabdc6f1ab160
 OSXSDK_HASH=da77bb0003fcca5ea8c4e8cb2da8828ded750c54afdcac29ec6f3b46ad5e3adf
 
OSXSDK_OLD_HASH=6602d8d5ddb371fbc02e2a5967d9bd0cd7358d46f9417753c8234b923f2ea6fc
 
TOOLCHAIN4_OLD_HASH=65c1b2d302358a6b95a26c6828a66908a199276193bb0b268f2dcc1a997731e9
-NOSCRIPT_HASH=fdd965a69188ac651b08a7d3ada54821a89db10a4685aa73ba59edc0b8243390
+NOSCRIPT_HASH=3fa641dcb60455c950cef0c15effa8ca060b3b05405f46f55cbdb922929027e7
 CCTOOLS_HASH=e908fdebc2886ee5491ebfc7e7950af451b3c4e2439c2d7a923ed06ad05113e4
 MSVCR100_HASH=1221a09484964a6f38af5e34ee292b9afefccb3dc6e55435fd3aaf7c235d9067
 PYCRYPTO_HASH=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-misc_completed] Update translations for tails-misc_completed

2016-08-02 Thread translation
commit 8e526b741f2b56ed926096ac393522ee7253382d
Author: Translation commit bot 
Date:   Tue Aug 2 09:46:45 2016 +

Update translations for tails-misc_completed
---
 el.po | 59 +++
 1 file changed, 27 insertions(+), 32 deletions(-)

diff --git a/el.po b/el.po
index cac461e..ce30d2a 100644
--- a/el.po
+++ b/el.po
@@ -5,6 +5,7 @@
 # Translators:
 # Adrian Pappas , 2013,2015
 # Aikaterini Katmada, 2015
+# Alex Calpos , 2016
 # Alex , 2013
 # andromeas , 2014
 # andromeas , 2014
@@ -23,9 +24,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-03-17 15:03+0100\n"
-"PO-Revision-Date: 2016-03-25 19:53+\n"
-"Last-Translator: anvo \n"
+"POT-Creation-Date: 2016-07-31 10:43+0200\n"
+"PO-Revision-Date: 2016-08-02 09:43+\n"
+"Last-Translator: Alex Calpos \n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -74,13 +75,13 @@ msgid "Do you want to start Electrum anyway?"
 msgstr "Θέλετε να εκκινήσετε το Electrum ούτως ή 
άλλως;"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:23
-#: config/chroot_local-includes/usr/local/bin/icedove:23
+#: config/chroot_local-includes/usr/local/bin/icedove:37
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
 msgid "_Launch"
 msgstr "_Εκκίνηση"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:24
-#: config/chroot_local-includes/usr/local/bin/icedove:24
+#: config/chroot_local-includes/usr/local/bin/icedove:38
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
 msgid "_Exit"
 msgstr "_Έξοδος"
@@ -242,23 +243,29 @@ msgstr "Έξοδος του GnuPG:"
 msgid "Other messages provided by GnuPG:"
 msgstr "Άλλα μηνύματα που παρέχονται από το 
GnuPG:"
 
-#: config/chroot_local-includes/usr/local/bin/icedove:19
+#: config/chroot_local-includes/usr/local/bin/icedove:27
 msgid "The Claws Mail persistence feature is activated."
 msgstr "Η λειτουργία μονιμότητας του Claws 
Mail είναι ενεργοποιημένη."
 
-#: config/chroot_local-includes/usr/local/bin/icedove:21
+#: config/chroot_local-includes/usr/local/bin/icedove:29
 msgid ""
 "If you have emails saved in Claws Mail, you should migrate"
 " your data before starting Icedove."
 msgstr "Αν έχετε μηνύματα ηλεκτρονικού ταχυ
δρομείου αποθηκευμένα στο Claws Mail, 
πρέπει να μεταφέρετε
 τα δεδομένα σας πριν ξεκινήσετε το 
Icedove."
 
+#: config/chroot_local-includes/usr/local/bin/icedove:34
+msgid ""
+"If you already migrated your emails to Icedove, you should delete"
+" all your Claws Mail data to remove this warning."
+msgstr "Εάν έχετε ήδη μεταφέρει τα μηνύματά 
σας στο Icedove, θα πρέπει να διαγράψετε
 όλα τα δεδομένα από το Claws Mail data για 
φύγει αυτή η προειδοποίηση."
+
 #: 
config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-hel...@tails.boum.org/extension.js:71
 msgid "Restart"
 msgstr "Επανεκκίνηση "
 
 #: 
config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-hel...@tails.boum.org/extension.js:74
-#: 
../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
 msgid "Power Off"
 msgstr "Απενεργοποίηση"
 
@@ -426,60 +433,60 @@ msgid ""
 "register to activate your Internet connection."
 msgstr "Η δραστηριότητα μέσα από Unsafe Browser  
δεν είναι ανώνυμη.\\n Χρησιμοποιήστε Unsafe 
Browser μόνο όταν είναι αναγκαίο, για 
παράδειγμα\\n αν χρειάζεται να συνδεθείτε ή 
να δημιουργήσετε για την ενεργοποίηση της 
σύνδεσης στο διαδίκτυο."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid "Starting the Unsafe Browser..."
 msgstr "Εκκίνηση του μη ασφαλή Browser..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
 msgid "This may take a while, so please be patient."
 msgstr "Αυτό μπορεί να πάρει λίγο χρόνο, 
παρακαλούμε κάντε υπομονή."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 msgid 

[tor-commits] [translation/tails-misc] Update translations for tails-misc

2016-08-02 Thread translation
commit d99755525cbcee64058e28a249e83ed2e6554bea
Author: Translation commit bot 
Date:   Tue Aug 2 09:46:09 2016 +

Update translations for tails-misc
---
 el.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/el.po b/el.po
index ba8f0b2..ce30d2a 100644
--- a/el.po
+++ b/el.po
@@ -5,6 +5,7 @@
 # Translators:
 # Adrian Pappas , 2013,2015
 # Aikaterini Katmada, 2015
+# Alex Calpos , 2016
 # Alex , 2013
 # andromeas , 2014
 # andromeas , 2014
@@ -23,9 +24,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-25 20:25+0200\n"
-"PO-Revision-Date: 2016-05-27 10:12+\n"
-"Last-Translator: carolyn \n"
+"POT-Creation-Date: 2016-07-31 10:43+0200\n"
+"PO-Revision-Date: 2016-08-02 09:43+\n"
+"Last-Translator: Alex Calpos \n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -258,7 +259,7 @@ msgid ""
 "If you already migrated your emails to Icedove, you should delete"
 " all your Claws Mail data to remove this warning."
-msgstr ""
+msgstr "Εάν έχετε ήδη μεταφέρει τα μηνύματά 
σας στο Icedove, θα πρέπει να διαγράψετε
 όλα τα δεδομένα από το Claws Mail data για 
φύγει αυτή η προειδοποίηση."
 
 #: 
config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-hel...@tails.boum.org/extension.js:71
 msgid "Restart"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [metrics-web/master] Upgrade collectdescs module to metrics-lib 1.3.1.

2016-08-02 Thread karsten
commit 82cdfc504aad0a180b1b85fe7de4b72ae940978f
Author: Karsten Loesing 
Date:   Tue Aug 2 11:16:45 2016 +0200

Upgrade collectdescs module to metrics-lib 1.3.1.
---
 modules/collectdescs/build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/collectdescs/build.xml b/modules/collectdescs/build.xml
index 3e7fbf0..5d17d4e 100644
--- a/modules/collectdescs/build.xml
+++ b/modules/collectdescs/build.xml
@@ -8,7 +8,7 @@
 
   
   
-  
+  
 
   
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits