]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/gtkdlgs.cpp
netradiant: some bikeshedding (whitespace, wording)
[xonotic/netradiant.git] / radiant / gtkdlgs.cpp
index 10c4c7e36b65ac52af2a0a7e9b4b032fcf3489f9..313d78f336a21d3629477b886edb82526b086d89 100644 (file)
@@ -436,7 +436,7 @@ void DoAbout(){
 
                        {
                 auto vbox2 = create_dialog_vbox( 4 );
-                               hbox.pack_start( vbox2, TRUE, FALSE, 0 );
+                               hbox.pack_start( vbox2, FALSE, FALSE, 5 );
                                {
                                        auto frame = create_dialog_frame( 0, ui::Shadow::IN );
                                        vbox2.pack_start( frame, FALSE, FALSE, 0 );
@@ -449,33 +449,37 @@ void DoAbout(){
                        }
 
                        {
-                               char const *label_text = RADIANT_NAME " " RADIANT_VERSION_STRING "\n"
-                                                                               __DATE__ "\n\n"
+                               char const *label_text = RADIANT_NAME " " RADIANT_VERSION_STRING " (" __DATE__ ")\n"
                                                                                RADIANT_ABOUTMSG "\n\n"
-                                                                               "This program is free software\n"
-                                                                               "licensed under the GNU GPL.\n\n"
-                                                                               "Get news and updates on "
+                                                                               RADIANT_NAME " is a community project "
+                                                                               "maintained by Xonotic\n"
+                                                                               "and developed with help from"
+                                                                               " other game projects and\n"
+                                                                               "individuals.\n\n"
+                                                                               "Get news and latest build at "
                                                                                "<a href='https://netradiant.gitlab.io/'>"
                                                                                        "netradiant.gitlab.io"
-                                                                               "</a>\n\n"
-                                                                               RADIANT_NAME " is unsupported, however\n"
-                                                                               "you may report your problems at\n"
+                                                                               "</a>\n"
+                                                                               "Please report your issues at "
                                                                                "<a href='https://gitlab.com/xonotic/netradiant/issues'>"
                                                                                        "gitlab.com/xonotic/netradiant/issues"
-                                                                               "</a>";
+                                                                               "</a>\n\n"
+                                                                               "The team cannot provide support"
+                                                                               " for custom builds.\n\n"
+                                                                               "This program is free software licensed under the GNU GPL.";
 
                                auto label = ui::Label( label_text );
                                gtk_label_set_use_markup( GTK_LABEL( label ), true );
 
                                label.show();
-                               hbox.pack_start( label, FALSE, FALSE, 0 );
-                               gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
+                               hbox.pack_start( label, TRUE, TRUE, 0 );
+                               gtk_misc_set_alignment( GTK_MISC( label ), 0, 0 );
                                gtk_label_set_justify( label, GTK_JUSTIFY_LEFT );
                        }
 
                        {
                 auto vbox2 = create_dialog_vbox( 4 );
-                               hbox.pack_start( vbox2, FALSE, TRUE, 0 );
+                               hbox.pack_start( vbox2, TRUE, TRUE, 0 );
                                {
                     auto button = create_modal_dialog_button( "OK", ok_button );
                                        vbox2.pack_start( button, FALSE, FALSE, 0 );