Merge pull request #306 from shenlebantongying/staged

update urls
This commit is contained in:
xiaoyifang 2023-01-06 11:20:16 +08:00 committed by GitHub
commit 65eb349465
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 8 deletions

View file

@ -329,8 +329,6 @@ set(PROJECT_SOURCES
history.hh
historypanewidget.cc
historypanewidget.hh
hotkeyedit.cc
hotkeyedit.hh
hotkeywrapper.cc
hotkeywrapper.hh
htmlescape.cc

View file

@ -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)

View file

@ -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();

View file

@ -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);

View file

@ -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()