lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

October 2023

  • 1 participants
  • 161 discussions
[Git][tpo/applications/tor-browser-build][maint-13.0] Bug 40979: Add redirects from old linux filenames in .htaccess
by richard (@richard) 14 Oct '23

14 Oct '23
richard pushed to branch maint-13.0 at The Tor Project / Applications / tor-browser-build Commits: e0f0ec91 by Nicolas Vigier at 2023-10-14T05:53:12+00:00 Bug 40979: Add redirects from old linux filenames in .htaccess Add some redirects, to make old filenames work for torbrowser-launcher. - - - - - 1 changed file: - projects/release/build Changes: ===================================== projects/release/build ===================================== @@ -42,12 +42,18 @@ mkdir -p "$destdir" "$destdir"/ [% END -%] cd "$destdir" -cat > .htaccess <<EOF +cat > .htaccess <<'EOF' RewriteEngine On RewriteRule ^sha256sums.txt$ sha256sums-unsigned-build.txt RewriteRule ^sha256sums.txt.asc$ sha256sums-unsigned-build.txt.asc RewriteRule ^sha256sums.incrementals.txt$ sha256sums-unsigned-build.incrementals.txt RewriteRule ^sha256sums.incrementals.txt.asc$ sha256sums-unsigned-build.incrementals.txt.asc +[% IF c("var/tor-browser") -%] +RewriteRule ^tor-browser-linux64-(.*)_ALL.tar.xz.asc$ tor-browser-linux-x86_64-$1.tar.xz.asc +RewriteRule ^tor-browser-linux64-(.*)_ALL.tar.xz$ tor-browser-linux-x86_64-$1.tar.xz +RewriteRule ^tor-browser-linux32-(.*)_ALL.tar.xz.asc$ tor-browser-linux-i686-$1.tar.xz.asc +RewriteRule ^tor-browser-linux32-(.*)_ALL.tar.xz$ tor-browser-linux-i686-$1.tar.xz +[% END -%] EOF # empty any existing sh256sums file View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 40979: Add redirects from old linux filenames in .htaccess
by richard (@richard) 14 Oct '23

14 Oct '23
richard pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 7eab1212 by Nicolas Vigier at 2023-10-14T07:43:32+02:00 Bug 40979: Add redirects from old linux filenames in .htaccess Add some redirects, to make old filenames work for torbrowser-launcher. - - - - - 1 changed file: - projects/release/build Changes: ===================================== projects/release/build ===================================== @@ -42,12 +42,18 @@ mkdir -p "$destdir" "$destdir"/ [% END -%] cd "$destdir" -cat > .htaccess <<EOF +cat > .htaccess <<'EOF' RewriteEngine On RewriteRule ^sha256sums.txt$ sha256sums-unsigned-build.txt RewriteRule ^sha256sums.txt.asc$ sha256sums-unsigned-build.txt.asc RewriteRule ^sha256sums.incrementals.txt$ sha256sums-unsigned-build.incrementals.txt RewriteRule ^sha256sums.incrementals.txt.asc$ sha256sums-unsigned-build.incrementals.txt.asc +[% IF c("var/tor-browser") -%] +RewriteRule ^tor-browser-linux64-(.*)_ALL.tar.xz.asc$ tor-browser-linux-x86_64-$1.tar.xz.asc +RewriteRule ^tor-browser-linux64-(.*)_ALL.tar.xz$ tor-browser-linux-x86_64-$1.tar.xz +RewriteRule ^tor-browser-linux32-(.*)_ALL.tar.xz.asc$ tor-browser-linux-i686-$1.tar.xz.asc +RewriteRule ^tor-browser-linux32-(.*)_ALL.tar.xz$ tor-browser-linux-i686-$1.tar.xz +[% END -%] EOF # empty any existing sh256sums file View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Deleted branch asciiwolf-git-url-fix
by asciiwolf (@asciiwolf) 13 Oct '23

13 Oct '23
asciiwolf deleted branch asciiwolf-git-url-fix at The Tor Project / Applications / torbrowser-launcher -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher][main] 2 commits: Update Git repo URL in BUILD.md
by richard (@richard) 13 Oct '23

13 Oct '23
richard pushed to branch main at The Tor Project / Applications / torbrowser-launcher Commits: 8f4d4c84 by asciiwolf at 2023-10-13T12:22:19+00:00 Update Git repo URL in BUILD.md - - - - - 40e7cacb by richard at 2023-10-13T21:00:04+00:00 Merge branch &#39;asciiwolf-git-url-fix&#39; into &#39;main&#39; Update Git repo URL in BUILD.md See merge request tpo/applications/torbrowser-launcher!2 - - - - - 1 changed file: - BUILD.md Changes: ===================================== BUILD.md ===================================== @@ -3,7 +3,7 @@ First, clone the repository: ```sh -git clone https://github.com/micahflee/torbrowser-launcher.git +git clone https://gitlab.torproject.org/tpo/applications/torbrowser-launcher.git cd torbrowser-launcher ``` View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Deleted branch asciiwolf-appstream-urls-fix
by asciiwolf (@asciiwolf) 13 Oct '23

13 Oct '23
asciiwolf deleted branch asciiwolf-appstream-urls-fix at The Tor Project / Applications / torbrowser-launcher -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher][main] 2 commits: Update URLs in AppStream metadata
by richard (@richard) 13 Oct '23

13 Oct '23
richard pushed to branch main at The Tor Project / Applications / torbrowser-launcher Commits: 07c2f671 by asciiwolf at 2023-10-13T12:16:08+00:00 Update URLs in AppStream metadata - - - - - a35c1598 by richard at 2023-10-13T18:23:49+00:00 Merge branch &#39;asciiwolf-appstream-urls-fix&#39; into &#39;main&#39; Update URLs in AppStream metadata See merge request tpo/applications/torbrowser-launcher!1 - - - - - 1 changed file: - share/metainfo/torbrowser.appdata.xml Changes: ===================================== share/metainfo/torbrowser.appdata.xml ===================================== @@ -21,11 +21,11 @@ </description> <screenshots> <screenshot type="default"> - <image>https://raw.githubusercontent.com/micahflee/torbrowser-launcher/master/scre…</image> + <image>https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/raw/ma…</image> <caption>Window to change Tor Browser Launcher settings</caption> </screenshot> </screenshots> - <url type="homepage">https://github.com/micahflee/torbrowser-launcher</url> + <url type="homepage">https://gitlab.torproject.org/tpo/applications/torbrowser-launcher</url> <update_contact>micah(a)micahflee.com</update_contact> <content_rating type="oars-1.1"/> <releases> View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Deleted branch asciiwolf-tbb-archive-name-fix
by asciiwolf (@asciiwolf) 13 Oct '23

13 Oct '23
asciiwolf deleted branch asciiwolf-tbb-archive-name-fix at The Tor Project / Applications / torbrowser-launcher -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher][main] 2 commits: Fix TBB archive name format
by richard (@richard) 13 Oct '23

13 Oct '23
richard pushed to branch main at The Tor Project / Applications / torbrowser-launcher Commits: 1a0562ba by asciiwolf at 2023-10-13T15:04:09+00:00 Fix TBB archive name format - - - - - 8276534d by richard at 2023-10-13T18:23:08+00:00 Merge branch &#39;asciiwolf-tbb-archive-name-fix&#39; into &#39;main&#39; Fix TBB archive name format Closes #4 See merge request tpo/applications/torbrowser-launcher!3 - - - - - 1 changed file: - torbrowser_launcher/common.py Changes: ===================================== torbrowser_launcher/common.py ===================================== @@ -104,11 +104,11 @@ class Common(object): if tbb_version: # tarball filename if self.architecture == "x86_64": - arch = "linux64" + arch = "linux-x86_64" else: - arch = "linux32" + arch = "linux-i686" - tarball_filename = "tor-browser-" + arch + "-" + tbb_version + "_ALL.tar.xz" + tarball_filename = "tor-browser-" + arch + "-" + tbb_version + ".tar.xz" # tarball self.paths["tarball_url"] = ( View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Pushed new branch asciiwolf-tbb-archive-name-fix
by asciiwolf (@asciiwolf) 13 Oct '23

13 Oct '23
asciiwolf pushed new branch asciiwolf-tbb-archive-name-fix at The Tor Project / Applications / torbrowser-launcher -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tree/a… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Deleted branch asciiwolf-tbb-archive-name-fix
by asciiwolf (@asciiwolf) 13 Oct '23

13 Oct '23
asciiwolf deleted branch asciiwolf-tbb-archive-name-fix at The Tor Project / Applications / torbrowser-launcher -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • ...
  • 17
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.