Refer to Launchpad rather than Flyspray for bug tracking
Fixes: https://bugs.launchpad.net/midori/+bug/706241
This commit is contained in:
parent
1f08629a4f
commit
07ffc279b2
4 changed files with 4 additions and 4 deletions
2
HACKING
2
HACKING
|
@ -13,7 +13,7 @@ There are several ways to contribute to the project:
|
||||||
|
|
||||||
For translating, have a look at the file TRANSLATE.
|
For translating, have a look at the file TRANSLATE.
|
||||||
|
|
||||||
For helping with testing and triaging bug reports, you should registers with the bug tracker at http://www.twotoasts.de/bugs and join #midori on irc.freenode.net where a lot of problems are discussed. You can start right away by trying to reproduce bug reports and comment with your findings.
|
For helping with testing and triaging bug reports, you should registers with the bug tracker at https://bugs.launchpad.net/midori and join #midori on irc.freenode.net where a lot of problems are discussed. You can start right away by trying to reproduce bug reports and comment with your findings.
|
||||||
|
|
||||||
If you are interested in contributing code, there are a few options. You can join #midori to discuss a particular problem you would like to look into, or a feature you would want to implement. Opening a bug report or feature request if there isn't already one is the next step. To attract some attention, if you attached a patch or have questions, ask in #midori.
|
If you are interested in contributing code, there are a few options. You can join #midori to discuss a particular problem you would like to look into, or a feature you would want to implement. Opening a bug report or feature request if there isn't already one is the next step. To attract some attention, if you attached a patch or have questions, ask in #midori.
|
||||||
|
|
||||||
|
|
2
README
2
README
|
@ -18,7 +18,7 @@ Optional: Unique 0.9, libidn, docutils, libnotify, Vala
|
||||||
For installation instructions read INSTALL.
|
For installation instructions read INSTALL.
|
||||||
|
|
||||||
Please report comments, suggestions and bugs to:
|
Please report comments, suggestions and bugs to:
|
||||||
http://www.twotoasts.de/bugs
|
https://bugs.launchpad.net/midori
|
||||||
|
|
||||||
And join the IRC channel #midori on irc.freenode.net
|
And join the IRC channel #midori on irc.freenode.net
|
||||||
|
|
||||||
|
|
|
@ -4541,7 +4541,7 @@ _action_help_link_activate (GtkAction* action,
|
||||||
else if (!strncmp ("HelpFAQ", action_name, 7))
|
else if (!strncmp ("HelpFAQ", action_name, 7))
|
||||||
uri = "http://wiki.xfce.org/midori/faq";
|
uri = "http://wiki.xfce.org/midori/faq";
|
||||||
else if (!strncmp ("HelpBugs", action_name, 8))
|
else if (!strncmp ("HelpBugs", action_name, 8))
|
||||||
uri = "http://www.twotoasts.de/bugs/";
|
uri = PACKAGE_BUGREPORT;
|
||||||
else
|
else
|
||||||
uri = NULL;
|
uri = NULL;
|
||||||
|
|
||||||
|
|
2
wscript
2
wscript
|
@ -277,7 +277,7 @@ def configure (conf):
|
||||||
|
|
||||||
conf.define ('PACKAGE_VERSION', VERSION)
|
conf.define ('PACKAGE_VERSION', VERSION)
|
||||||
conf.define ('PACKAGE_NAME', APPNAME)
|
conf.define ('PACKAGE_NAME', APPNAME)
|
||||||
conf.define ('PACKAGE_BUGREPORT', 'http://www.twotoasts.de/bugs')
|
conf.define ('PACKAGE_BUGREPORT', 'https://bugs.launchpad.net/midori')
|
||||||
conf.define ('GETTEXT_PACKAGE', APPNAME)
|
conf.define ('GETTEXT_PACKAGE', APPNAME)
|
||||||
|
|
||||||
conf.define ('MIDORI_MAJOR_VERSION', major)
|
conf.define ('MIDORI_MAJOR_VERSION', major)
|
||||||
|
|
Loading…
Reference in a new issue