|
|
|
@ -171,31 +171,38 @@ static void InitKiCadAboutNew( AboutAppInfo& info ) |
|
|
|
description << wxT( "</p>" ); |
|
|
|
|
|
|
|
description << wxT( "<p><b><u>" ) |
|
|
|
<< _( "Contribute to KiCad" ) |
|
|
|
<< _( "Bug tracker" ) |
|
|
|
<< wxT( "</u></b>" ); // bold & underlined font caption
|
|
|
|
|
|
|
|
// bullet-ed list with some http links
|
|
|
|
description << wxT( "<ul>" ); |
|
|
|
description << wxT( "<li>" ) |
|
|
|
<<HtmlHyperlink( wxT( "https://bugs.launchpad.net/kicad" ), |
|
|
|
_( "Report bugs if you found any" ) ) |
|
|
|
<<HtmlHyperlink( wxT( "https://bugs.launchpad.net/kicad/+bugs?orderby=-id&start=0" ), |
|
|
|
_( "Report or examine bugs" ) ) |
|
|
|
<< wxT( "</li>" ); |
|
|
|
description << wxT( "</ul></p>" ); |
|
|
|
|
|
|
|
description << wxT( "<p><b><u>" ) |
|
|
|
<< _( "KiCad user group and community" ) |
|
|
|
<< wxT( "</u></b>" ); // bold & underlined font caption
|
|
|
|
|
|
|
|
description << wxT( "<ul>" ); |
|
|
|
description << wxT( "<li>" ) |
|
|
|
<< HtmlHyperlink( wxT( "https://blueprints.launchpad.net/kicad" ), |
|
|
|
_( "File an idea for improvement" ) ) |
|
|
|
<< HtmlHyperlink( wxT( "https://groups.yahoo.com/neo/groups/kicad-users/info" ), |
|
|
|
_( "KiCad user group" ) ) |
|
|
|
<< wxT( "</li>" ); |
|
|
|
|
|
|
|
description << wxT( "<li>" ) |
|
|
|
<< HtmlHyperlink( wxT( "http://www.kicadlib.org/Kicad_related_links.html" ), |
|
|
|
_( "KiCad links to user groups, tutorials and much more" ) ) |
|
|
|
<< HtmlHyperlink( wxT( "https://forum.kicad.info" ), |
|
|
|
_( "KiCad forum" ) ) |
|
|
|
<< wxT( "</li>" ); |
|
|
|
description << wxT( "</ul>" ); |
|
|
|
|
|
|
|
description << wxT( "</p>" ); |
|
|
|
description << wxT( "</ul></p>" ); |
|
|
|
|
|
|
|
info.SetDescription( description ); |
|
|
|
|
|
|
|
|
|
|
|
/* License information also HTML formatted */ |
|
|
|
// License information also HTML formatted:
|
|
|
|
wxString license; |
|
|
|
license |
|
|
|
<< wxT( "<div align='center'>" ) |
|
|
|
|