boklm pushed to branch main at The Tor Project / Applications / torbrowser-launcher
Commits: e1e16dbb by Nicolas Vigier at 2023-11-23T16:36:58+01:00 Update git repository URL (#7)
- - - - -
8 changed files:
- .github/ISSUE_TEMPLATE/bug_report.md - README.md - setup.py - torbrowser-launcher - torbrowser_launcher/__init__.py - torbrowser_launcher/common.py - torbrowser_launcher/launcher.py - torbrowser_launcher/settings.py
Changes:
===================================== .github/ISSUE_TEMPLATE/bug_report.md ===================================== @@ -7,5 +7,5 @@ assignees: ''
---
-_**Are you getting an error?** Sometimes updates in Tor Browser itself will break Tor Browser Launcher. There's a good chance that the problem you're experiencing has already been fixed in the [newest version](https://github.com/micahflee/torbrowser-launcher/releases). Try installing from Flatpak (instructions below), or [build from source](/BUILD.md)._ +_**Are you getting an error?** Sometimes updates in Tor Browser itself will break Tor Browser Launcher. There's a good chance that the problem you're experiencing has already been fixed in the [newest version](https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tags). Try installing from Flatpak (instructions below), or [build from source](/BUILD.md)._ - [ ] I am using the latest version and the problem persists.
===================================== README.md ===================================== @@ -1,6 +1,6 @@ # Tor Browser Launcher
-_**Are you getting an error?** Sometimes updates in Tor Browser itself will break Tor Browser Launcher. There's a good chance that the problem you're experiencing has already been fixed in the [newest version](https://github.com/micahflee/torbrowser-launcher/releases). Try installing from Flatpak (instructions below), or [build from source](/BUILD.md)._ +_**Are you getting an error?** Sometimes updates in Tor Browser itself will break Tor Browser Launcher. There's a good chance that the problem you're experiencing has already been fixed in the [newest version](https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tags). Try installing from Flatpak (instructions below), or [build from source](/BUILD.md)._
Tor Browser Launcher is intended to make Tor Browser easier to install and use for GNU/Linux users. You install ```torbrowser-launcher``` from your distribution's package manager and it handles everything else:
===================================== setup.py ===================================== @@ -1,6 +1,6 @@ """ Tor Browser Launcher -https://github.com/micahflee/torbrowser-launcher/ +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2017 Micah Lee micah@micahflee.com
@@ -100,7 +100,7 @@ setup( version=version, author="Micah Lee", author_email="micah@micahflee.com", - url="https://www.github.com/micahflee/torbrowser-launcher", + url="https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/", platforms=["GNU/Linux"], license="MIT", description="A program to help you securely download and run Tor Browser",
===================================== torbrowser-launcher ===================================== @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ Tor Browser Launcher -https://github.com/micahflee/torbrowser-launcher/ +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2017 Micah Lee micah@micahflee.com
===================================== torbrowser_launcher/__init__.py ===================================== @@ -1,6 +1,6 @@ """ Tor Browser Launcher -https://github.com/micahflee/torbrowser-launcher/ +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2021 Micah Lee micah@micahflee.com
@@ -71,7 +71,7 @@ def main(): print(_("Tor Browser Launcher")) print(_("By Micah Lee, licensed under MIT")) print(_("version {0}").format(tor_browser_launcher_version)) - print("https://github.com/micahflee/torbrowser-launcher") + print("https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/")
common = Common(tor_browser_launcher_version) app = Application()
===================================== torbrowser_launcher/common.py ===================================== @@ -1,6 +1,6 @@ """ Tor Browser Launcher -https://github.com/micahflee/torbrowser-launcher/ +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2021 Micah Lee micah@micahflee.com
===================================== torbrowser_launcher/launcher.py ===================================== @@ -1,6 +1,6 @@ """ Tor Browser Launcher -https://github.com/micahflee/torbrowser-launcher/ +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2021 Micah Lee micah@micahflee.com
@@ -407,7 +407,7 @@ class Launcher(QtWidgets.QMainWindow): "A copy of the Tor Browser files you downloaded have been saved here:\n" "{1}\n{2}\n\n" "Click Start to refresh the keyring and try again. If the message persists report the above " - "error code here:\nhttps://github.com/micahflee/torbrowser-launcher/issues" + "error code here:\nhttps://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/issues/" ) sigerror = sigerror.format( message, backup_tarball_filename, backup_sig_filename
===================================== torbrowser_launcher/settings.py ===================================== @@ -1,6 +1,6 @@ """ Tor Browser Launcher -https://github.com/micahflee/torbrowser-launcher/ +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2021 Micah Lee micah@micahflee.com
View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit/...
tbb-commits@lists.torproject.org