diff --git a/README.md b/README.md index 83ab075..58b5e39 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ mouse click. After several hours of work, Yomichan could do this and much more. Yomichan can be downloaded from the its [Anki shared addon page](https://ankiweb.net/shared/info/934748696), the [Yomichan page on GitHub](https://github.com/FooSoft/yomichan/) or directly from [my -homepage](http://foosoft.net/projects/yomichan/index/yomichan.zip). There is an automatic update checker in the plugin -that (unless you disabled it) will notify you when new versions become available. +homepage](http://foosoft.net/dl/yomichan/yomichan.zip). There is an automatic update checker in the plugin that (unless +you disabled it) will notify you when new versions become available. ## Basic Usage Instructions diff --git a/ui/about.ui b/ui/about.ui index 3db663a..37132dd 100644 --- a/ui/about.ui +++ b/ui/about.ui @@ -45,7 +45,7 @@ - <a href = "http://foosoft.net/yomichan">http://foosoft.net/yomichan</a> + <a href = "http://foosoft.net/projects/yomichan">http://foosoft.net/projects/yomichan</a> true diff --git a/yomi_base/gen/about_ui.py b/yomi_base/gen/about_ui.py index e7d84e6..033d013 100644 --- a/yomi_base/gen/about_ui.py +++ b/yomi_base/gen/about_ui.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'ui/about.ui' # -# Created: Tue Feb 17 11:09:38 2015 +# Created: Tue Mar 31 12:33:10 2015 # by: PyQt4 UI code generator 4.10.4 # # WARNING! All changes made in this file will be lost! @@ -93,7 +93,7 @@ class Ui_DialogAbout(object): DialogAbout.setWindowTitle(_translate("DialogAbout", "About", None)) self.labelVersion.setText(_translate("DialogAbout", "Yomichan {0}", None)) self.label_3.setText(_translate("DialogAbout", "(c) 2013 by Alex Yatskov", None)) - self.label_4.setText(_translate("DialogAbout", "http://foosoft.net/yomichan", None)) + self.label_4.setText(_translate("DialogAbout", "http://foosoft.net/projects/yomichan", None)) self.label_6.setText(_translate("DialogAbout", "This software uses the Silk web icon set created by Mark James.", None)) self.label_7.setText(_translate("DialogAbout", "Portions of this application\'s code and data are based on the Rikaichan extension developed by Jonathan Zarate.", None)) self.label_5.setText(_translate("DialogAbout", "This package uses the EDICT and KANJIDIC dictionary files. These files are the property of the Electronic Dictionary Research and Development Group, and are used in conformance with the Group\'s licence.", None)) diff --git a/yomi_base/gen/preferences_ui.py b/yomi_base/gen/preferences_ui.py index 948bf20..a0241fb 100644 --- a/yomi_base/gen/preferences_ui.py +++ b/yomi_base/gen/preferences_ui.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'ui/preferences.ui' # -# Created: Tue Feb 17 11:09:38 2015 +# Created: Tue Mar 31 12:33:11 2015 # by: PyQt4 UI code generator 4.10.4 # # WARNING! All changes made in this file will be lost! diff --git a/yomi_base/gen/reader_ui.py b/yomi_base/gen/reader_ui.py index bf0a56a..4231cbe 100644 --- a/yomi_base/gen/reader_ui.py +++ b/yomi_base/gen/reader_ui.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'ui/reader.ui' # -# Created: Tue Feb 17 11:09:39 2015 +# Created: Tue Mar 31 12:33:11 2015 # by: PyQt4 UI code generator 4.10.4 # # WARNING! All changes made in this file will be lost! diff --git a/yomi_base/gen/resources_rc.py b/yomi_base/gen/resources_rc.py index 65d52e7..94aebae 100644 --- a/yomi_base/gen/resources_rc.py +++ b/yomi_base/gen/resources_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Tue Feb 17 11:09:39 2015 +# Created: Tue Mar 31 12:33:11 2015 # by: The Resource Compiler for PyQt (Qt v4.8.6) # # WARNING! All changes made in this file will be lost! diff --git a/yomi_base/gen/updates_ui.py b/yomi_base/gen/updates_ui.py index 23bec78..0e25dfd 100644 --- a/yomi_base/gen/updates_ui.py +++ b/yomi_base/gen/updates_ui.py @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file 'ui/updates.ui' # -# Created: Tue Feb 17 11:09:39 2015 +# Created: Tue Mar 31 12:33:11 2015 # by: PyQt4 UI code generator 4.10.4 # # WARNING! All changes made in this file will be lost! diff --git a/yomi_base/reader.py b/yomi_base/reader.py index 1743988..2fd1c69 100644 --- a/yomi_base/reader.py +++ b/yomi_base/reader.py @@ -277,7 +277,7 @@ class MainWindowReader(QtGui.QMainWindow, gen.reader_ui.Ui_MainWindowReader): def onActionHomepage(self): - url = QtCore.QUrl('http://foosoft.net/yomichan') + url = QtCore.QUrl('http://foosoft.net/projects/yomichan') QtGui.QDesktopServices().openUrl(url) diff --git a/yomi_base/updates.py b/yomi_base/updates.py index ac16a81..8ee4d59 100644 --- a/yomi_base/updates.py +++ b/yomi_base/updates.py @@ -60,7 +60,7 @@ class UpdateFinder(QtCore.QThread): updates = list() try: - fp = urllib2.urlopen('http://foosoft.net/projects/yomichan/index/updates.json') + fp = urllib2.urlopen('http://foosoft.net/dl/yomichan/updates.json') updates = json.loads(fp.read()) fp.close()