Change Frotz homepage to 661.org and add short commit git hash.
authorDavid Griffith <dave@661.org>
Sat, 28 Jul 2018 02:03:42 +0000 (19:03 -0700)
committerDavid Griffith <dave@661.org>
Tue, 31 Jul 2018 08:45:29 +0000 (01:45 -0700)
src/curses/ux_init.c

index 66126b8c103a7f1950a5c2e42af6b15b85724aec..e40666e81edd2e347d4c03582c4ffa6da0cc1afc 100644 (file)
@@ -1133,20 +1133,21 @@ error:
 
 static void print_version(void)
 {
-    printf("FROTZ V%s\t", frotz_version);
+    printf("FROTZ V%s\t   ", frotz_version);
 #ifndef NO_SOUND
         printf("Audio output enabled.");
 #else
        printf("Audio output disabled.");
 #endif
-    printf("\nGit commit:\t%s\n", GIT_HASH);
-    printf("Git tag:\t%s\n", GIT_TAG);
-    printf("Git branch:\t%s\n", GIT_BRANCH);
-    printf("Build:\t\t%s\n", frotz_v_build);
+    printf("\nBuild:\t\t   %s\n", frotz_v_build);
+    printf("Git commit:\t   %s\n", GIT_HASH);
+    printf("Git commit short:  %s\n", GIT_HASH_SHORT);
+    printf("Git tag:\t   %s\n", GIT_TAG);
+    printf("Git branch:\t   %s\n", GIT_BRANCH);
     printf("  Frotz was originally written by Stefan Jokisch.\n");
     printf("  It complies with standard 1.0 of Graham Nelson's specification.\n");
     printf("  It was ported to Unix by Galen Hazelwood.\n");
     printf("  The core and Unix port are currently maintained by David Griffith.\n");
-    printf("  See https://github.com/DavidGriffith/frotz for Frotz's homepage.\n\n");
+    printf("  See https://661.org/proj/if/frotz for Frotz's homepage.\n\n");
     return;
 }