diff options
author | bertagaz <bertagaz@ptitcanardnoir.org> | 2016-11-15 19:11:01 +0100 |
---|---|---|
committer | bertagaz <bertagaz@ptitcanardnoir.org> | 2016-11-15 19:11:01 +0100 |
commit | 74fd7a5a164735324174afeb194b9e9f88e429ed (patch) | |
tree | d2b17b4624fd95ca167d0b3c3d459592f318bebe /wiki/src | |
parent | bda769118d795dbdf5142115de83ae10c8b6604e (diff) | |
parent | b0b138246b1c558d853c05a154d4e97e609dffe4 (diff) |
Merge remote-tracking branch 'origin/stable'
Diffstat (limited to 'wiki/src')
66 files changed, 2281 insertions, 391 deletions
diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index e530905..4b01270 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -200,6 +200,11 @@ Upgrade Tor Browser See the dedicated page: [[tor-browser]] +Upgrade Icedove +--------------- + +See the dedicated page: [[icedove]] + Update PO files --------------- @@ -1116,6 +1121,29 @@ this, and skip what does not make sense for a RC. [[post-release|APT_repository/custom#workflow-post-release]] custom APT repository documentation. Make sure there are upgrade-description files for any new versions that were added. +1. Verify that the snapshots used in the release branch are ok, + e.g. they use the correct snapshots, and they were bumped + appropriately (they should expire a bit after the next release, so + the dates must be ~six weeks in the future). Look carefully at the + output of this command: + + git checkout "$RELEASE_BRANCH" && \ + ( + cd config/APT_snapshots.d && \ + for ARCHIVE in * ; do + SERIAL="$(cat ${ARCHIVE}/serial)" + if [ "${SERIAL}" = 'latest' ]; then + EXPIRY='never' + if [ "${ARCHIVE}" != 'debian-security' ]; then + echo "Warning: origin '${ARCHIVE}' is using the 'latest' snapshot, which is unexpected" >&2 + fi + else + EXPIRY="$(curl --silent "http://time-based.snapshots.deb.tails.boum.org/debian/dists/${RELEASE_BRANCH}/snapshots/${SERIAL}/Release" | sed -n 's/^Valid-Until:\s\+\(.*\)$/\1/p')" + fi + echo "Origin '${ARCHIVE}' uses snapshot '${SERIAL}' which expires on: ${EXPIRY}" + done + ) + 1. Push the resulting branches. 1. Make sure Jenkins manages to build all updated major branches fine: <https://jenkins.tails.boum.org/>. diff --git a/wiki/src/contribute/release_process/icedove.mdwn b/wiki/src/contribute/release_process/icedove.mdwn new file mode 100644 index 0000000..f06b38e --- /dev/null +++ b/wiki/src/contribute/release_process/icedove.mdwn @@ -0,0 +1,82 @@ +[[!meta title="Releasing Icedove"]] + +Until we have +[[!tails_ticket 6156 desc="upstreamed our secure autoconfiguration patches"]] +we have to maintain Icedove ourselves. This means we need to +[track](https://tracker.debian.org/pkg/icedove) new versions hitting +Debian Stable. + +The first time you do this requires some additional steps (WARNING! +this will download almost 2 GiB of data): + +1. Clone [Tails' Icedove repo](http://git.tails.boum.org/icedove/). + +1. Add a remote for Debian: + + git remote add debian-upstream git://anonscm.debian.org/pkg-mozilla/icedove.git + +Let's pretend the scenario is that Icedove 45.3.0-1 has just been +released: + + VERSION=45.3.0-1 + TAG=debian/1%${VERSION}_deb8u1 + +1. `git fetch && git fetch debian-upstream` + +1. Verify the tag (expected to have been made with the key + 8B94 819C 2555 70A3 74B6 2CCD 26E3 C875 A744 20EF): + + git tag -v "${TAG}" + +1. Let's update our branch to the new version: + + git checkout tails/jessie && git merge origin/tails/jessie + git merge --no-edit "${TAG}" + + Now you most likely will have to deal with a merge conflict in + debian/changelog -- just reorder the entries chronologically. Then + let's release a new version: + + TAILS_VERSION="1:${VERSION}~deb8u1+tails1" + DISTRIBUTION="feature-icedove-${VERSION}" + dch --newversion "${TAILS_VERSION}" --force-bad-version \ + --distribution "${DISTRIBUTION}" --force-distribution \ + "Rebuild Icedove with Tails' secure autoconfiguration patches." + git commit debian/changelog \ + -m "document changes and release ${TAILS_VERSION}" + gbp buildpackage --git-debian-branch=tails/jessie \ + --git-sign-tags --git-tag-only + +1. Fetch the Debian sources to be used for the build: + + ICEDOVE_SOURCES="$(mktemp -d)" + GIT_DIR="$(pwd)" + cd "${ICEDOVE_SOURCES}" && \ + apt source icedove="1:${VERSION}" && \ + cp icedove_*.orig*.tar.xz "${GIT_DIR}/.." && \ + cd "${GIT_DIR}" && \ + rm -r "${ICEDOVE_SOURCES}" + + Note: we cannot use the `pristine-tar` branch since Jessie builds + expect split .orig sources for l10n stuff, which is not the case in + Sid, which `pristine-tar` is made for. Or something like + this. Let's not waste time on investigating this. + +1. Build packages: + + gbp buildpackage --git-debian-branch=tails/jessie + +1. Include all sources in the `.changes` file: + + CHANGES_FILE="../icedove_${VERSION}~deb8u1+tails1_i386.changes" + changestool "${CHANGES_FILE}" includeallsources + +1. Git push and upload packages: + + git push origin "${TAG}" tails/jessie + debsign "${CHANGES_FILE}" + dupload --to tails "${CHANGES_FILE}" + + At the moment pushing `TAG` may fail due to + [[!tails_ticket 11531]]. We'll just have to save these tags locally + until when it's solved, and then push... diff --git a/wiki/src/contribute/release_process/test.mdwn b/wiki/src/contribute/release_process/test.mdwn index e39afe1..51b2eb6 100644 --- a/wiki/src/contribute/release_process/test.mdwn +++ b/wiki/src/contribute/release_process/test.mdwn @@ -101,13 +101,10 @@ tracked by tickets prefixed with `todo/test_suite:`. # Icedove * Check mail over IMAP using: - - a "clearnet" IMAP server. - a hidden service IMAP server (e.g. Riseup, zsolxunfmbfuq7wf.onion with SSL). * Check mail over POP using: - - a "clearnet" POP server. - a hidden service POP server (e.g. Riseup, zsolxunfmbfuq7wf.onion with SSL). * Send an email using: - - a "clearnet" SMTP server. - a hidden service SMTP server (see above). * Check that the profile works and is torified: @@ -178,7 +175,7 @@ security critical bugs were fixed. <a id="incremental-upgrades"></a> -# Incremental upgrades (automate: [[!tails_ticket 6309 desc="#6309"]]) +# Incremental upgrades * List the versions from which an upgrade paths to this one is described. In the `stable` or `testing` branch: diff --git a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.de.po b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.de.po index da284f2..f35c520 100644 --- a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.de.po +++ b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-06-06 17:33+0200\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-01-24 16:15+0100\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: \n" @@ -16,6 +16,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.6\n" +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"note\">\n" +"Beware that some E-Mail providers might not work well in Icedove in\n" +"Tails. As an example, GMail will require you to explicitly\n" +"[allow connections from Icedove](https://myaccount.google.com/intro/security)\n" +"and by default protects your account against connections from Tor\n" +"unless you allow them specifically.\n" +"</div>\n" +msgstr "" + #. type: Bullet: '1. ' msgid "" "When starting <span class=\"application\">Icedove</span> for the first time, " @@ -164,17 +176,23 @@ msgstr "" #~ msgid "" #~ " <div class=\"bug\">\n" -#~ " <p>After this first screen, the <a href=\"https://support.mozilla.org/en-US/kb/automatic-account-configuration\">automatic\n" -#~ " account configuration</a> of <span class=\"application\">Icedove</span>\n" -#~ " is currently disabled in Tails for security reasons. You should consult\n" +#~ " <p>After this first screen, the <a href=\"https://support.mozilla.org/" +#~ "en-US/kb/automatic-account-configuration\">automatic\n" +#~ " account configuration</a> of <span class=\"application\">Icedove</" +#~ "span>\n" +#~ " is currently disabled in Tails for security reasons. You should " +#~ "consult\n" #~ " the documentation of your email provider to finish configuring your\n" #~ " email account manually.</p>\n" #~ msgstr "" #~ " <div class=\"bug\">\n" -#~ " <p>Nach diesem ersten Bildschirm ist die <a href=\"https://support.mozilla.org/en-US/kb/automatic-account-configuration\">automatische\n" +#~ " <p>Nach diesem ersten Bildschirm ist die <a href=\"https://support." +#~ "mozilla.org/en-US/kb/automatic-account-configuration\">automatische\n" #~ " Konten-Einrichtung</a> von <span class=\"application\">Icedove</span>\n" -#~ " momentan aus Sicherheitsgründen in Tails deaktiviert. Sie sollten sich auf die\n" -#~ " Dokumentation Ihres E-Mail Anbieters beziehen, um die Einrichtung Ihres\n" +#~ " momentan aus Sicherheitsgründen in Tails deaktiviert. Sie sollten sich " +#~ "auf die\n" +#~ " Dokumentation Ihres E-Mail Anbieters beziehen, um die Einrichtung " +#~ "Ihres\n" #~ " E-Mail-Kontos händisch zu beenden.</p>\n" #, fuzzy diff --git a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fa.po b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fa.po index ce2bed2..435b632 100644 --- a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fa.po +++ b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-06-06 17:33+0200\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,6 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"note\">\n" +"Beware that some E-Mail providers might not work well in Icedove in\n" +"Tails. As an example, GMail will require you to explicitly\n" +"[allow connections from Icedove](https://myaccount.google.com/intro/security)\n" +"and by default protects your account against connections from Tor\n" +"unless you allow them specifically.\n" +"</div>\n" +msgstr "" + #. type: Bullet: '1. ' msgid "" "When starting <span class=\"application\">Icedove</span> for the first time, " diff --git a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fr.po b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fr.po index f2cae02..0f8d736 100644 --- a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fr.po +++ b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2016-06-06 17:33+0200\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-07-05 23:26+0100\n" "Last-Translator: AtomiKe <tails@atomike.ninja>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -16,6 +16,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.6.10\n" +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"note\">\n" +"Beware that some E-Mail providers might not work well in Icedove in\n" +"Tails. As an example, GMail will require you to explicitly\n" +"[allow connections from Icedove](https://myaccount.google.com/intro/security)\n" +"and by default protects your account against connections from Tor\n" +"unless you allow them specifically.\n" +"</div>\n" +msgstr "" + #. type: Bullet: '1. ' msgid "" "When starting <span class=\"application\">Icedove</span> for the first time, " diff --git a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.it.po b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.it.po index 2ae50de..12d323d 100644 --- a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.it.po +++ b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-06-06 17:33+0200\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -16,6 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"note\">\n" +"Beware that some E-Mail providers might not work well in Icedove in\n" +"Tails. As an example, GMail will require you to explicitly\n" +"[allow connections from Icedove](https://myaccount.google.com/intro/security)\n" +"and by default protects your account against connections from Tor\n" +"unless you allow them specifically.\n" +"</div>\n" +msgstr "" + #. type: Bullet: '1. ' msgid "" "When starting <span class=\"application\">Icedove</span> for the first time, " diff --git a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.mdwn b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.mdwn index c6d3523..e81d2da 100644 --- a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.mdwn +++ b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.mdwn @@ -1,3 +1,11 @@ +<div class="note"> +Beware that some E-Mail providers might not work well in Icedove in +Tails. As an example, GMail will require you to explicitly +[allow connections from Icedove](https://myaccount.google.com/intro/security) +and by default protects your account against connections from Tor +unless you allow them specifically. +</div> + 1. When starting <span class="application">Icedove</span> for the first time, an assistant appears to guide you through the process of configuring <span class="application">Icedove</span> to access your diff --git a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.pt.po b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.pt.po index ce2bed2..435b632 100644 --- a/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.pt.po +++ b/wiki/src/doc/anonymous_internet/icedove/account_creation.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-06-06 17:33+0200\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,6 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"note\">\n" +"Beware that some E-Mail providers might not work well in Icedove in\n" +"Tails. As an example, GMail will require you to explicitly\n" +"[allow connections from Icedove](https://myaccount.google.com/intro/security)\n" +"and by default protects your account against connections from Tor\n" +"unless you allow them specifically.\n" +"</div>\n" +msgstr "" + #. type: Bullet: '1. ' msgid "" "When starting <span class=\"application\">Icedove</span> for the first time, " diff --git a/wiki/src/donate.de.po b/wiki/src/donate.de.po index 62de9f8..8ba8ca9 100644 --- a/wiki/src/donate.de.po +++ b/wiki/src/donate.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-10-09 12:50+0200\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-14 21:04-0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -83,12 +83,12 @@ msgstr "" msgid "Thanks!" msgstr "Danke!" -#. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. HTML Variables for PayPal Payments Standard: +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -283,8 +283,8 @@ msgstr "In Dollar spenden" msgid "Recurring donation" msgstr "Wiederkehrende Spenden" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -351,10 +351,10 @@ msgstr "" msgid "One-time donation" msgstr "Einmalige Spende" -#. Note for translators: the following parts need to be translated: -#. - https://tails.boum.org/donate/thanks -#. - https://tails.boum.org/donate/canceled -#. - US +#. Note for translators: the following parts need to be translated: +#. - https://tails.boum.org/donate/thanks +#. - https://tails.boum.org/donate/canceled +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -402,10 +402,10 @@ msgstr "<input type=\"submit\" value=\"Spenden\"/>" msgid "Donate in euros" msgstr "In Euro spenden" -#. Note for translators: the following parts need to be translated: -#. - https://tails.boum.org/donate/thanks -#. - https://tails.boum.org/donate/canceled -#. - US +#. Note for translators: the following parts need to be translated: +#. - https://tails.boum.org/donate/thanks +#. - https://tails.boum.org/donate/canceled +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -450,10 +450,10 @@ msgstr "" "<input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label for=" "\"sub500\">500€</label>" -#. Note for translators: the following parts need to be translated: -#. - https://tails.boum.org/donate/thanks -#. - https://tails.boum.org/donate/canceled -#. - US +#. Note for translators: the following parts need to be translated: +#. - https://tails.boum.org/donate/thanks +#. - https://tails.boum.org/donate/canceled +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" diff --git a/wiki/src/donate.it.po b/wiki/src/donate.it.po index bcc5bed..0cbc7b4 100644 --- a/wiki/src/donate.it.po +++ b/wiki/src/donate.it.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-10-08 15:47+0300\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-13 22:28+0200\n" +"Last-Translator: boyska <piuttosto@logorroici.org>\n" +"Language-Team: \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Last-Translator: boyska <piuttosto@logorroici.org>\n" -"Language-Team: \n" "X-Generator: Poedit 1.8.9\n" #. type: Content of: outside any tag (error?) @@ -82,12 +82,12 @@ msgstr "" msgid "Thanks!" msgstr "Grazie!" -#. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. HTML Variables for PayPal Payments Standard: +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -282,8 +282,8 @@ msgstr "Dona in dollari" msgid "Recurring donation" msgstr "Donazione ricorrente" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -350,10 +350,10 @@ msgstr "" msgid "One-time donation" msgstr "Una singola donazione" -#. Note for translators: the following parts need to be translated: -#. - https://tails.boum.org/donate/thanks -#. - https://tails.boum.org/donate/canceled -#. - US +#. Note for translators: the following parts need to be translated: +#. - https://tails.boum.org/donate/thanks +#. - https://tails.boum.org/donate/canceled +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -400,10 +400,10 @@ msgstr "<input type=\"submit\" value=\"Donate\"/>" msgid "Donate in euros" msgstr "Dona in euro" -#. Note for translators: the following parts need to be translated: -#. - https://tails.boum.org/donate/thanks -#. - https://tails.boum.org/donate/canceled -#. - US +#. Note for translators: the following parts need to be translated: +#. - https://tails.boum.org/donate/thanks +#. - https://tails.boum.org/donate/canceled +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -448,10 +448,10 @@ msgstr "" "<input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label for=" "\"sub500\">500€</label>" -#. Note for translators: the following parts need to be translated: -#. - https://tails.boum.org/donate/thanks -#. - https://tails.boum.org/donate/canceled -#. - US +#. Note for translators: the following parts need to be translated: +#. - https://tails.boum.org/donate/thanks +#. - https://tails.boum.org/donate/canceled +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" diff --git a/wiki/src/donate/canceled.it.po b/wiki/src/donate/canceled.it.po index 0181066..2a1df14 100644 --- a/wiki/src/donate/canceled.it.po +++ b/wiki/src/donate/canceled.it.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-09-24 11:01+0300\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-13 21:48+0200\n" +"Last-Translator: transitails <transitails@inventati.org>\n" +"Language-Team: \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Last-Translator: transitails <transitails@inventati.org>\n" -"Language-Team: \n" "X-Generator: Poedit 1.8.7.1\n" #. type: Plain text diff --git a/wiki/src/donate/thanks.de.po b/wiki/src/donate/thanks.de.po index 1c20394..9f616b1 100644 --- a/wiki/src/donate/thanks.de.po +++ b/wiki/src/donate/thanks.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-09-25 22:28+0300\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-15 20:04-0000\n" "Last-Translator: spriver <spriver@autistici.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,7 +46,7 @@ msgstr "" "Zeigen Sie Ihren Freunden, dass Ihnen die Privatsphäre und die Freiheit des " "Internets wichtig sind und bringen Sie andere dazu, es Ihnen gleichzutun!" -#. Maximum tweet length +#. Maximum tweet length #. type: Content of: <div><div> msgid "" "<a href=\"https://twitter.com/intent/tweet?text=I+donate+to+@Tails_live" diff --git a/wiki/src/donate/thanks.fr.po b/wiki/src/donate/thanks.fr.po index cb35654..3c7360a 100644 --- a/wiki/src/donate/thanks.fr.po +++ b/wiki/src/donate/thanks.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2016-09-25 22:28+0300\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-09 13:05+0100\n" "Last-Translator: AtomiKe <tails@atomike.ninja>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -46,7 +46,7 @@ msgstr "" "Montrez à vos connaissances que la vie privée et la liberté sur Internet " "vous tiennent à cœur et encouragez d'autres personnes à faire de même !" -#. Maximum tweet length +#. Maximum tweet length #. type: Content of: <div><div> msgid "" "<a href=\"https://twitter.com/intent/tweet?text=I+donate+to+@Tails_live" diff --git a/wiki/src/donate/thanks.it.po b/wiki/src/donate/thanks.it.po index 88ab08e..e802914 100644 --- a/wiki/src/donate/thanks.it.po +++ b/wiki/src/donate/thanks.it.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-09-25 22:28+0300\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-13 22:15+0200\n" +"Last-Translator: boyska <piuttosto@logorroici.org>\n" +"Language-Team: \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Last-Translator: boyska <piuttosto@logorroici.org>\n" -"Language-Team: \n" "X-Generator: Poedit 1.8.9\n" #. type: Content of: outside any tag (error?) @@ -48,7 +48,7 @@ msgstr "" "Mostra ai tuoi amici che tu ti preoccupi per la privacy e la libertà in " "internet e incoraggia gli altri a fare lo stesso!" -#. Maximum tweet length +#. Maximum tweet length #. type: Content of: <div><div> msgid "" "<a href=\"https://twitter.com/intent/tweet?text=I+donate+to+@Tails_live" @@ -77,13 +77,12 @@ msgstr "" "+vuoi+altri+leak,+dona+a+@Tails_live!+https://tails.boum.org/donate#leaks\" " "class=\"tweet\" target=\"_blank\">Se, come me, vuoi altri leak,dona a " "@Tails_live! </a> <a href=\"https://twitter.com/intent/tweet?text=Sostengo" -"+@Tails_live+per+aiutare+giornalisti+e+difensori+dei+diritti" -"+umani+a+fare+il+loro+lavoro+in+modo+sicuro:+https://tails.boum.org/" -"donate#hrd\" class=\"tweet\" target=\"_blank\"> Sostengo " -"@Tails_live per aiutare giornalisti e difensori dei diritti umani a fare il " -"loro lavoro in modo sicuro.</a> <a href=\"https://twitter.com/intent/tweet?" -"text=It+takes+more+than+two+to+do+the+anonymity+dance.+Join+me+in+donating+to" -"+@Tails_live+to+keep+dancing:+https://tails.boum.org/donate#dance\" class=" -"\"tweet\" target=\"_blank\"> Ci vogliono più di due persone per fare la " -"danza dell'anonimato. Unisciti a me nel sostenere @Tails_live per continuare " -"a ballare. </a>" +"+@Tails_live+per+aiutare+giornalisti+e+difensori+dei+diritti+umani+a+fare+il" +"+loro+lavoro+in+modo+sicuro:+https://tails.boum.org/donate#hrd\" class=" +"\"tweet\" target=\"_blank\"> Sostengo @Tails_live per aiutare giornalisti e " +"difensori dei diritti umani a fare il loro lavoro in modo sicuro.</a> <a " +"href=\"https://twitter.com/intent/tweet?text=It+takes+more+than+two+to+do+the" +"+anonymity+dance.+Join+me+in+donating+to+@Tails_live+to+keep+dancing:" +"+https://tails.boum.org/donate#dance\" class=\"tweet\" target=\"_blank\"> Ci " +"vogliono più di due persone per fare la danza dell'anonimato. Unisciti a me " +"nel sostenere @Tails_live per continuare a ballare. </a>" diff --git a/wiki/src/home.de.po b/wiki/src/home.de.po index 39107db..19477d2 100644 --- a/wiki/src/home.de.po +++ b/wiki/src/home.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2016-10-05 17:51+0000\n" +"POT-Creation-Date: 2016-11-13 08:20+0000\n" "PO-Revision-Date: 2016-10-14 14:27-0000\n" "Last-Translator: spriver <spriver@autistici.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,9 +24,9 @@ msgstr "" "[[!meta title=\"Liebe Tails-Nutzerin, lieber Tails-Nutzer\"]] [[!meta robots=" "\"noindex\"]] [[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]]" -#. Note for translators: You can use <span class="twolines"> -#. if your -#. translation of the label below is long and gets split into two lines. +#. Note for translators: You can use <span class="twolines"> +#. if your +#. translation of the label below is long and gets split into two lines. #. type: Content of: <div> msgid "" "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" diff --git a/wiki/src/inc/stable_i386_date.html b/wiki/src/inc/stable_i386_date.html index ccc8c9c..a5d952a 100644 --- a/wiki/src/inc/stable_i386_date.html +++ b/wiki/src/inc/stable_i386_date.html @@ -1 +1 @@ -2016-09-20
\ No newline at end of file +2016-11-15
\ No newline at end of file diff --git a/wiki/src/inc/stable_i386_gpg_signature_output.html b/wiki/src/inc/stable_i386_gpg_signature_output.html index 5ecce20..0229c4c 100644 --- a/wiki/src/inc/stable_i386_gpg_signature_output.html +++ b/wiki/src/inc/stable_i386_gpg_signature_output.html @@ -1,6 +1,6 @@ -gpg: Signature made 2016-09-20T17:24:50 CEST<br/> -gpg: using RSA key 0x98FEC6BC752A3DB6<br/> -gpg: Good signature from "Tails developers (offline long-term identity key) <tails@boum.org>" [full]<br/> -gpg: aka "Tails developers <tails@boum.org>" [unknown]<br/> +gpg: Signature made Sun Nov 13 17:08:49 2016 CET<br/> +gpg: using RSA key 0xAF292B44A0EDAA41<br/> +gpg: Good signature from "Tails developers (offline long-term identity key) <tails@boum.org>" [marginal]<br/> +gpg: aka "Tails developers <tails@boum.org>" [full]<br/> Primary key fingerprint: A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC D84F<br/> - Subkey fingerprint: BA2C 222F 44AC 00ED 9899 3893 98FE C6BC 752A 3DB6<br/> + Subkey fingerprint: 7919 2EE2 2044 9071 F589 AC00 AF29 2B44 A0ED AA41<br/> diff --git a/wiki/src/inc/stable_i386_gpg_verify.html b/wiki/src/inc/stable_i386_gpg_verify.html index 4fb5e52..613ecaf 100644 --- a/wiki/src/inc/stable_i386_gpg_verify.html +++ b/wiki/src/inc/stable_i386_gpg_verify.html @@ -1 +1 @@ -gpg --keyid-format 0xlong --verify tails-i386-2.6.iso.sig tails-i386-2.6.iso +gpg --keyid-format 0xlong --verify tails-i386-2.7.iso.sig tails-i386-2.7.iso diff --git a/wiki/src/inc/stable_i386_iso_sig_url.html b/wiki/src/inc/stable_i386_iso_sig_url.html index 8305d4a..ca0af04 100644 --- a/wiki/src/inc/stable_i386_iso_sig_url.html +++ b/wiki/src/inc/stable_i386_iso_sig_url.html @@ -1 +1 @@ -https://tails.boum.org/torrents/files/tails-i386-2.6.iso.sig +https://tails.boum.org/torrents/files/tails-i386-2.7.iso.sig diff --git a/wiki/src/inc/stable_i386_iso_url.html b/wiki/src/inc/stable_i386_iso_url.html index f03fa88..2ab687a 100644 --- a/wiki/src/inc/stable_i386_iso_url.html +++ b/wiki/src/inc/stable_i386_iso_url.html @@ -1 +1 @@ -http://dl.amnesia.boum.org/tails/stable/tails-i386-2.6/tails-i386-2.6.iso +http://dl.amnesia.boum.org/tails/stable/tails-i386-2.7/tails-i386-2.7.iso diff --git a/wiki/src/inc/stable_i386_release_notes.de.po b/wiki/src/inc/stable_i386_release_notes.de.po index 2fed7a6..96d4ca4 100644 --- a/wiki/src/inc/stable_i386_release_notes.de.po +++ b/wiki/src/inc/stable_i386_release_notes.de.po @@ -19,5 +19,5 @@ msgstr "" #. Note for translators: make sure that the translation of this link #. integrates well with /doc/first_steps/upgrade. #. type: Content of: outside any tag (error?) -msgid "[[release notes|news/version_2.6]]" -msgstr "[[Versionshinweise|news/version_2.6]]" +msgid "[[release notes|news/version_2.7]]" +msgstr "[[Versionshinweise|news/version_2.7]]" diff --git a/wiki/src/inc/stable_i386_release_notes.fa.po b/wiki/src/inc/stable_i386_release_notes.fa.po index 71830ec..6bd2698 100644 --- a/wiki/src/inc/stable_i386_release_notes.fa.po +++ b/wiki/src/inc/stable_i386_release_notes.fa.po @@ -23,6 +23,6 @@ msgstr "" #. integrates well with /doc/first_steps/upgrade. #. type: Content of: outside any tag (error?) #, fuzzy -#| msgid "[[release notes|news/version_2.6]]" -msgid "[[release notes|news/version_2.6]]" -msgstr "[[یادداشتهای انتشار|news/version_2.6]]" +#| msgid "[[release notes|news/version_2.7]]" +msgid "[[release notes|news/version_2.7]]" +msgstr "[[یادداشتهای انتشار|news/version_2.7]]" diff --git a/wiki/src/inc/stable_i386_release_notes.fr.po b/wiki/src/inc/stable_i386_release_notes.fr.po index 19a75c9..6b54a33 100644 --- a/wiki/src/inc/stable_i386_release_notes.fr.po +++ b/wiki/src/inc/stable_i386_release_notes.fr.po @@ -19,5 +19,5 @@ msgstr "" #. Note for translators: make sure that the translation of this link #. integrates well with /doc/first_steps/upgrade. #. type: Content of: outside any tag (error?) -msgid "[[release notes|news/version_2.6]]" -msgstr "[[notes de version|news/version_2.6]]" +msgid "[[release notes|news/version_2.7]]" +msgstr "[[notes de version|news/version_2.7]]" diff --git a/wiki/src/inc/stable_i386_release_notes.html b/wiki/src/inc/stable_i386_release_notes.html index 5dbfa64..07def70 100644 --- a/wiki/src/inc/stable_i386_release_notes.html +++ b/wiki/src/inc/stable_i386_release_notes.html @@ -1,4 +1,4 @@ <!-- Note for translators: make sure that the translation of this link integrates well with /doc/first_steps/upgrade. --> -[[release notes|news/version_2.6]] +[[release notes|news/version_2.7]] diff --git a/wiki/src/inc/stable_i386_release_notes.it.po b/wiki/src/inc/stable_i386_release_notes.it.po index f95bab3..14fd955 100644 --- a/wiki/src/inc/stable_i386_release_notes.it.po +++ b/wiki/src/inc/stable_i386_release_notes.it.po @@ -19,5 +19,5 @@ msgstr "" #. Note for translators: make sure that the translation of this link #. integrates well with /doc/first_steps/upgrade. #. type: Content of: outside any tag (error?) -msgid "[[release notes|news/version_2.6]]" +msgid "[[release notes|news/version_2.7]]" msgstr "" diff --git a/wiki/src/inc/stable_i386_release_notes.pt.po b/wiki/src/inc/stable_i386_release_notes.pt.po index 817d7e9..b1721a7 100644 --- a/wiki/src/inc/stable_i386_release_notes.pt.po +++ b/wiki/src/inc/stable_i386_release_notes.pt.po @@ -18,5 +18,5 @@ msgstr "" #. Note for translators: make sure that the translation of this link #. integrates well with /doc/first_steps/upgrade. #. type: Content of: outside any tag (error?) -msgid "[[release notes|news/version_2.6]]" -msgstr "[[notas de lançamento|news/version_2.6]]" +msgid "[[release notes|news/version_2.7]]" +msgstr "[[notas de lançamento|news/version_2.7]]" diff --git a/wiki/src/inc/stable_i386_torrent_url.html b/wiki/src/inc/stable_i386_torrent_url.html index 1e823aa..3134098 100644 --- a/wiki/src/inc/stable_i386_torrent_url.html +++ b/wiki/src/inc/stable_i386_torrent_url.html @@ -1 +1 @@ -https://tails.boum.org/torrents/files/tails-i386-2.6.torrent +https://tails.boum.org/torrents/files/tails-i386-2.7.torrent diff --git a/wiki/src/inc/stable_i386_version.html b/wiki/src/inc/stable_i386_version.html index 5154b3f..1effb00 100644 --- a/wiki/src/inc/stable_i386_version.html +++ b/wiki/src/inc/stable_i386_version.html @@ -1 +1 @@ -2.6 +2.7 diff --git a/wiki/src/install/v1/Tails/i386/stable/latest.yml b/wiki/src/install/v1/Tails/i386/stable/latest.yml index 230953e..d75b4be 100644 --- a/wiki/src/install/v1/Tails/i386/stable/latest.yml +++ b/wiki/src/install/v1/Tails/i386/stable/latest.yml @@ -2,8 +2,8 @@ build-target: i386 channel: stable product-name: Tails -version: '2.6' +version: '2.7' target-files: -- sha256: b15a243d196c1a351e6f07db0774353f12d54cad243a09bb92234138596d22a6 +- sha256: 164dd41ddc3c1713df570e2379c35796edea93b2561afe82eb112252ec078651 size: 1167990784 - url: http://dl.amnesia.boum.org/tails/stable/tails-i386-2.6/tails-i386-2.6.iso + url: http://dl.amnesia.boum.org/tails/stable/tails-i386-2.7/tails-i386-2.7.iso diff --git a/wiki/src/news/version_2.7.de.po b/wiki/src/news/version_2.7.de.po new file mode 100644 index 0000000..770ed36 --- /dev/null +++ b/wiki/src/news/version_2.7.de.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue Nov 15 15:23:42 2016\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 2.7 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"issues|security/Numerous_security_holes_in_2.6]] and users should upgrade as " +"soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Ship LetsEncrypt intermedite SSL certificate so that our tools will be able " +"to go on authenticating our website when its certifcate will be updated." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor* to " +"[0.2.8.9](https://blog.torproject.org/blog/tor-0289-released-important-fixes)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor Browser* to " +"[6.0.6](https://blog.torproject.org/blog/tor-browser-606-released)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Upgrade to Linux 4.7." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Icedove* to " +"[45.4.0](https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/)." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Synaptic installs packages with the correct architecture." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Set default spelling to en_US in Icedove." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Users setting their Tor Browser security slider to High will have to click " +"on a link to see the result of the search they done with the search box." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 2.7" +msgstr "" + +#. type: Plain text +msgid "- To install, follow our [[installation instructions|install]]." +msgstr "" + +#. type: Plain text +msgid "- To upgrade, an automatic upgrade is available from 2.6 to 2.7." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" If you cannot do an automatic upgrade or if you fail to start after an\n" +" automatic upgrade, please try to do a [[manual upgrade|upgrade]].\n" +msgstr "" + +#. type: Plain text +msgid "- [[Download Tails 2.7.|install/download]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 2.8 is [[scheduled|contribute/calendar]] for December 13." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +msgid "" +"We need your help and there are many ways to [[contribute to " +"Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to " +"us|about/contact#tails-dev]]!" +msgstr "" diff --git a/wiki/src/news/version_2.7.fa.po b/wiki/src/news/version_2.7.fa.po new file mode 100644 index 0000000..770ed36 --- /dev/null +++ b/wiki/src/news/version_2.7.fa.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue Nov 15 15:23:42 2016\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 2.7 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"issues|security/Numerous_security_holes_in_2.6]] and users should upgrade as " +"soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Ship LetsEncrypt intermedite SSL certificate so that our tools will be able " +"to go on authenticating our website when its certifcate will be updated." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor* to " +"[0.2.8.9](https://blog.torproject.org/blog/tor-0289-released-important-fixes)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor Browser* to " +"[6.0.6](https://blog.torproject.org/blog/tor-browser-606-released)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Upgrade to Linux 4.7." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Icedove* to " +"[45.4.0](https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/)." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Synaptic installs packages with the correct architecture." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Set default spelling to en_US in Icedove." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Users setting their Tor Browser security slider to High will have to click " +"on a link to see the result of the search they done with the search box." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 2.7" +msgstr "" + +#. type: Plain text +msgid "- To install, follow our [[installation instructions|install]]." +msgstr "" + +#. type: Plain text +msgid "- To upgrade, an automatic upgrade is available from 2.6 to 2.7." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" If you cannot do an automatic upgrade or if you fail to start after an\n" +" automatic upgrade, please try to do a [[manual upgrade|upgrade]].\n" +msgstr "" + +#. type: Plain text +msgid "- [[Download Tails 2.7.|install/download]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 2.8 is [[scheduled|contribute/calendar]] for December 13." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +msgid "" +"We need your help and there are many ways to [[contribute to " +"Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to " +"us|about/contact#tails-dev]]!" +msgstr "" diff --git a/wiki/src/news/version_2.7.fr.po b/wiki/src/news/version_2.7.fr.po new file mode 100644 index 0000000..770ed36 --- /dev/null +++ b/wiki/src/news/version_2.7.fr.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue Nov 15 15:23:42 2016\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 2.7 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"issues|security/Numerous_security_holes_in_2.6]] and users should upgrade as " +"soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Ship LetsEncrypt intermedite SSL certificate so that our tools will be able " +"to go on authenticating our website when its certifcate will be updated." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor* to " +"[0.2.8.9](https://blog.torproject.org/blog/tor-0289-released-important-fixes)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor Browser* to " +"[6.0.6](https://blog.torproject.org/blog/tor-browser-606-released)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Upgrade to Linux 4.7." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Icedove* to " +"[45.4.0](https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/)." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Synaptic installs packages with the correct architecture." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Set default spelling to en_US in Icedove." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Users setting their Tor Browser security slider to High will have to click " +"on a link to see the result of the search they done with the search box." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 2.7" +msgstr "" + +#. type: Plain text +msgid "- To install, follow our [[installation instructions|install]]." +msgstr "" + +#. type: Plain text +msgid "- To upgrade, an automatic upgrade is available from 2.6 to 2.7." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" If you cannot do an automatic upgrade or if you fail to start after an\n" +" automatic upgrade, please try to do a [[manual upgrade|upgrade]].\n" +msgstr "" + +#. type: Plain text +msgid "- [[Download Tails 2.7.|install/download]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 2.8 is [[scheduled|contribute/calendar]] for December 13." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +msgid "" +"We need your help and there are many ways to [[contribute to " +"Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to " +"us|about/contact#tails-dev]]!" +msgstr "" diff --git a/wiki/src/news/version_2.7.it.po b/wiki/src/news/version_2.7.it.po new file mode 100644 index 0000000..770ed36 --- /dev/null +++ b/wiki/src/news/version_2.7.it.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue Nov 15 15:23:42 2016\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 2.7 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"issues|security/Numerous_security_holes_in_2.6]] and users should upgrade as " +"soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Ship LetsEncrypt intermedite SSL certificate so that our tools will be able " +"to go on authenticating our website when its certifcate will be updated." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor* to " +"[0.2.8.9](https://blog.torproject.org/blog/tor-0289-released-important-fixes)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor Browser* to " +"[6.0.6](https://blog.torproject.org/blog/tor-browser-606-released)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Upgrade to Linux 4.7." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Icedove* to " +"[45.4.0](https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/)." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Synaptic installs packages with the correct architecture." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Set default spelling to en_US in Icedove." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Users setting their Tor Browser security slider to High will have to click " +"on a link to see the result of the search they done with the search box." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 2.7" +msgstr "" + +#. type: Plain text +msgid "- To install, follow our [[installation instructions|install]]." +msgstr "" + +#. type: Plain text +msgid "- To upgrade, an automatic upgrade is available from 2.6 to 2.7." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" If you cannot do an automatic upgrade or if you fail to start after an\n" +" automatic upgrade, please try to do a [[manual upgrade|upgrade]].\n" +msgstr "" + +#. type: Plain text +msgid "- [[Download Tails 2.7.|install/download]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 2.8 is [[scheduled|contribute/calendar]] for December 13." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +msgid "" +"We need your help and there are many ways to [[contribute to " +"Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to " +"us|about/contact#tails-dev]]!" +msgstr "" diff --git a/wiki/src/news/version_2.7.mdwn b/wiki/src/news/version_2.7.mdwn new file mode 100644 index 0000000..43007f3 --- /dev/null +++ b/wiki/src/news/version_2.7.mdwn @@ -0,0 +1,57 @@ +[[!meta date="Tue Nov 15 15:23:42 2016"]] +[[!meta title="Tails 2.7 is out"]] +[[!tag announce]] + +This release fixes [[many security +issues|security/Numerous_security_holes_in_2.6]] and users should +upgrade as soon as possible. + +[[!toc levels=1]] + +# Changes + +## New features + + - Ship LetsEncrypt intermedite SSL certificate so that our tools will be + able to go on authenticating our website when its certifcate will be updated. + +## Upgrades and changes + + - Upgrade *Tor* to [0.2.8.9](https://blog.torproject.org/blog/tor-0289-released-important-fixes). + + - Upgrade *Tor Browser* to [6.0.6](https://blog.torproject.org/blog/tor-browser-606-released). + + - Upgrade to Linux 4.7. + + - Upgrade *Icedove* to [45.4.0](https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/). + +## Fixed problems + + - Synaptic installs packages with the correct architecture. + - Set default spelling to en_US in Icedove. + +# Known issues + + - Users setting their Tor Browser security slider to High will have to click + on a link to see the result of the search they done with the search box. + +# Get Tails 2.7 + +- To install, follow our [[installation instructions|install]]. + +- To upgrade, an automatic upgrade is available from 2.6 to 2.7. + + If you cannot do an automatic upgrade or if you fail to start after an + automatic upgrade, please try to do a [[manual upgrade|upgrade]]. + +- [[Download Tails 2.7.|install/download]] + +# What's coming up? + +Tails 2.8 is [[scheduled|contribute/calendar]] for December 13. + +Have a look at our [[!tails_roadmap]] to see where we are heading to. + +We need your help and there are many ways to [[contribute to +Tails|contribute]] ([[donating|donate]] is only one of +them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_2.7.pt.po b/wiki/src/news/version_2.7.pt.po new file mode 100644 index 0000000..770ed36 --- /dev/null +++ b/wiki/src/news/version_2.7.pt.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue Nov 15 15:23:42 2016\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 2.7 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"issues|security/Numerous_security_holes_in_2.6]] and users should upgrade as " +"soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Ship LetsEncrypt intermedite SSL certificate so that our tools will be able " +"to go on authenticating our website when its certifcate will be updated." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Upgrades and changes" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor* to " +"[0.2.8.9](https://blog.torproject.org/blog/tor-0289-released-important-fixes)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Tor Browser* to " +"[6.0.6](https://blog.torproject.org/blog/tor-browser-606-released)." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Upgrade to Linux 4.7." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Upgrade *Icedove* to " +"[45.4.0](https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/)." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Synaptic installs packages with the correct architecture." +msgstr "" + +#. type: Bullet: ' - ' +msgid "Set default spelling to en_US in Icedove." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"Users setting their Tor Browser security slider to High will have to click " +"on a link to see the result of the search they done with the search box." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 2.7" +msgstr "" + +#. type: Plain text +msgid "- To install, follow our [[installation instructions|install]]." +msgstr "" + +#. type: Plain text +msgid "- To upgrade, an automatic upgrade is available from 2.6 to 2.7." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" If you cannot do an automatic upgrade or if you fail to start after an\n" +" automatic upgrade, please try to do a [[manual upgrade|upgrade]].\n" +msgstr "" + +#. type: Plain text +msgid "- [[Download Tails 2.7.|install/download]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 2.8 is [[scheduled|contribute/calendar]] for December 13." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" + +#. type: Plain text +msgid "" +"We need your help and there are many ways to [[contribute to " +"Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to " +"us|about/contact#tails-dev]]!" +msgstr "" diff --git a/wiki/src/security/Numerous_security_holes_in_2.6.de.po b/wiki/src/security/Numerous_security_holes_in_2.6.de.po new file mode 100644 index 0000000..1e82cfb --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_2.6.de.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:27+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 15 Nov 2016 15:23:42 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Numerous security holes in Tails 2.7\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag security/fixed]]\n" +msgstr "" + +#. type: Plain text +msgid "Several security holes that affect Tails 2.6 are now fixed in Tails 2.7." +msgstr "" + +#. type: Plain text +msgid "" +"We **strongly** encourage you to [[upgrade to Tails 2.7|news/version_2.7]] " +"as soon as possible." +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Details\n" +msgstr "" + +#. type: Bullet: '* ' +msgid "linux [[!debsa2016 3696]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tor [[!debsa2016 3694]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "Tor Browser: [[!mfsa2016 XX]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "icedove [[!debsa2016 3690]] and [[!debsa2016 3686]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "pillow [[!debsa2016 3710]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libxslt [[!debsa2016 3709]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "mat [[!debsa2016 3708]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "openjdk-7 [[!debsa2016 3707]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "curl [[!debsa2016 3705]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "bind9 [[!debsa2016 3680]] and [[!debsa2016 3703]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tar [[!debsa2016 3702]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libgd2 [[!debsa2016 3693]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "ghostscript [[!debsa2016 3691]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nss [[!debsa2016 3688]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nspr [[!debsa2016 3687]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libav [[!debsa2016 3685]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "c-ares [[!debsa2016 3682]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libarchive [[!debsa2016 3677]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "unadf [[!debsa2016 3676]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "imagemagick [[!debsa2016 3675]]" +msgstr "" diff --git a/wiki/src/security/Numerous_security_holes_in_2.6.fa.po b/wiki/src/security/Numerous_security_holes_in_2.6.fa.po new file mode 100644 index 0000000..1e82cfb --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_2.6.fa.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:27+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 15 Nov 2016 15:23:42 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Numerous security holes in Tails 2.7\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag security/fixed]]\n" +msgstr "" + +#. type: Plain text +msgid "Several security holes that affect Tails 2.6 are now fixed in Tails 2.7." +msgstr "" + +#. type: Plain text +msgid "" +"We **strongly** encourage you to [[upgrade to Tails 2.7|news/version_2.7]] " +"as soon as possible." +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Details\n" +msgstr "" + +#. type: Bullet: '* ' +msgid "linux [[!debsa2016 3696]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tor [[!debsa2016 3694]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "Tor Browser: [[!mfsa2016 XX]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "icedove [[!debsa2016 3690]] and [[!debsa2016 3686]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "pillow [[!debsa2016 3710]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libxslt [[!debsa2016 3709]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "mat [[!debsa2016 3708]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "openjdk-7 [[!debsa2016 3707]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "curl [[!debsa2016 3705]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "bind9 [[!debsa2016 3680]] and [[!debsa2016 3703]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tar [[!debsa2016 3702]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libgd2 [[!debsa2016 3693]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "ghostscript [[!debsa2016 3691]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nss [[!debsa2016 3688]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nspr [[!debsa2016 3687]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libav [[!debsa2016 3685]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "c-ares [[!debsa2016 3682]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libarchive [[!debsa2016 3677]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "unadf [[!debsa2016 3676]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "imagemagick [[!debsa2016 3675]]" +msgstr "" diff --git a/wiki/src/security/Numerous_security_holes_in_2.6.fr.po b/wiki/src/security/Numerous_security_holes_in_2.6.fr.po new file mode 100644 index 0000000..1e82cfb --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_2.6.fr.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:27+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 15 Nov 2016 15:23:42 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Numerous security holes in Tails 2.7\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag security/fixed]]\n" +msgstr "" + +#. type: Plain text +msgid "Several security holes that affect Tails 2.6 are now fixed in Tails 2.7." +msgstr "" + +#. type: Plain text +msgid "" +"We **strongly** encourage you to [[upgrade to Tails 2.7|news/version_2.7]] " +"as soon as possible." +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Details\n" +msgstr "" + +#. type: Bullet: '* ' +msgid "linux [[!debsa2016 3696]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tor [[!debsa2016 3694]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "Tor Browser: [[!mfsa2016 XX]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "icedove [[!debsa2016 3690]] and [[!debsa2016 3686]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "pillow [[!debsa2016 3710]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libxslt [[!debsa2016 3709]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "mat [[!debsa2016 3708]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "openjdk-7 [[!debsa2016 3707]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "curl [[!debsa2016 3705]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "bind9 [[!debsa2016 3680]] and [[!debsa2016 3703]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tar [[!debsa2016 3702]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libgd2 [[!debsa2016 3693]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "ghostscript [[!debsa2016 3691]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nss [[!debsa2016 3688]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nspr [[!debsa2016 3687]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libav [[!debsa2016 3685]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "c-ares [[!debsa2016 3682]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libarchive [[!debsa2016 3677]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "unadf [[!debsa2016 3676]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "imagemagick [[!debsa2016 3675]]" +msgstr "" diff --git a/wiki/src/security/Numerous_security_holes_in_2.6.it.po b/wiki/src/security/Numerous_security_holes_in_2.6.it.po new file mode 100644 index 0000000..1e82cfb --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_2.6.it.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:27+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 15 Nov 2016 15:23:42 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Numerous security holes in Tails 2.7\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag security/fixed]]\n" +msgstr "" + +#. type: Plain text +msgid "Several security holes that affect Tails 2.6 are now fixed in Tails 2.7." +msgstr "" + +#. type: Plain text +msgid "" +"We **strongly** encourage you to [[upgrade to Tails 2.7|news/version_2.7]] " +"as soon as possible." +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Details\n" +msgstr "" + +#. type: Bullet: '* ' +msgid "linux [[!debsa2016 3696]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tor [[!debsa2016 3694]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "Tor Browser: [[!mfsa2016 XX]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "icedove [[!debsa2016 3690]] and [[!debsa2016 3686]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "pillow [[!debsa2016 3710]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libxslt [[!debsa2016 3709]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "mat [[!debsa2016 3708]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "openjdk-7 [[!debsa2016 3707]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "curl [[!debsa2016 3705]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "bind9 [[!debsa2016 3680]] and [[!debsa2016 3703]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tar [[!debsa2016 3702]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libgd2 [[!debsa2016 3693]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "ghostscript [[!debsa2016 3691]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nss [[!debsa2016 3688]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nspr [[!debsa2016 3687]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libav [[!debsa2016 3685]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "c-ares [[!debsa2016 3682]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libarchive [[!debsa2016 3677]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "unadf [[!debsa2016 3676]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "imagemagick [[!debsa2016 3675]]" +msgstr "" diff --git a/wiki/src/security/Numerous_security_holes_in_2.6.mdwn b/wiki/src/security/Numerous_security_holes_in_2.6.mdwn new file mode 100644 index 0000000..e75ee01 --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_2.6.mdwn @@ -0,0 +1,33 @@ +[[!meta date="Tue, 15 Nov 2016 15:23:42 +0000"]] +[[!meta title="Numerous security holes in Tails 2.7"]] + +[[!tag security/fixed]] + +Several security holes that affect Tails 2.6 are now fixed in Tails 2.7. + +We **strongly** encourage you to +[[upgrade to Tails 2.7|news/version_2.7]] as soon as possible. + +Details +======= + +* linux [[!debsa2016 3696]] +* tor [[!debsa2016 3694]] +* Tor Browser: [[!mfsa2016 90]] +* icedove [[!debsa2016 3690]] and [[!debsa2016 3686]] +* pillow [[!debsa2016 3710]] +* libxslt [[!debsa2016 3709]] +* mat [[!debsa2016 3708]] +* openjdk-7 [[!debsa2016 3707]] +* curl [[!debsa2016 3705]] +* bind9 [[!debsa2016 3680]] and [[!debsa2016 3703]] +* tar [[!debsa2016 3702]] +* libgd2 [[!debsa2016 3693]] +* ghostscript [[!debsa2016 3691]] +* nss [[!debsa2016 3688]] +* nspr [[!debsa2016 3687]] +* libav [[!debsa2016 3685]] +* c-ares [[!debsa2016 3682]] +* libarchive [[!debsa2016 3677]] +* unadf [[!debsa2016 3676]] +* imagemagick [[!debsa2016 3675]] diff --git a/wiki/src/security/Numerous_security_holes_in_2.6.pt.po b/wiki/src/security/Numerous_security_holes_in_2.6.pt.po new file mode 100644 index 0000000..1e82cfb --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_2.6.pt.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2016-11-13 23:27+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 15 Nov 2016 15:23:42 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Numerous security holes in Tails 2.7\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!tag security/fixed]]\n" +msgstr "" + +#. type: Plain text +msgid "Several security holes that affect Tails 2.6 are now fixed in Tails 2.7." +msgstr "" + +#. type: Plain text +msgid "" +"We **strongly** encourage you to [[upgrade to Tails 2.7|news/version_2.7]] " +"as soon as possible." +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Details\n" +msgstr "" + +#. type: Bullet: '* ' +msgid "linux [[!debsa2016 3696]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tor [[!debsa2016 3694]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "Tor Browser: [[!mfsa2016 XX]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "icedove [[!debsa2016 3690]] and [[!debsa2016 3686]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "pillow [[!debsa2016 3710]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libxslt [[!debsa2016 3709]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "mat [[!debsa2016 3708]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "openjdk-7 [[!debsa2016 3707]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "curl [[!debsa2016 3705]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "bind9 [[!debsa2016 3680]] and [[!debsa2016 3703]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "tar [[!debsa2016 3702]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libgd2 [[!debsa2016 3693]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "ghostscript [[!debsa2016 3691]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nss [[!debsa2016 3688]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "nspr [[!debsa2016 3687]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libav [[!debsa2016 3685]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "c-ares [[!debsa2016 3682]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "libarchive [[!debsa2016 3677]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "unadf [[!debsa2016 3676]]" +msgstr "" + +#. type: Bullet: '* ' +msgid "imagemagick [[!debsa2016 3675]]" +msgstr "" diff --git a/wiki/src/support/known_issues.de.po b/wiki/src/support/known_issues.de.po index 6287283..a77fba1 100644 --- a/wiki/src/support/known_issues.de.po +++ b/wiki/src/support/known_issues.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-09-19 16:36+0200\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,3 +1055,23 @@ msgstr "" #. type: Plain text msgid "See [[!tails_ticket 10576]] for more details." msgstr "" + +#. type: Title - +#, no-wrap +msgid "Tor Browser search engine with security slider set to High requires a click\n" +msgstr "" + +#. type: Plain text +msgid "" +"The custom seach engine plugin shipped in Tails to localize the search " +"engine in Tor Browser is still using disconnect.me, while upstream Tor " +"Browser has switched to duckduckgo.com by default." +msgstr "" + +#. type: Plain text +msgid "" +"Until we update the search engin plugin, users that set their Tor Browser " +"security slider to High and use the search box in Tor Browser will end up " +"after a redirection from disconnect.me on a page on duckduckgo.com asking " +"them to click on a link to see their result without javascript." +msgstr "" diff --git a/wiki/src/support/known_issues.fa.po b/wiki/src/support/known_issues.fa.po index cba87ad..8284ec1 100644 --- a/wiki/src/support/known_issues.fa.po +++ b/wiki/src/support/known_issues.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2016-09-19 16:36+0200\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" "PO-Revision-Date: 2015-10-25 10:05+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -1295,6 +1295,26 @@ msgstr "" msgid "See [[!tails_ticket 10576]] for more details." msgstr "همچنین رجوع کنید به [[!tails_ticket 6397]]." +#. type: Title - +#, no-wrap +msgid "Tor Browser search engine with security slider set to High requires a click\n" +msgstr "" + +#. type: Plain text +msgid "" +"The custom seach engine plugin shipped in Tails to localize the search " +"engine in Tor Browser is still using disconnect.me, while upstream Tor " +"Browser has switched to duckduckgo.com by default." +msgstr "" + +#. type: Plain text +msgid "" +"Until we update the search engin plugin, users that set their Tor Browser " +"security slider to High and use the search box in Tor Browser will end up " +"after a redirection from disconnect.me on a page on duckduckgo.com asking " +"them to click on a link to see their result without javascript." +msgstr "" + #, fuzzy #~| msgid "See also [[!tails_ticket 6397]]." #~ msgid "See [[!tails_ticket 9012]] for more details." diff --git a/wiki/src/support/known_issues.fr.po b/wiki/src/support/known_issues.fr.po index 788c951..bce62a4 100644 --- a/wiki/src/support/known_issues.fr.po +++ b/wiki/src/support/known_issues.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2016-09-16 16:18+0300\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" "PO-Revision-Date: 2016-09-21 14:47-0000\n" "Last-Translator: \n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -1294,6 +1294,26 @@ msgstr "" msgid "See [[!tails_ticket 10576]] for more details." msgstr "Voir [[!tails_ticket 10576]] pour plus de détails." +#. type: Title - +#, no-wrap +msgid "Tor Browser search engine with security slider set to High requires a click\n" +msgstr "" + +#. type: Plain text +msgid "" +"The custom seach engine plugin shipped in Tails to localize the search " +"engine in Tor Browser is still using disconnect.me, while upstream Tor " +"Browser has switched to duckduckgo.com by default." +msgstr "" + +#. type: Plain text +msgid "" +"Until we update the search engin plugin, users that set their Tor Browser " +"security slider to High and use the search box in Tor Browser will end up " +"after a redirection from disconnect.me on a page on duckduckgo.com asking " +"them to click on a link to see their result without javascript." +msgstr "" + #~ msgid "Print preview is blank in Tor Browser" #~ msgstr "L'aperçu avant impression est vierge dans le Navigateur Tor" diff --git a/wiki/src/support/known_issues.it.po b/wiki/src/support/known_issues.it.po index 4e0913f..7624735 100644 --- a/wiki/src/support/known_issues.it.po +++ b/wiki/src/support/known_issues.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-09-20 22:25+0200\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -1055,3 +1055,23 @@ msgstr "" #. type: Plain text msgid "See [[!tails_ticket 10576]] for more details." msgstr "" + +#. type: Title - +#, no-wrap +msgid "Tor Browser search engine with security slider set to High requires a click\n" +msgstr "" + +#. type: Plain text +msgid "" +"The custom seach engine plugin shipped in Tails to localize the search " +"engine in Tor Browser is still using disconnect.me, while upstream Tor " +"Browser has switched to duckduckgo.com by default." +msgstr "" + +#. type: Plain text +msgid "" +"Until we update the search engin plugin, users that set their Tor Browser " +"security slider to High and use the search box in Tor Browser will end up " +"after a redirection from disconnect.me on a page on duckduckgo.com asking " +"them to click on a link to see their result without javascript." +msgstr "" diff --git a/wiki/src/support/known_issues.mdwn b/wiki/src/support/known_issues.mdwn index 4889586..e5dfc0c 100644 --- a/wiki/src/support/known_issues.mdwn +++ b/wiki/src/support/known_issues.mdwn @@ -553,3 +553,16 @@ Press <span class="keycap">Alt+F2</span> and type `r` to restart GNOME Shell, which often solves this problem. See [[!tails_ticket 10576]] for more details. + +Tor Browser search engine with security slider set to High requires a click +--------------------------------------------------------------------------- + +The custom seach engine plugin shipped in Tails to localize the search engine +in Tor Browser is still using disconnect.me, while upstream Tor Browser has +switched to duckduckgo.com by default. + +Until we update the search engin plugin, users that set their Tor Browser +security slider to High and use the search box in Tor Browser will end up after +a redirection from disconnect.me on a page on duckduckgo.com asking them to +click on a link to see their result without javascript. + diff --git a/wiki/src/support/known_issues.pt.po b/wiki/src/support/known_issues.pt.po index f20a70a..2ff1d50 100644 --- a/wiki/src/support/known_issues.pt.po +++ b/wiki/src/support/known_issues.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-09-19 16:36+0200\n" +"POT-Creation-Date: 2016-11-13 23:06+0100\n" "PO-Revision-Date: 2016-05-30 17:49+0200\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1228,6 +1228,26 @@ msgstr "" msgid "See [[!tails_ticket 10576]] for more details." msgstr "Veja também [[!tails_ticket 6397]]." +#. type: Title - +#, no-wrap +msgid "Tor Browser search engine with security slider set to High requires a click\n" +msgstr "" + +#. type: Plain text +msgid "" +"The custom seach engine plugin shipped in Tails to localize the search " +"engine in Tor Browser is still using disconnect.me, while upstream Tor " +"Browser has switched to duckduckgo.com by default." +msgstr "" + +#. type: Plain text +msgid "" +"Until we update the search engin plugin, users that set their Tor Browser " +"security slider to High and use the search box in Tor Browser will end up " +"after a redirection from disconnect.me on a page on duckduckgo.com asking " +"them to click on a link to see their result without javascript." +msgstr "" + #, fuzzy #~| msgid "See also [[!tails_ticket 6397]]." #~ msgid "See [[!tails_ticket 9012]] for more details." diff --git a/wiki/src/torrents/files/tails-i386-2.6.iso.sig b/wiki/src/torrents/files/tails-i386-2.6.iso.sig deleted file mode 100644 index 3eedb47..0000000 --- a/wiki/src/torrents/files/tails-i386-2.6.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIcBAABCgAGBQJX4VTCAAoJEJj+xrx1Kj22FRsQAIfttS99Ld1oTMbCl/ciJEQV -MPNzUaffB4mD7bUiGYePfka95DlkHwB8IQ7cnHuv0ajnHTwxxI3zUVLr9FejfqJk -RtUW93MQNVP7aAKNYPhx3uTEnrJGTSRBGEuJjcH3epUSMe1wuvLGEPymCYn2IbSf -1AGpx01RW7mMEde36UhRVKUyq40MLnXHwS/nWWTKTgC4IouRuFQ9FXMi0RGVpUma -VwxZKTFpjMMLwhw6KAfESPFNnlNxsk+KZThYxmfxYUBUrcI45Q83UpiMJvTH9aas -XbZPvFN9rKRIJjrwTPstjQHnfzPimeF8IB+1vv7+U5+6PRaUlhtcQ6Kp1b19ckyG -QoRaASCYA5zprL77oOBvZiYzDdmkPHwhtFRyT+f8gLDa8tWcUy7l3UHw4+flIBVB -WCFlktFcwUtoa25hvq11iTpQZa/4K9I6LrOP31PmVsrke24juH98QB4Kr1HhUlh0 -xxlZCPY3XY91/hb9GE2HgGiAHPO5pbDakC6Z59+XeKahgQkdDqY6CahsYbH0hRyX -/HVK6w2at1a2pB6ScVKBWd9lZqvc+t/dWWY/FnfVUtId9HpiM8WAY/iWQNpubvER -QbmlVgMWHhX3xOx6+nIPUMAzk0G9RUGAJfVjzs68dNtXyKDfO0Af7BTCGFbYloBI -qauCOqtxxh2O9Cu/le5S -=YNeS ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-i386-2.6.torrent b/wiki/src/torrents/files/tails-i386-2.6.torrent Binary files differdeleted file mode 100644 index 35455ff..0000000 --- a/wiki/src/torrents/files/tails-i386-2.6.torrent +++ /dev/null diff --git a/wiki/src/torrents/files/tails-i386-2.6~rc1.iso.sig b/wiki/src/torrents/files/tails-i386-2.6~rc1.iso.sig deleted file mode 100644 index 93861a2..0000000 --- a/wiki/src/torrents/files/tails-i386-2.6~rc1.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIcBAABCgAGBQJXyb7JAAoJEJj+xrx1Kj22QYoP/jk3cqfxxvbj7CtiDUyx6uWQ -Y6Wc5L5rDaQXj5fhp9bwwuA2NTmYBncXdbMB6HTVPgM8hUWdIp+7tZDZGQ3xbNEB -PqjYY7kogF1itb0W8oJrVkHxDbxUQuzgZUlzdUWvYWT+nyUcEAezZiA4Y7zB2LL2 -oSGWk6Ew/3e12FtU0h+iJ0gYUbDoTzDcgjqmcYHAHgmsNng32yiXMC/bEQ83pHZg -tuCzxqJF0Inlw94J2g25s3SE4Vbs4gAhgEIoLTCcJ04lal74Vgt3bVC/g/EWs10/ -P68W2fDjKVCTTq520mA5qlue8ku2YfJTMb6XIgl5VleYxJugayU9o1/GGxhUMKoy -Gr4a049gzW+NdWnJB03A2CHqMoBrljHBUDB43Vu61jgo5O/9lCecPJ5nfwFHAEje -r+n4R5fLAEvL+kT5ANZcdxpbgb4W7T1zoyRtY2xiYRbr/mMcTEtbN0o8Vs+3JSRG -WlfU/kA7lC/0Kl1RdPuLUQ0O0kvybm/UD3cU/xoCiZ5uusxz58aBJU9nRewvWGwx -1Og6kDi73J2XWmB5VUW1DF5gM5km7H+c7gpM2HfIvJfXCi5rNJATPEiz/HKXPqSD -B4vRwIx56FoSUgWRJFxn77pmrIfCYU8DiurKOn+BcRDMlAqCRNY+zf+sMHDE5pYZ -Ic1x3ZHl69V/N2B+T6WE -=fnuj ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-i386-2.6~rc1.torrent b/wiki/src/torrents/files/tails-i386-2.6~rc1.torrent Binary files differdeleted file mode 100644 index 3b4246e..0000000 --- a/wiki/src/torrents/files/tails-i386-2.6~rc1.torrent +++ /dev/null diff --git a/wiki/src/torrents/files/tails-i386-2.6.build-manifest b/wiki/src/torrents/files/tails-i386-2.7.build-manifest index 93f12ec..9647a93 100644 --- a/wiki/src/torrents/files/tails-i386-2.6.build-manifest +++ b/wiki/src/torrents/files/tails-i386-2.7.build-manifest @@ -1,11 +1,11 @@ --- origin_references: debian: - reference: '2016091902' - debian-security: reference: '2016092002' + debian-security: + reference: '2016111303' torproject: - reference: '2016091502' + reference: '2016102102' packages: binary: - arch: i386 @@ -118,7 +118,7 @@ packages: version: 0.4.23 - arch: i386 package: bind9-host - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: binutils version: 2.25-5 @@ -142,7 +142,7 @@ packages: version: 9.0.6 - arch: i386 package: bsdtar - version: 3.1.2-11+deb8u2 + version: 3.1.2-11+deb8u3 - arch: i386 package: bsdutils version: 1:2.25.2-6 @@ -268,7 +268,7 @@ packages: version: 1.7.5-11+deb8u1 - arch: i386 package: curl - version: 7.38.0-4+deb8u4 + version: 7.38.0-4+deb8u5 - arch: i386 package: dash version: 0.5.7-4+b1 @@ -355,7 +355,7 @@ packages: version: 0.4.4 - arch: i386 package: dnsutils - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: all package: doc-debian version: '6.2' @@ -787,7 +787,7 @@ packages: version: 0.19.3-2 - arch: i386 package: ghostscript - version: 9.06~dfsg-2+deb8u1 + version: 9.06~dfsg-2+deb8u4 - arch: all package: gimp-data version: 2.8.14-1+deb8u1 @@ -1228,7 +1228,7 @@ packages: version: 0.13-1 - arch: all package: host - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: hostname version: '3.15' @@ -1291,184 +1291,184 @@ packages: version: 1.5.9-1 - arch: all package: icedove-l10n-all - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ar - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ast - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-be - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-bg - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-bn-bd - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-br - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ca - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-cs - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-da - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-de - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-el - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-en-gb - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-es-ar - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-es-es - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-et - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-eu - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-fi - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-fr - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-fy-nl - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ga-ie - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-gd - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-gl - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-he - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-hr - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-hu - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-hy-am - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-id - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-is - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-it - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ja - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ko - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-lt - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-nb-no - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-nl - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-nn-no - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-pa-in - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-pl - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-pt-br - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-pt-pt - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-rm - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ro - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ru - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-si - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-sk - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-sl - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-sq - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-sr - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-sv-se - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-ta-lk - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-tr - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-uk - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-vi - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-zh-cn - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: all package: icedove-l10n-zh-tw - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: i386 package: icedove - version: 1:45.2.0-1~deb8u1+tails1 + version: 1:45.4.0-1~deb8u1+tails1 - arch: i386 package: ifupdown version: 0.7.53.1 - arch: i386 package: imagemagick-6.q16 - version: 8:6.8.9.9-5+deb8u4 + version: 8:6.8.9.9-5+deb8u5 - arch: all package: imagemagick-common - version: 8:6.8.9.9-5+deb8u4 + version: 8:6.8.9.9-5+deb8u5 - arch: i386 package: imagemagick - version: 8:6.8.9.9-5+deb8u4 + version: 8:6.8.9.9-5+deb8u5 - arch: i386 package: info version: 5.2.0.dfsg.1-6 @@ -1618,7 +1618,7 @@ packages: version: 0.21-1 - arch: i386 package: libarchive13 - version: 3.1.2-11+deb8u2 + version: 3.1.2-11+deb8u3 - arch: i386 package: libasan1 version: 4.9.2-10 @@ -1711,16 +1711,16 @@ packages: version: 0.5.4-2 - arch: i386 package: libavcodec56 - version: 6:11.7-1~deb8u1 + version: 6:11.8-1~deb8u1 - arch: i386 package: libavformat56 - version: 6:11.7-1~deb8u1 + version: 6:11.8-1~deb8u1 - arch: i386 package: libavresample2 - version: 6:11.7-1~deb8u1 + version: 6:11.8-1~deb8u1 - arch: i386 package: libavutil54 - version: 6:11.7-1~deb8u1 + version: 6:11.8-1~deb8u1 - arch: all package: libb-hooks-endofscope-perl version: 0.13-1 @@ -1732,7 +1732,7 @@ packages: version: 0.1.10-2 - arch: i386 package: libbind9-90 - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: libblas-common version: 1.2.20110419-10 @@ -1789,7 +1789,7 @@ packages: version: 1.0.6-7+b3 - arch: i386 package: libc-ares2 - version: 1.10.0-2 + version: 1.10.0-2+deb8u1 - arch: i386 package: libc-bin version: 2.19-18+deb8u6 @@ -2035,10 +2035,10 @@ packages: version: 1.7.5-11+deb8u1 - arch: i386 package: libcurl3-gnutls - version: 7.38.0-4+deb8u4 + version: 7.38.0-4+deb8u5 - arch: i386 package: libcurl3 - version: 7.38.0-4+deb8u4 + version: 7.38.0-4+deb8u5 - arch: i386 package: libcwidget3 version: 0.5.17-2 @@ -2139,8 +2139,11 @@ packages: package: libdns-export100 version: 1:9.9.5.dfsg-9+deb8u6 - arch: i386 + package: libdns-export100 + version: 1:9.9.5.dfsg-9+deb8u8 + - arch: i386 package: libdns100 - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: libdotconf0 version: 1.3-0.2 @@ -2416,7 +2419,7 @@ packages: version: 1.6.3-2+deb8u2 - arch: i386 package: libgd3 - version: 2.1.0-5+deb8u6 + version: 2.1.0-5+deb8u7 - arch: all package: libgdata-common version: 0.16.1-1 @@ -2611,10 +2614,10 @@ packages: version: 0.2.11-2 - arch: all package: libgs9-common - version: 9.06~dfsg-2+deb8u1 + version: 9.06~dfsg-2+deb8u4 - arch: i386 package: libgs9 - version: 9.06~dfsg-2+deb8u1 + version: 9.06~dfsg-2+deb8u4 - arch: i386 package: libgsasl7 version: 1.8.0-6 @@ -2889,20 +2892,29 @@ packages: package: libirs-export91 version: 1:9.9.5.dfsg-9+deb8u6 - arch: i386 + package: libirs-export91 + version: 1:9.9.5.dfsg-9+deb8u8 + - arch: i386 package: libisc-export95 version: 1:9.9.5.dfsg-9+deb8u6 - arch: i386 + package: libisc-export95 + version: 1:9.9.5.dfsg-9+deb8u8 + - arch: i386 package: libisc95 - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: libisccc90 - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: libisccfg-export90 version: 1:9.9.5.dfsg-9+deb8u6 - arch: i386 + package: libisccfg-export90 + version: 1:9.9.5.dfsg-9+deb8u8 + - arch: i386 package: libisccfg90 - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: libisl10 version: 0.12.2-2 @@ -3082,7 +3094,7 @@ packages: version: 1.7-1 - arch: i386 package: liblwres90 - version: 1:9.9.5.dfsg-9+deb8u6 + version: 1:9.9.5.dfsg-9+deb8u8 - arch: i386 package: liblzma5 version: 5.1.1alpha+20120614-2+b3 @@ -3097,13 +3109,13 @@ packages: version: 1:5.22+15-2+deb8u2 - arch: i386 package: libmagick++-6.q16-5 - version: 8:6.8.9.9-5+deb8u4 + version: 8:6.8.9.9-5+deb8u5 - arch: i386 package: libmagickcore-6.q16-2 - version: 8:6.8.9.9-5+deb8u4 + version: 8:6.8.9.9-5+deb8u5 - arch: i386 package: libmagickwand-6.q16-2 - version: 8:6.8.9.9-5+deb8u4 + version: 8:6.8.9.9-5+deb8u5 - arch: all package: libmailtools-perl version: 2.13-1 @@ -3367,10 +3379,10 @@ packages: version: 0.7.6-2 - arch: i386 package: libnspr4 - version: 2:4.10.7-1+deb8u1 + version: 2:4.12-1+debu8u1 - arch: i386 package: libnss3 - version: 2:3.17.2-1.1+deb8u2 + version: 2:3.26-1+debu8u1 - arch: i386 package: libntdb1 version: 1.0-5 @@ -4041,6 +4053,9 @@ packages: package: libssl1.0.0 version: 1.0.1t-1+deb8u3 - arch: i386 + package: libssl1.0.0 + version: 1.0.1t-1+deb8u5 + - arch: i386 package: libstartup-notification0 version: 0.12-4 - arch: i386 @@ -4078,7 +4093,7 @@ packages: version: 2.17-2 - arch: i386 package: libswscale3 - version: 6:11.7-1~deb8u1 + version: 6:11.8-1~deb8u1 - arch: all package: libsyntax-keyword-junction-perl version: 0.003008-1 @@ -4552,7 +4567,7 @@ packages: version: 1.1-4 - arch: i386 package: libxslt1.1 - version: 1.1.28-2+deb8u1 + version: 1.1.28-2+deb8u2 - arch: i386 package: libxss1 version: 1:1.2.2-1 @@ -4621,37 +4636,34 @@ packages: version: '4.5' - arch: i386 package: linux-compiler-gcc-4.9-x86 - version: 4.6.4-1~bpo8+1 + version: 4.7.8-1~bpo8+1 - arch: i386 - package: linux-headers-4.6.0-0.bpo.1-686 - version: 4.6.4-1~bpo8+1 + package: linux-headers-4.7.0-0.bpo.1-686 + version: 4.7.8-1~bpo8+1 - arch: amd64 - package: linux-headers-4.6.0-0.bpo.1-amd64 - version: 4.6.4-1~bpo8+1 + package: linux-headers-4.7.0-0.bpo.1-amd64 + version: 4.7.8-1~bpo8+1 - arch: amd64 - package: linux-headers-4.6.0-0.bpo.1-common - version: 4.6.4-1~bpo8+1 + package: linux-headers-4.7.0-0.bpo.1-common + version: 4.7.8-1~bpo8+1 - arch: i386 - package: linux-headers-4.6.0-0.bpo.1-common - version: 4.6.4-1~bpo8+1 + package: linux-headers-4.7.0-0.bpo.1-common + version: 4.7.8-1~bpo8+1 - arch: i386 - package: linux-image-4.6.0-0.bpo.1-686 - version: 4.6.4-1~bpo8+1 - - arch: amd64 - package: linux-image-4.6.0-0.bpo.1-amd64 - version: 4.6.4-1~bpo8+1 + package: linux-image-4.7.0-0.bpo.1-686-unsigned + version: 4.7.8-1~bpo8+1 - arch: amd64 - package: linux-image-amd64 - version: 4.6+74~bpo8+1 + package: linux-image-4.7.0-0.bpo.1-amd64-unsigned + version: 4.7.8-1~bpo8+1 - arch: i386 - package: linux-kbuild-4.6 - version: 4.6.4-1~bpo8+1 + package: linux-kbuild-4.7 + version: 4.7.8-1~bpo8+1 - arch: i386 package: linux-libc-dev - version: 3.16.36-1+deb8u1 + version: 4.7.8-1~bpo8+1 - arch: all - package: linux-source-4.6 - version: 4.6.4-1~bpo8+1 + package: linux-source-4.7 + version: 4.7.8-1~bpo8+1 - arch: all package: live-boot-initramfs-tools version: 4.0.2-1 @@ -4723,7 +4735,7 @@ packages: version: 3.74-1 - arch: all package: mat - version: 0.5.2-3 + version: 0.5.2-3+deb8u1 - arch: i386 package: mawk version: 1.3.3-17 @@ -4870,10 +4882,10 @@ packages: version: 2:9.4.6-1770165-8 - arch: i386 package: openjdk-7-jre-headless - version: 7u111-2.6.7-1~deb8u1 + version: 7u111-2.6.7-2~deb8u1 - arch: i386 package: openjdk-7-jre - version: 7u111-2.6.7-1~deb8u1 + version: 7u111-2.6.7-2~deb8u1 - arch: all package: openpgp-applet version: 0.9.1-1 @@ -4882,7 +4894,7 @@ packages: version: 1:6.7p1-5+deb8u3 - arch: i386 package: openssl - version: 1.0.1t-1+deb8u3 + version: 1.0.1t-1+deb8u5 - arch: i386 package: p11-kit-modules version: 0.20.7-1 @@ -5047,7 +5059,7 @@ packages: version: 0.12+dfsg-1 - arch: all package: python-dogtail - version: 0.9.0-1 + version: 0.9.9-1 - arch: all package: python-ecdsa version: 0.11-1 @@ -5083,7 +5095,7 @@ packages: version: 1.3.4-2 - arch: all package: python-imaging - version: 2.6.1-2+deb8u2 + version: 2.6.1-2+deb8u3 - arch: all package: python-jsonrpclib version: 0.1.3-1 @@ -5128,7 +5140,7 @@ packages: version: 0.1-3 - arch: i386 package: python-pil - version: 2.6.1-2+deb8u2 + version: 2.6.1-2+deb8u3 - arch: all package: python-pkg-resources version: 5.5.1-1 @@ -5272,7 +5284,7 @@ packages: version: 3.2-1 - arch: i386 package: python3-pil - version: 2.6.1-2+deb8u2 + version: 2.6.1-2+deb8u3 - arch: all package: python3-pyatspi version: 2.14.0+dfsg-1 @@ -5470,13 +5482,16 @@ packages: version: 2.5-1 - arch: all package: tails-perl5lib - version: 0.9.6-1 + version: 0.9.7-1 - arch: all package: tails-persistence-setup version: 1.1.5-1 - arch: i386 package: tar version: 1.27.1-2+b1 + - arch: i386 + package: tar + version: 1.27.1-2+deb8u1 - arch: all package: tasksel-data version: 3.31+deb8u1 @@ -5512,10 +5527,10 @@ packages: version: 1.4.5.0-1 - arch: all package: tor-geoipdb - version: 0.2.8.7-1~d80.jessie+1 + version: 0.2.8.9-1~d80.jessie+1 - arch: i386 package: tor - version: 0.2.8.7-1~d80.jessie+1 + version: 0.2.8.9-1~d80.jessie+1 - arch: i386 package: torsocks version: 2.1.0-1~bpo8+1 diff --git a/wiki/src/torrents/files/tails-i386-2.7.iso.sig b/wiki/src/torrents/files/tails-i386-2.7.iso.sig new file mode 100644 index 0000000..727b016 --- /dev/null +++ b/wiki/src/torrents/files/tails-i386-2.7.iso.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIcBAABCgAGBQJYKJARAAoJEK8pK0Sg7apBq4IP/R3Uv+uM9gFVjRwQrkThh18W +v/oQOeS6Dwcodr/KuFqDyfv7hzPLY/mnC4sbW1LWIqo3rQZaozWcIN0oIZGe+QTc +ZkBcEa/7NhFVIGq0K8+iVx9JKN6do4Cjauxend3lQ1eiILsOZg/CG+XXrua/mdVh +3+ZLxTjcZ0y5MuMF3IN3oJFZAqNrApwyUV06PXkroBHmoyQ6p6aR7iCrBi3+6gTd +ECQMtjhtBgSttXO4bd1n/HkO0fP+dzmBZH4ex8CAfwT0oQKBQmj62RQOYkWO+aW6 +bdr5rOAYMsKXJRPMBf1icCeis218/VMUYBO2bFBKDLiKEudd/wo4lE++5Av3bF7Z +5jOPzIQ8K844hQPw25UulTiOb8STGzAQNXd1INLoD+vtGnsbL9xx7jzEewPMzbZb +c9NPTEI31oj3tVDm6H9jU7w0u0MTPzyQYR+XDNwBqAUD50AKZYLPd98R9X7IpJMX +jYGG6YsUYSEo7ePjXgNu2zcCnL0Pk59Soh60Kq8KChY78wTGQLrKW2YHrrObPvOv +cEM7pvaUdZdITtuWOhS1rnBB96+sKYAkphJEM5omsld7kcPQYbw6XSSND0KHtfVD +BhdpWg8ddPJvhJVIq+euvtkwaIEnCneP+7h8rDur0KxPm5vrLHKnj52C79HJMGWr +/iyZmtuMHnT3ysfPoj37 +=j9JN +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-i386-2.6.packages b/wiki/src/torrents/files/tails-i386-2.7.packages index 7e97cd5..441b189 100644 --- a/wiki/src/torrents/files/tails-i386-2.6.packages +++ b/wiki/src/torrents/files/tails-i386-2.7.packages @@ -26,14 +26,14 @@ bash-completion 1:2.1-4 bc 1.06.95-9 bilibop-common 0.4.23 bilibop-udev 0.4.23 -bind9-host 1:9.9.5.dfsg-9+deb8u6 +bind9-host 1:9.9.5.dfsg-9+deb8u8 binutils 2.25-5 blt 2.5.3+dfsg-1 bookletimposer 0.2-2 brasero 3.11.4-1.1 brasero-common 3.11.4-1.1 bsdmainutils 9.0.6 -bsdtar 3.1.2-11+deb8u2 +bsdtar 3.1.2-11+deb8u3 bsdutils 1:2.25.2-6 busybox 1:1.22.0-9+deb8u1 bzip2 1.0.6-7+b3 @@ -73,7 +73,7 @@ cups-filters-core-drivers 1.0.61-5+deb8u3 cups-pk-helper 0.2.5-2+b1 cups-ppdc 1.7.5-11+deb8u1 cups-server-common 1.7.5-11+deb8u1 -curl 7.38.0-4+deb8u4 +curl 7.38.0-4+deb8u5 dash 0.5.7-4+b1 dasher 4.11+git20130508.adc653-2 dasher-data 4.11+git20130508.adc653-2 @@ -96,7 +96,7 @@ dmeventd 2:1.02.90-2.2+deb8u1 dmidecode 2.12-3 dmsetup 2:1.02.90-2.2+deb8u1 dmz-cursor-theme 0.4.4 -dnsutils 1:9.9.5.dfsg-9+deb8u6 +dnsutils 1:9.9.5.dfsg-9+deb8u8 dosfstools 3.0.27-1 dpkg 1.17.27 e2fslibs:i386 1.42.12-2 @@ -224,7 +224,7 @@ genisoimage 9:1.1.11-3 geoip-database 20150317-1 gettext 0.19.3-2 gettext-base 0.19.3-2 -ghostscript 9.06~dfsg-2+deb8u1 +ghostscript 9.06~dfsg-2+deb8u4 gimp 2.8.14-1+deb8u1 gimp-data 2.8.14-1+deb8u1 gir1.2-accountsservice-1.0 0.6.37-3+b1 @@ -370,7 +370,7 @@ haveged 1.9.1-1 hdparm 9.43-2 hicolor-icon-theme 0.13-1 hopenpgp-tools 0.13-1 -host 1:9.9.5.dfsg-9+deb8u6 +host 1:9.9.5.dfsg-9+deb8u8 hostname 3.15 hpijs-ppds 3.16.8+repack0-2~bpo8+2 hplip 3.16.8+repack0-2~bpo8+2 @@ -391,65 +391,65 @@ ibus-hangul 1.5.0-1 ibus-pinyin 1.5.0-3 ibus-qt4 1.3.2-2 ibus-unikey 0.6.1-1+b1 -icedove 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-all 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ar 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ast 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-be 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-bg 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-bn-bd 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-br 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ca 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-cs 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-da 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-de 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-el 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-en-gb 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-es-ar 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-es-es 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-et 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-eu 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-fi 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-fr 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-fy-nl 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ga-ie 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-gd 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-gl 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-he 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-hr 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-hu 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-hy-am 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-id 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-is 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-it 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ja 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ko 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-lt 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-nb-no 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-nl 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-nn-no 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-pa-in 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-pl 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-pt-br 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-pt-pt 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-rm 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ro 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ru 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-si 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-sk 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-sl 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-sq 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-sr 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-sv-se 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-ta-lk 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-tr 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-uk 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-vi 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-zh-cn 1:45.2.0-1~deb8u1+tails1 -icedove-l10n-zh-tw 1:45.2.0-1~deb8u1+tails1 -iceweasel 45.4.0+fake1 +icedove 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-all 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ar 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ast 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-be 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-bg 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-bn-bd 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-br 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ca 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-cs 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-da 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-de 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-el 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-en-gb 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-es-ar 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-es-es 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-et 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-eu 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-fi 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-fr 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-fy-nl 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ga-ie 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-gd 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-gl 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-he 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-hr 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-hu 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-hy-am 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-id 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-is 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-it 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ja 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ko 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-lt 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-nb-no 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-nl 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-nn-no 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-pa-in 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-pl 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-pt-br 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-pt-pt 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-rm 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ro 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ru 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-si 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-sk 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-sl 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-sq 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-sr 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-sv-se 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-ta-lk 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-tr 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-uk 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-vi 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-zh-cn 1:45.4.0-1~deb8u1+tails1 +icedove-l10n-zh-tw 1:45.4.0-1~deb8u1+tails1 +iceweasel 45.5.0+fake1 ifupdown 0.7.53.1 -imagemagick-common 8:6.8.9.9-5+deb8u4 +imagemagick-common 8:6.8.9.9-5+deb8u5 info 5.2.0.dfsg.1-6 init 1.22 init-system-helpers 1.22 @@ -497,7 +497,7 @@ libapt-inst1.5:i386 1.0.9.8.3 libapt-pkg4.12:i386 1.0.9.8.3 libarchive-extract-perl 0.72-1 libarchive-tar-wrapper-perl 0.21-1 -libarchive13:i386 3.1.2-11+deb8u2 +libarchive13:i386 3.1.2-11+deb8u3 libasound2:i386 1.0.28-1 libasound2-data 1.0.28-1 libasound2-plugins:i386 1.0.28-1+b1 @@ -526,14 +526,14 @@ libavahi-common3:i386 0.6.31-5 libavahi-glib1:i386 0.6.31-5 libavahi-gobject0:i386 0.6.31-5 libavc1394-0:i386 0.5.4-2 -libavcodec56:i386 6:11.7-1~deb8u1 -libavformat56:i386 6:11.7-1~deb8u1 -libavresample2:i386 6:11.7-1~deb8u1 -libavutil54:i386 6:11.7-1~deb8u1 +libavcodec56:i386 6:11.8-1~deb8u1 +libavformat56:i386 6:11.8-1~deb8u1 +libavresample2:i386 6:11.8-1~deb8u1 +libavutil54:i386 6:11.8-1~deb8u1 libb-hooks-endofscope-perl 0.13-1 libb-hooks-op-check-perl 0.19-2+b1 libbabl-0.1-0:i386 0.1.10-2 -libbind9-90 1:9.9.5.dfsg-9+deb8u6 +libbind9-90 1:9.9.5.dfsg-9+deb8u8 libblas-common 1.2.20110419-10 libblas3 1.2.20110419-10 libblkid1:i386 2.25.2-6 @@ -552,7 +552,7 @@ libbrlapi0.6:i386 5.2~20141018-5 libbsd0:i386 0.7.0-2 libburn4 1.3.2-1.1 libbz2-1.0:i386 1.0.6-7+b3 -libc-ares2:i386 1.10.0-2 +libc-ares2:i386 1.10.0-2+deb8u1 libc-bin 2.19-18+deb8u6 libc6:i386 2.19-18+deb8u6 libcaca0:i386 0.99.beta19-2 @@ -631,8 +631,8 @@ libcupsfilters1:i386 1.0.61-5+deb8u3 libcupsimage2:i386 1.7.5-11+deb8u1 libcupsmime1:i386 1.7.5-11+deb8u1 libcupsppdc1:i386 1.7.5-11+deb8u1 -libcurl3:i386 7.38.0-4+deb8u4 -libcurl3-gnutls:i386 7.38.0-4+deb8u4 +libcurl3:i386 7.38.0-4+deb8u5 +libcurl3-gnutls:i386 7.38.0-4+deb8u5 libdata-optlist-perl 0.109-1 libdata-perl-perl 0.002009-1 libdata-section-perl 0.200006-1 @@ -664,8 +664,8 @@ libdist-checkconflicts-perl 0.11-1 libdjvulibre-text 3.5.25.4-4 libdjvulibre21:i386 3.5.25.4-4+b1 libdmapsharing-3.0-2 2.9.28-1 -libdns-export100 1:9.9.5.dfsg-9+deb8u6 -libdns100 1:9.9.5.dfsg-9+deb8u6 +libdns-export100 1:9.9.5.dfsg-9+deb8u8 +libdns100 1:9.9.5.dfsg-9+deb8u8 libdotconf0:i386 1.3-0.2 libdpkg-perl 1.17.27 libdrm-amdgpu1:i386 2.4.70-1~bpo8+1 @@ -756,7 +756,7 @@ libgcr-3-common 3.14.0-2 libgcr-base-3-1:i386 3.14.0-2 libgcr-ui-3-1:i386 3.14.0-2 libgcrypt20:i386 1.6.3-2+deb8u2 -libgd3:i386 2.1.0-5+deb8u6 +libgd3:i386 2.1.0-5+deb8u7 libgdata-common 0.16.1-1 libgdata19 0.16.1-1 libgdbm3:i386 1.8.3-13.1 @@ -821,8 +821,8 @@ libgphoto2-port10:i386 2.5.4-1.1+b2 libgpm2:i386 1.20.4-6.1+b2 libgraphite2-3:i386 1.3.6-1~deb8u1 libgrilo-0.2-1:i386 0.2.11-2 -libgs9 9.06~dfsg-2+deb8u1 -libgs9-common 9.06~dfsg-2+deb8u1 +libgs9 9.06~dfsg-2+deb8u4 +libgs9-common 9.06~dfsg-2+deb8u4 libgsasl7 1.8.0-6 libgsecuredelete0 0.2.1-2 libgsl0ldbl 1.16+dfsg-2 @@ -913,12 +913,12 @@ libipc-run-perl 0.92-1 libipc-run-safehandles-perl 0.04-1 libipc-system-simple-perl 1.25-2 libiptcdata0 1.0.4-4 -libirs-export91 1:9.9.5.dfsg-9+deb8u6 -libisc-export95 1:9.9.5.dfsg-9+deb8u6 -libisc95 1:9.9.5.dfsg-9+deb8u6 -libisccc90 1:9.9.5.dfsg-9+deb8u6 -libisccfg-export90 1:9.9.5.dfsg-9+deb8u6 -libisccfg90 1:9.9.5.dfsg-9+deb8u6 +libirs-export91 1:9.9.5.dfsg-9+deb8u8 +libisc-export95 1:9.9.5.dfsg-9+deb8u8 +libisc95 1:9.9.5.dfsg-9+deb8u8 +libisccc90 1:9.9.5.dfsg-9+deb8u8 +libisccfg-export90 1:9.9.5.dfsg-9+deb8u8 +libisccfg90 1:9.9.5.dfsg-9+deb8u8 libisl10:i386 0.12.2-2 libisofs6 1.3.2-1.1 libiw30:i386 30~pre9-8 @@ -977,14 +977,14 @@ liblwp-authen-wsse-perl 0.05-2 liblwp-mediatypes-perl 6.02-1 liblwp-protocol-https-perl 6.06-2 liblwp-protocol-socks-perl 1.7-1 -liblwres90 1:9.9.5.dfsg-9+deb8u6 +liblwres90 1:9.9.5.dfsg-9+deb8u8 liblzma5:i386 5.1.1alpha+20120614-2+b3 liblzo2-2:i386 2.08-1.2 libmad0:i386 0.15.1b-8 libmagic1:i386 1:5.22+15-2+deb8u2 -libmagick++-6.q16-5:i386 8:6.8.9.9-5+deb8u4 -libmagickcore-6.q16-2:i386 8:6.8.9.9-5+deb8u4 -libmagickwand-6.q16-2:i386 8:6.8.9.9-5+deb8u4 +libmagick++-6.q16-5:i386 8:6.8.9.9-5+deb8u5 +libmagickcore-6.q16-2:i386 8:6.8.9.9-5+deb8u5 +libmagickwand-6.q16-2:i386 8:6.8.9.9-5+deb8u5 libmailtools-perl 2.13-1 libmbim-glib4:i386 1.10.0-2.1 libmbim-proxy 1.10.0-2.1 @@ -1071,8 +1071,8 @@ libnm-gtk0:i386 0.9.10.0-2 libnm-util2:i386 0.9.10.0-7 libnotify-bin 0.7.6-2 libnotify4:i386 0.7.6-2 -libnspr4:i386 2:4.10.7-1+deb8u1 -libnss3:i386 2:3.17.2-1.1+deb8u2 +libnspr4:i386 2:4.12-1+debu8u1 +libnss3:i386 2:3.26-1+debu8u1 libntdb1:i386 1.0-5 libntlm0:i386 1.4-3 libnumber-format-perl 1.73-2 @@ -1293,7 +1293,7 @@ libsratom-0-0:i386 0.4.6~dfsg0-1 libsrtp0 1.4.5~20130609~dfsg-1.1+deb8u1 libss2:i386 1.42.12-2 libssh2-1:i386 1.4.3-4.1+deb8u1 -libssl1.0.0:i386 1.0.1t-1+deb8u3 +libssl1.0.0:i386 1.0.1t-1+deb8u5 libstartup-notification0:i386 0.12-4 libstdc++6:i386 4.9.2-10 libstrictures-perl 1.005005-1 @@ -1305,7 +1305,7 @@ libsub-identify-perl 0.08-1 libsub-install-perl 0.928-1 libsub-name-perl 0.12-1 libswitch-perl 2.17-2 -libswscale3:i386 6:11.7-1~deb8u1 +libswscale3:i386 6:11.8-1~deb8u1 libsyntax-keyword-junction-perl 0.003008-1 libsyntax-perl 0.004-1 libsys-statistics-linux-perl 0.66-1 @@ -1457,7 +1457,7 @@ libxrandr2:i386 2:1.4.2-1+b1 libxrender1:i386 1:0.9.8-1+b1 libxres1:i386 2:1.0.7-1+b1 libxshmfence1:i386 1.1-4 -libxslt1.1:i386 1.1.28-2+deb8u1 +libxslt1.1:i386 1.1.28-2+deb8u2 libxss1:i386 1:1.2.2-1 libxt6:i386 1:1.1.4-1+b1 libxtables10 1.4.21-2+b1 @@ -1480,9 +1480,8 @@ libzvbi0:i386 0.2.35-3 liferea 1.10.12-1 liferea-data 1.10.12-1 linux-base 4.5 -linux-image-4.6.0-0.bpo.1-686 4.6.4-1~bpo8+1 -linux-image-4.6.0-0.bpo.1-amd64 4.6.4-1~bpo8+1 -linux-image-amd64 4.6+74~bpo8+1 +linux-image-4.7.0-0.bpo.1-686-unsigned 4.7.8-1~bpo8+1 +linux-image-4.7.0-0.bpo.1-amd64-unsigned 4.7.8-1~bpo8+1 live-boot 4.0.2-1 live-boot-initramfs-tools 4.0.2-1 live-config 4.0.4-1 @@ -1502,7 +1501,7 @@ lvm2 2.02.111-2.2+deb8u1 macchanger 1.7.0-5.3 man-db 2.7.0.2-5 manpages 3.74-1 -mat 0.5.2-3 +mat 0.5.2-3+deb8u1 mawk 1.3.3-17 memlockd 1.1.1 metacity 1:3.14.3-1 @@ -1547,11 +1546,11 @@ ntfs-3g 1:2014.2.15AR.2-1+deb8u2 obfs4proxy 0.0.4-1~tpo1 onioncircuits 0.4-1~bpo8+1 open-vm-tools 2:9.4.6-1770165-8 -openjdk-7-jre:i386 7u111-2.6.7-1~deb8u1 -openjdk-7-jre-headless:i386 7u111-2.6.7-1~deb8u1 +openjdk-7-jre:i386 7u111-2.6.7-2~deb8u1 +openjdk-7-jre-headless:i386 7u111-2.6.7-2~deb8u1 openpgp-applet 0.9.1-1 openssh-client 1:6.7p1-5+deb8u3 -openssl 1.0.1t-1+deb8u3 +openssl 1.0.1t-1+deb8u5 p11-kit 0.20.7-1 p11-kit-modules:i386 0.20.7-1 p7zip-full 9.20.1~dfsg.1-4.1+deb8u2 @@ -1601,7 +1600,7 @@ python-dateutil 2.2-2 python-dbus 1.2.0-2+b3 python-dbus-dev 1.2.0-2 python-dnspython 1.12.0-1 -python-dogtail 0.9.0-1 +python-dogtail 0.9.9-1 python-ecdsa 0.11-1 python-electrum 2.6.4-1 python-geoip 1.3.2-1 @@ -1613,7 +1612,7 @@ python-gst-1.0 1.2.1-1.1 python-gtk2 2.24.0-4 python-hachoir-core 1.3.3-4 python-hachoir-parser 1.3.4-2 -python-imaging 2.6.1-2+deb8u2 +python-imaging 2.6.1-2+deb8u3 python-jsonrpclib 0.1.3-1 python-libxml2 2.9.1+dfsg1-5+deb8u3 python-lxml 3.4.0-1 @@ -1628,7 +1627,7 @@ python-notify 0.1.1-4 python-numpy 1:1.8.2-2 python-pbkdf2 1.3+20110613.git2a0fb15~ds0-3 python-pdfrw 0.1-3 -python-pil:i386 2.6.1-2+deb8u2 +python-pil:i386 2.6.1-2+deb8u3 python-pkg-resources 5.5.1-1 python-poppler 0.12.1-8.1 python-protobuf 2.6.1-1 @@ -1672,7 +1671,7 @@ python3-louis 2.5.3-3 python3-lxml 3.4.0-1 python3-minimal 3.4.2-2 python3-pexpect 3.2-1 -python3-pil:i386 2.6.1-2+deb8u2 +python3-pil:i386 2.6.1-2+deb8u3 python3-pyatspi 2.14.0+dfsg-1 python3-pycountry 1.8+ds1-0.1 python3-pyinotify 0.9.4-1 @@ -1732,17 +1731,17 @@ sysvinit-utils 2.88dsf-59 tails-greeter 0.8.28 tails-installer 4.4.11+dfsg-0tails1 tails-iuk 2.5-1 -tails-perl5lib 0.9.6-1 +tails-perl5lib 0.9.7-1 tails-persistence-setup 1.1.5-1 -tar 1.27.1-2+b1 +tar 1.27.1-2+deb8u1 tcpd 7.6.q-25 tcpdump 4.6.2-5+deb8u1 tcpflow 1.4.4+repack1-3 telepathy-mission-control-5 1:5.16.3-1 tk8.6-blt2.5 2.5.3+dfsg-1 -tor 0.2.8.7-1~d80.jessie+1 +tor 0.2.8.9-1~d80.jessie+1 tor-arm 1.4.5.0-1 -tor-geoipdb 0.2.8.7-1~d80.jessie+1 +tor-geoipdb 0.2.8.9-1~d80.jessie+1 torsocks 2.1.0-1~bpo8+1 totem 3.14.0-2 totem-common 3.14.0-2 diff --git a/wiki/src/torrents/files/tails-i386-2.7.torrent b/wiki/src/torrents/files/tails-i386-2.7.torrent Binary files differnew file mode 100644 index 0000000..ad0c5d9 --- /dev/null +++ b/wiki/src/torrents/files/tails-i386-2.7.torrent diff --git a/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml index ac48ac7..aa6a461 100644 --- a/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: i386 channel: stable product-name: Tails product-version: '2.6' +upgrades: +- details-url: https://tails.boum.org/news/version_2.7/ + type: major + upgrade-paths: + - target-files: + - sha256: 164dd41ddc3c1713df570e2379c35796edea93b2561afe82eb112252ec078651 + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-i386-2.7/tails-i386-2.7.iso + type: full + - target-files: + - sha256: 7c55bad4f998bfdaaebdce4349192f62ec6db17b6ddb551280a61b53d88355aa + size: 318924800 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_i386_2.6_to_2.7.iuk + type: incremental + version: '2.7' diff --git a/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml.pgp index e9fd4c3..95a12a2 100644 --- a/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/2.6/i386/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIcBAABCgAGBQJXVeb9AAoJEJj+xrx1Kj22GGQQAI/r6iv70CeNBO9rRi8mS/Q4 -yAnBFXhxzGyPz/8p1fxwZNUHjZ2hjhD0gYZnDK5/EL9IRbrHiW8+RRB4Sgx6/CAI -yE6CB5w1k0yzllV7fXoSWAn1Onb+L2ccLii3ob+s40gZdbwADc/GhRAdOlomUPI8 -Bc3dsFEE4Mbxb4eUIKTmoQNxSV3nqP31OYeEMceOx52foZRsRYFQmbfmjbLGhduq -87fJKFXkJ6rAdNQet8TgucpiffoRjmVESDrpoiAiMc0cUQoX1pOchNswoBFfAYrl -2LUTaj1IkpvsdGHfEJKzTABiL4Djn1PczlmqQiLFe2MsN88EpyJaLBx7XVZxKAWZ -PB4muKFOrpL1fYQrq65UoeSGijq+upizCBh2vITxxxBrf/N3kd6Velye3tN7Ks0c -ViWTX4EnqoDqbszFquVN12QpzVtxO0Fa4ZgQ1tyZOpzs5Zv2C9rQo/vvep6bIauS -U9Og3mhoITZul4ijMIrwl6uD5se1qjnv+Ux+2jBlVx/ZXqqksueXJwlzmSPjyM7R -ODPmu+hfIy4Km94M8ggy2M//BeCvIZURaoYDPiFaxjUHokVL9WOS6+YiEdsxSb8a -a8UklDfA5jmOzeFCnh78cUZBwV5P7qLlc+covb1VfPUq+9YdaQwO+BdO5fyK1oSB -7bg01yFpWTEOutsnKoTz -=dw9G +iQIcBAABCgAGBQJYKKWwAAoJEK8pK0Sg7apBQjoP/iuHUOgXoifQNcER5OYmkK6J +A2c+XCNs5a2ae/Jw8hQobHq/raFCXxeSE4SGZuGAyn0/3U9RfbmXcTWQp7sMGx+r +rcl3TOT6yOJbMjJwGKT6wCHbFWD+AlbdasHiDnamX+IqhdbTsXMT/c6WBLrQgpjm +0R8z7s2zIn6xZgQsuhnDJUenYzcTenYZ6HJgh8ksfJlTksgs2BkzMMtGT0SPiDwZ +zUo1K61kwoHLdERacxwrRetjieLE7P1dIiEkHj1w2U7Vo1NksmCQP/TY2+RoAmTy +HU4k7YudQ3hEvMmmKo5hTr19g0gSsm2ike4GjSVMHchqYxV1wqXKw1msDomIipIb +41KA9r5dfRUoq2Cj/zUDhNBhr/ogvULoWaCOcMkFVJX3ia0BLwDG36gJ/kh+SL1a +eEHhotlxcMiWlPKHVctxMXkts1y9lDcnPG5dceoOHw0rO/zHQj8WoA5hUrhp6WZJ +uYfVrtyFgQ2uHkS8Nf7kCrIpxjlK9t3iLvbIXpqxp7efp187oG9Uj4jTXpvgaAKb +n3RCpYYt+mnvIdFq2u23YgzQk+WP6ycRVaDug4a7QIo1qa1U6VKxq4J6l9QGm2Yz +Js77HBBI1zkb5QDPWnhiP6Ku95r+ZmIxAO2k2acnrM6jJ2vmrfKPsZjKfhlDO+xT +jKRMD7KXfApBDsiLoTTA +=C1xL -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/2.7.1/i386/alpha/upgrades.yml b/wiki/src/upgrade/v1/Tails/2.7.1/i386/alpha/upgrades.yml new file mode 100644 index 0000000..0c8cf28 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.7.1/i386/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: i386 +channel: alpha +product-name: Tails +product-version: 2.7.1 diff --git a/wiki/src/upgrade/v1/Tails/2.7.1/i386/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/2.7.1/i386/alpha/upgrades.yml.pgp new file mode 100644 index 0000000..cb3f3fc --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.7.1/i386/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIcBAABCgAGBQJYKKWHAAoJEK8pK0Sg7apBS3EP/0oAXap4M3pz6zNG7mm07vcs +XrdflVU3D+8GpIxM+0IGK5ceYU7ltBR6G7WP3Dl32HPw7JgwZ+bG5H0/1s+JFGk3 +/lqy2lSrHvZ83YqPfEaTYMTFyGY4mg6uW5Kkn3QbFBrQRZKJIj0xK8BJGLDnWYhn +BycaLvg8AZWp52shmQrLAbf3xXEPAIJRGsMdu4NARyjA2E4TOm7nyle0ddypsacu +VjJ8x425pW202VfC538a+nENCihATw9UI1BhelDGxKbUoODQtaNQNlrkJiix6EkQ +FmhcYWVzmdRrBBgf6wppPuw5E5iWNiXZpld2KCgkWTyvKj3XP9TBrbpfailylru8 +eYvdJX+9U6A9TDYXrtbJM9AKufkM1iXlGPTla8GY261e4cjcJ6o2jTKVIy9BbYRY +ovE2lLKleLLmWc+muddM3juRK4n3wq9I643q6R/sgBOGv6YjA0vRGjTqbe3iiApJ +SFSCcOYvY9ejubtCOJ77kVJcaLlNodfHPWk1dwKGE/zzIfGwxB4cAyzI+xDiEBuQ +Wdo3kwz4Lr98BiQgRq0/Yxapj5OmdG8Q1NT38Ve0rRkwZKdCoMAe5LIIyDn+OeCz +IxKBoC9eUtIT+pWTLd3K407syGcDqPLBmHzsK44B117zGp2rBd92cebRmr4k0gam +TTHUwBMNLffQEdBzWK0H +=dIp+ +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/2.7.1/i386/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/2.7.1/i386/stable/upgrades.yml new file mode 100644 index 0000000..1cc56a3 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.7.1/i386/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: i386 +channel: stable +product-name: Tails +product-version: 2.7.1 diff --git a/wiki/src/upgrade/v1/Tails/2.7.1/i386/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/2.7.1/i386/stable/upgrades.yml.pgp new file mode 100644 index 0000000..8d40e15 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.7.1/i386/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIcBAABCgAGBQJYKKWTAAoJEK8pK0Sg7apBbIQP/jNy3cKvs10271t34IaEaxZe +ianhKe/wFxJklwmIAP+EGGHnorl34HGF9SiufM56oPN/8ZcaqEdTj7PRNoz5r/23 +CTYvg4kqQuH+kmIwcb58tbAbdNi64ChrTt9d8ZBEwbyxBco6uAOXd9RMDh/EIMb7 +1nLL1FxuaEUbFWTitU6v0ZJuOSf7qgrYRFORiHauaiFRXQu71ttw5o8YRZp7fm9T +/N1c821E+rHyaWhNLrBqIgyIf/AYoI70ED2NDqJJGW0IjED9tmCLCwByOLegxuod +ba15VL+oRc+x9x8nZHLaIaNvbw8AHHpVqFLjxyWQ5CCmTSbNw5E7stq0YGhMpDxo +NlgomtP/13zZgU3UlbdajIQyGiz6lzYMPgn6j6ZEleOuwsqnELrONs5mwEtyEZzY +vGbyU5iRyFI44hvmBaCr7DqGp+C5AM05J+NMe5ctIVinJALLM9LbA9K/y+PlpdC0 +IGloO6e6hVxwdo8NLODSscAdLylFgs3Xh8ZbOMqbFCH2yHfmPO51/rWw21Oh/lR1 +WLNctSaDpMOhY7M3gyaPsDGtunVpu5bXZ3ju0kk+VHICg7LhIryMEmzsWwuVwRFR +QbOst3Pb/U3qhg1+k/s+C9gUNtFVsEVaVfID0xhtCNqOE/vKAIWw2B4Z2htd1MNc +e1ugE7vCIcO3qXtAd7eS +=97MG +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/alpha/upgrades.yml b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/alpha/upgrades.yml new file mode 100644 index 0000000..7e7212e --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: i386 +channel: alpha +product-name: Tails +product-version: 2.8~rc1 diff --git a/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/alpha/upgrades.yml.pgp new file mode 100644 index 0000000..af78d60 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIcBAABCgAGBQJYKKWcAAoJEK8pK0Sg7apBddsP/3iWftgJwDCf0M8O2kVPp17e +pt1mP9e560xYw7sn9kZMEzbsAfVsWH28Z//dDEYZ/ZRtzq5ao/pe4tdJgRVIP+lR ++9ybMNBTE/fJxx/kWQuHZmBCgpDtujQmxJcGJkJ2Rs+1rMGHX0AuWGWHoXcu+YI7 +FMBfRkvNTKaxf1lhoXoiaq4jjQyA9ZuGBzApbmM2zbw6iaEKgIfEwrTVwc4ouMMV +yaj/EALdOBAPrjZQxd3VzXZM+pUL97oIxk9pD7uxXwBcve8Mx67WZ3KDBml1T2Xs +WH67kh5m5/xOmV5AbMjDQQutiX/agc55Of8e8cCetj+3SbRULfmk7f8YEgwwnYQi +5OVHHAKAXRSdgEhI4sUSPF3QjVm4wz9kelJ6K5W9ae83fBF+tS6wWYPkZFTuMXc7 +So3p9ut5gIuII3W8oNHw2PIp7ElGFBU7fnW5UwJpjjZL+fCToAEA6ccYGM/iuouO +VAM6Q659lsPgGgcxh+dHvIe8i5CVe8Mz8fDmw3YEeliiUI0kmCsBAkEKCzaglkp9 +E0P3MI84JqHGgdhGCGPnRUmyTG4KEvuy25oOol7SU2KN+qYZFO9rs6FB8ym86HOM +ArX8H90kRk77IIovn2oUErvxxm3rhHRoWcZB04ghVMeD2S2XFFjKTb0DNRYyNCml +0nFblA6Omv9BT6KeHm6H +=TAMR +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/stable/upgrades.yml new file mode 100644 index 0000000..e2735f0 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: i386 +channel: stable +product-name: Tails +product-version: 2.8~rc1 diff --git a/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/stable/upgrades.yml.pgp new file mode 100644 index 0000000..d104c3c --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/2.8~rc1/i386/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIcBAABCgAGBQJYKKWmAAoJEK8pK0Sg7apBLuoQAKVfa5Sa3sQJ0sQpQ8PyhQYd +ebH590RYqCHyfZKfVHYm4liBq6Y10WUcbX3jc5rM/r3vqNzv11l6eYLw9AYe5WUk +wGrn4L0MtSEgGZI5TcMCPNLVqkGUvHMk1ueDo9TNHJWQ7Lv6+0F989rlV7p2r1U0 +dOhFK9cLuTUSr4ISeO90RJoytHtpnBdEUPWXEagodl2KYPDb7ot/KCUbCr6x316x ++7IXP/KMY07SSCmhnrqMqAJFSIcYS03a08TJx01SmqiTaRxcMTWB6tbLZjHeDLnw +bKajyKLlmP7N59YDwEL0MU0+O/FajCrmHrMbqJiJ5aUtRPKIr6ZHRin26hrcA0ze +DvhuAsjOhyRq/R6VIiWng2Mdj83k8xohLDrHZvgQH3rHJiHhiXfvFXwImyDQxkA6 +xu3coHbMvmjXwioEQyPn+nMAb5uyNK9jXGvsSa6lT+qVqq2EnlhHeLR/lB/jwzXK +gQn/NK9AHoJBhcGwSXYrSo0+FRXieku9TDnuahKp2r03GJS5DOuMq121XrFXbOG8 +SUfADGQBToxCHcC3opiG2qjit3A61UIwnVWCNtbTKm6TGJVpkhHDewSJMtV2Qd5S +Rx9TOdfXc6XbkU7VN9zbyzJq0DlOMaUfqGiRLg4y33n0mNsJukTJlEbNhPMTEGtA +Rmb1HJ7VhHpKEcSg25Wo +=8vIQ +-----END PGP SIGNATURE----- |