]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
radiant: update credits/changes/issues urls
authorThomas Debesse <dev@illwieckz.net>
Thu, 9 Feb 2023 05:56:31 +0000 (06:56 +0100)
committerThomas Debesse <dev@illwieckz.net>
Thu, 9 Feb 2023 05:56:31 +0000 (06:56 +0100)
The credits one was a dead link,
others were redirects.

radiant/gtkdlgs.cpp

index 4c09dc48aeb64cf710dbc31a5781b9eef9ff72d7..cb1a973fb1da7b52a85161ced5bef770ce3bb8e5 100644 (file)
@@ -404,19 +404,19 @@ void DoSides( int type, int axis ){
 
 void about_button_changelog( ui::Widget widget, gpointer data ){
        StringOutputStream log( 256 );
-       log << "https://gitlab.com/xonotic/netradiant/commits/master";
+       log << "https://gitlab.com/xonotic/netradiant/-/commits/master";
        OpenURL( log.c_str() );
 }
 
 void about_button_credits( ui::Widget widget, gpointer data ){
        StringOutputStream cred( 256 );
-       cred << "https://gitlab.com/xonotic/netradiant/graphs/master";
+       cred << "https://gitlab.com/xonotic/netradiant/-/graphs/master";
        OpenURL( cred.c_str() );
 }
 
 void about_button_issues( ui::Widget widget, gpointer data ){
        StringOutputStream cred( 256 );
-       cred << "https://gitlab.com/xonotic/netradiant/issues";
+       cred << "https://gitlab.com/xonotic/netradiant/-/issues";
        OpenURL( cred.c_str() );
 }