From f24425538617c17247ec4bbc1245f020545c3270 Mon Sep 17 00:00:00 2001 From: Davide Romanini Date: Sat, 5 Oct 2019 16:31:12 +0200 Subject: [PATCH] update urls to new github comictagger organization --- README.md | 8 ++++---- comictaggerlib/taggerwindow.py | 6 +++--- setup.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 80f0352..adfb724 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.org/davide-romanini/comictagger.svg?branch=develop)](https://travis-ci.org/davide-romanini/comictagger) +[![Build Status](https://travis-ci.org/comictagger/comictagger.svg?branch=develop)](https://travis-ci.org/comictagger/comictagger) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/comictagger/community) [![Google Group](https://img.shields.io/badge/discuss-on%20groups-%23207de5)](https://groups.google.com/forum/#!forum/comictagger) [![Twitter](https://img.shields.io/badge/%40comictagger-twitter-lightgrey)](https://twitter.com/comictagger) @@ -21,14 +21,14 @@ ComicTagger is a **multi-platform** app for **writing metadata to digital comics * Native read only support for **CBR** digital comics: full support enabled installing additional [rar tools](https://www.rarlab.com/download.htm) * Command line interface (CLI) enabling **custom scripting** and **batch operations on large collections** -For details, screen-shots, release notes, and more, visit [the Wiki](https://github.com/davide-romanini/comictagger/wiki) +For details, screen-shots, release notes, and more, visit [the Wiki](https://github.com/comictagger/comictagger/wiki) ## Installation ### Binaries -Windows and macOS binaries are provided in the [Releases Page](https://github.com/davide-romanini/comictagger/releases). +Windows and macOS binaries are provided in the [Releases Page](https://github.com/comictagger/comictagger/releases). Just unzip the archive in any folder and run, no additional installation steps are required. @@ -43,6 +43,6 @@ A pip package is provided, you can install it with: ### From source 1. ensure you have a recent version of python3 and setuptools installed - 2. clone this repository `git clone https://github.com/davide-romanini/comictagger.git` + 2. clone this repository `git clone https://github.com/comictagger/comictagger.git` 3. `pip install -r requirements.txt` 4. `python comictagger.py` \ No newline at end of file diff --git a/comictaggerlib/taggerwindow.py b/comictaggerlib/taggerwindow.py index 4446c62..ef044cd 100644 --- a/comictaggerlib/taggerwindow.py +++ b/comictaggerlib/taggerwindow.py @@ -545,7 +545,7 @@ class TaggerWindow(QtWidgets.QMainWindow): def aboutApp(self): - website = "https://github.com/davide-romanini/comictagger" + website = "https://github.com/comictagger/comictagger" email = "comictagger@gmail.com" license_link = "http://www.apache.org/licenses/LICENSE-2.0" license_name = "Apache License 2.0" @@ -2022,10 +2022,10 @@ class TaggerWindow(QtWidgets.QMainWindow): dlg.exec_() def showWiki(self): - webbrowser.open("https://github.com/davide-romanini/comictagger/wiki") + webbrowser.open("https://github.com/comictagger/comictagger/wiki") def reportBug(self): - webbrowser.open("https://github.com/davide-romanini/comictagger/issues") + webbrowser.open("https://github.com/comictagger/comictagger/issues") def showForum(self): webbrowser.open("http://comictagger.forumotion.com/") diff --git a/setup.py b/setup.py index 679d991..f7e9415 100644 --- a/setup.py +++ b/setup.py @@ -195,7 +195,7 @@ setup(name="comictagger", description="A cross-platform GUI/CLI app for writing metadata to comic archives", author="ComicTagger team", author_email="comictagger@gmail.com", - url="https://github.com/davide-romanini/comictagger", + url="https://github.com/comictagger/comictagger", packages=["comictaggerlib", "comicapi"], package_data={ 'comictaggerlib': ['ui/*', 'graphics/*', '*.so'],