mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
commit
65eb349465
|
@ -329,8 +329,6 @@ set(PROJECT_SOURCES
|
|||
history.hh
|
||||
historypanewidget.cc
|
||||
historypanewidget.hh
|
||||
hotkeyedit.cc
|
||||
hotkeyedit.hh
|
||||
hotkeywrapper.cc
|
||||
hotkeywrapper.hh
|
||||
htmlescape.cc
|
||||
|
|
|
@ -164,7 +164,7 @@ To start coding, the easiest way is load the `goldendict.pro` file to Qt Creator
|
|||
|
||||
## Support
|
||||
|
||||
Bug reporting: [GoldenDict issue tracker](https://github.com/goldendict/goldendict/issues)
|
||||
Bug reporting: [GoldenDict issue tracker](https://github.com/xiaoyifang/goldendict/issues)
|
||||
|
||||
General discussions: [discussions](https://github.com/xiaoyifang/goldendict/discussions)
|
||||
|
||||
|
|
|
@ -259,8 +259,8 @@ sptr< Dictionary::DataRequest > ArticleMaker::makeDefinitionFor(
|
|||
"<p>To customize program, check out the available preferences at <b>Edit|Preferences</b>. "
|
||||
"All settings there have tooltips, be sure to read them if you are in doubt about anything."
|
||||
"<p>Should you need further help, have any questions, "
|
||||
"suggestions or just wonder what the others think, you are welcome at the program's <a href=\"http://goldendict.org/forum/\">forum</a>."
|
||||
"<p>Check program's <a href=\"http://goldendict.org/\">website</a> for the updates. "
|
||||
"suggestions or just wonder what the others think, you are welcome at the program's <a href=\"https://github.com/xiaoyifang/goldendict/discussions\">forum</a>."
|
||||
"<p>Check program's <a href=\"https://github.com/xiaoyifang/goldendict\">website</a> for the updates. "
|
||||
"<p>(c) 2008-2013 Konstantin Isakov. Licensed under GPLv3 or later."
|
||||
|
||||
).toUtf8().data();
|
||||
|
|
2
main.cc
2
main.cc
|
@ -325,7 +325,7 @@ int main( int argc, char ** argv )
|
|||
}
|
||||
|
||||
app.setApplicationName( "GoldenDict" );
|
||||
app.setOrganizationDomain( "http://goldendict.org/" );
|
||||
app.setOrganizationDomain( "https://github.com/xiaoyifang/goldendict" );
|
||||
|
||||
//this line will forbid stylesheet applying on GroupComboBox
|
||||
// app.setStyle(new GdAppStyle);
|
||||
|
|
|
@ -3207,7 +3207,7 @@ void MainWindow::showMainWindow()
|
|||
|
||||
void MainWindow::visitHomepage()
|
||||
{
|
||||
QDesktopServices::openUrl( QUrl( "http://goldendict.org/" ) );
|
||||
QDesktopServices::openUrl( QApplication::organizationDomain() );
|
||||
}
|
||||
|
||||
void MainWindow::openConfigFolder()
|
||||
|
@ -3217,7 +3217,7 @@ void MainWindow::openConfigFolder()
|
|||
|
||||
void MainWindow::visitForum()
|
||||
{
|
||||
QDesktopServices::openUrl( QUrl( "http://goldendict.org/forum/" ) );
|
||||
QDesktopServices::openUrl( QUrl( "https://github.com/xiaoyifang/goldendict/discussions" ) );
|
||||
}
|
||||
|
||||
void MainWindow::showAbout()
|
||||
|
|
Loading…
Reference in a new issue