Skip to content

Commit 780efe4

Browse files
author
Mirko Brombin
committed
Fix links
1 parent 18972d4 commit 780efe4

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

data/com.github.mirkobrombin.elementarypython.appdata.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<description>
1616
<p>This is just a python template.</p>
1717
</description>
18-
<url type="homepage">https://github.com/mirkobrombin/elementarypython</url>
19-
<url type="bugtracker">https://github.com/mirkobrombin/elementarypython/issues/labels/bug</url>
20-
<url type="help">https://github.com/mirkobrombin/elementarypython/issues/new</url>
18+
<url type="homepage">https://git.mirko.pm/brombinmirko/ElementaryPython</url>
19+
<url type="bugtracker">https://git.mirko.pm/brombinmirko/ElementaryPython/issues/labels/bug</url>
20+
<url type="help">https://git.mirko.pm/brombinmirko/ElementaryPython/issues/new</url>
2121
<custom>
2222
<value key="x-appcenter-color-primary">#645552</value>
2323
<value key="x-appcenter-color-primary-text">#EEEDEC</value>

elementarypython/constants.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class App:
3939
application_description = _('This is just a python template')
4040
application_version ="1.1"
4141
app_years = "2017-2018"
42-
main_url = "https://github.com/mirkobrombin/elementarypython"
43-
bug_url = "https://github.com/mirkobrombin/elementarypython/issues/labels/bug"
44-
help_url = "https://github.com/mirkobrombin/elementarypython/issues"
45-
translate_url = "https://github.com/mirkobrombin/elementarypython/blob/master/CONTRIBUTING.md"
42+
main_url = "https://git.mirko.pm/brombinmirko/ElementaryPython"
43+
bug_url = "https://git.mirko.pm/brombinmirko/ElementaryPython/issues/labels/bug"
44+
help_url = "https://git.mirko.pm/brombinmirko/ElementaryPython/issues"
45+
translate_url = "https://git.mirko.pm/brombinmirko/ElementaryPython/blob/master/CONTRIBUTING.md"
4646
about_authors = None # Mirko Brombin <brombinmirko@gmail.com>
4747
about_documenters = None
4848
about_comments = application_description

elementarypython/headerbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(self):
4646
self.pack_end(self.hbar_color)
4747

4848
def on_hbar_help_clicked(self, widget):
49-
webbrowser.open_new_tab("https://github.com/mirkobrombin/ElementaryPython")
49+
webbrowser.open_new_tab("https://git.mirko.pm/brombinmirko/ElementaryPython")
5050

5151
def on_hbar_color_color_set(self, widget):
5252
cn.Colors.primary_color = widget.get_rgba().to_string()

elementarypython/welcome.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ def on_welcome_activated(self, widget, index):
7373
print(_('Terminal Not Found!'))
7474
elif index == 2:
7575
# Open webpage
76-
webbrowser.open_new_tab("https://github.com/mirkobrombin/ElementaryPython")
76+
webbrowser.open_new_tab("https://git.mirko.pm/brombinmirko/ElementaryPython")
7777
print("Index: "+str(index))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
version='0.0.1',
2222
author='Mirko Brombin',
2323
description='This is just a python template',
24-
url='https://github.com/mirkobrombin/elementarypython',
24+
url='https://git.mirko.pm/brombinmirko/ElementaryPython',
2525
license='GNU GPL3',
2626
scripts=['com.github.mirkobrombin.elementarypython'],
2727
packages=['elementarypython'],

0 commit comments

Comments
 (0)