[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/torbrowser-launcher][main] Update git repository URL (#7)



Title: GitLab

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:

Changes:

  • .github/ISSUE_TEMPLATE/bug_report.md
    ... ... @@ -7,5 +7,5 @@ assignees: ''
    7 7
     
    
    8 8
     ---
    
    9 9
     
    
    10
    -_**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)._
    
    10
    +_**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)._
    
    11 11
      - [ ] I am using the latest version and the problem persists.

  • README.md
    1 1
     # Tor Browser Launcher
    
    2 2
     
    
    3
    -_**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)._
    
    3
    +_**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)._
    
    4 4
     
    
    5 5
     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:
    
    6 6
     
    

  • setup.py
    1 1
     """
    
    2 2
     Tor Browser Launcher
    
    3
    -https://github.com/micahflee/torbrowser-launcher/
    
    3
    +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
    
    4 4
     
    
    5 5
     Copyright (c) 2013-2017 Micah Lee <micah@xxxxxxxxxxxxx>
    
    6 6
     
    
    ... ... @@ -100,7 +100,7 @@ setup(
    100 100
         version=version,
    
    101 101
         author="Micah Lee",
    
    102 102
         author_email="micah@xxxxxxxxxxxxx",
    
    103
    -    url="https://www.github.com/micahflee/torbrowser-launcher",
    
    103
    +    url="https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/",
    
    104 104
         platforms=["GNU/Linux"],
    
    105 105
         license="MIT",
    
    106 106
         description="A program to help you securely download and run Tor Browser",
    

  • torbrowser-launcher
    1 1
     #!/usr/bin/env python3
    
    2 2
     """
    
    3 3
     Tor Browser Launcher
    
    4
    -https://github.com/micahflee/torbrowser-launcher/
    
    4
    +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
    
    5 5
     
    
    6 6
     Copyright (c) 2013-2017 Micah Lee <micah@xxxxxxxxxxxxx>
    
    7 7
     
    

  • torbrowser_launcher/__init__.py
    1 1
     """
    
    2 2
     Tor Browser Launcher
    
    3
    -https://github.com/micahflee/torbrowser-launcher/
    
    3
    +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
    
    4 4
     
    
    5 5
     Copyright (c) 2013-2021 Micah Lee <micah@xxxxxxxxxxxxx>
    
    6 6
     
    
    ... ... @@ -71,7 +71,7 @@ def main():
    71 71
         print(_("Tor Browser Launcher"))
    
    72 72
         print(_("By Micah Lee, licensed under MIT"))
    
    73 73
         print(_("version {0}").format(tor_browser_launcher_version))
    
    74
    -    print("https://github.com/micahflee/torbrowser-launcher")
    
    74
    +    print("https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/")
    
    75 75
     
    
    76 76
         common = Common(tor_browser_launcher_version)
    
    77 77
         app = Application()
    

  • torbrowser_launcher/common.py
    1 1
     """
    
    2 2
     Tor Browser Launcher
    
    3
    -https://github.com/micahflee/torbrowser-launcher/
    
    3
    +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
    
    4 4
     
    
    5 5
     Copyright (c) 2013-2021 Micah Lee <micah@xxxxxxxxxxxxx>
    
    6 6
     
    

  • torbrowser_launcher/launcher.py
    1 1
     """
    
    2 2
     Tor Browser Launcher
    
    3
    -https://github.com/micahflee/torbrowser-launcher/
    
    3
    +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
    
    4 4
     
    
    5 5
     Copyright (c) 2013-2021 Micah Lee <micah@xxxxxxxxxxxxx>
    
    6 6
     
    
    ... ... @@ -407,7 +407,7 @@ class Launcher(QtWidgets.QMainWindow):
    407 407
                     "A copy of the Tor Browser files you downloaded have been saved here:\n"
    
    408 408
                     "{1}\n{2}\n\n"
    
    409 409
                     "Click Start to refresh the keyring and try again. If the message persists report the above "
    
    410
    -                "error code here:\nhttps://github.com/micahflee/torbrowser-launcher/issues"
    
    410
    +                "error code here:\nhttps://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/issues/"
    
    411 411
                 )
    
    412 412
                 sigerror = sigerror.format(
    
    413 413
                     message, backup_tarball_filename, backup_sig_filename
    

  • torbrowser_launcher/settings.py
    1 1
     """
    
    2 2
     Tor Browser Launcher
    
    3
    -https://github.com/micahflee/torbrowser-launcher/
    
    3
    +https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
    
    4 4
     
    
    5 5
     Copyright (c) 2013-2021 Micah Lee <micah@xxxxxxxxxxxxx>
    
    6 6
     
    

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