2008-06-21 22:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/rtl/gtalleg/gtalleg.c
   * source/rtl/gtgui/gtgui.c
   * source/rtl/gtwin/gtwin.c
   * source/rtl/gtwvt/gtwvt.c
   * source/rtl/gtxwc/gtxwc.c
     * Changed some GT names to more descriptive, uniform ones 
       and leaving "win32" (it can be win64 too):

       "Win32 buffered console                  -> "Windows native console"
       "Win32 buffered WVT"                     -> "Windows GUI console (WVT)"
       "Strep GT driver for W32 GUI programs"   -> "Windows dummy console for GUI programs"
       "XWindow Console XWC"                    -> "XWindow GUI console (XWC)"
       "Multiplatform Allegro graphics console" -> "Portable Allegro GUI console"
This commit is contained in:
Viktor Szakats
2008-06-21 20:26:43 +00:00
parent db988d827a
commit 2c2595aa58
6 changed files with 20 additions and 5 deletions

View File

@@ -8,6 +8,21 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2008-06-21 22:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/gtalleg/gtalleg.c
* source/rtl/gtgui/gtgui.c
* source/rtl/gtwin/gtwin.c
* source/rtl/gtwvt/gtwvt.c
* source/rtl/gtxwc/gtxwc.c
* Changed some GT names to more descriptive, uniform ones
and leaving "win32" (it can be win64 too):
"Win32 buffered console -> "Windows native console"
"Win32 buffered WVT" -> "Windows GUI console (WVT)"
"Strep GT driver for W32 GUI programs" -> "Windows dummy console for GUI programs"
"XWindow Console XWC" -> "XWindow GUI console (XWC)"
"Multiplatform Allegro graphics console" -> "Portable Allegro GUI console"
2008-06-21 21:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* doc/whatsnew.txt
+ Some updates.

View File

@@ -590,7 +590,7 @@ static char * hb_gt_alleg_Version( PHB_GT pGT, int iType )
if( iType == 0 )
return HB_GT_DRVNAME( HB_GT_NAME );
return "Harbour Terminal: Multiplatform Allegro graphics console";
return "Harbour Terminal: Portable Allegro GUI console";
}
static BOOL hb_gt_alleg_SetMode( PHB_GT pGT, int iRows, int iCols )

View File

@@ -79,7 +79,7 @@ static char * hb_gt_gui_Version( PHB_GT pGT, int iType )
if ( iType == 0 )
return HB_GT_DRVNAME( HB_GT_NAME );
return "Harbour Terminal: Strep GT driver for W32 GUI programs";
return "Harbour Terminal: Windows dummy console for GUI programs";
}
/* *********************************************************************** */

View File

@@ -856,7 +856,7 @@ static char * hb_gt_win_Version( PHB_GT pGT, int iType )
if( iType == 0 )
return HB_GT_DRVNAME( HB_GT_NAME );
return "Harbour Terminal: Win32 buffered console";
return "Harbour Terminal: Windows native console";
}
/* *********************************************************************** */

View File

@@ -1725,7 +1725,7 @@ static char * hb_gt_wvt_Version( PHB_GT pGT, int iType )
if( iType == 0 )
return HB_GT_DRVNAME( HB_GT_NAME );
return "Harbour Terminal: Win32 buffered WVT";
return "Harbour Terminal: Windows GUI console (WVT)";
}
/* ********************************************************************** */

View File

@@ -3434,7 +3434,7 @@ static char * hb_gt_xwc_Version( PHB_GT pGT, int iType )
if( iType == 0 )
return HB_GT_DRVNAME( HB_GT_NAME );
return "Harbour Terminal: XWindow Console XWC";
return "Harbour Terminal: XWindow GUI console (XWC)";
}
/* *********************************************************************** */