1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00

Added a date and id stamp to appear in the About box.

This must be manually updated whenever you make a change to the code.
See source/global/version.bas for details.
This commit is contained in:
Luke Ceddia 2016-03-18 23:22:03 +11:00
parent 00b9b6a37f
commit 773291198c
2 changed files with 6 additions and 1 deletions

View file

@ -1,2 +1,7 @@
DIM SHARED Version AS STRING
DIM SHARED BuildNum AS STRING
Version$ = "1.000"
'BuildNum format is YYYYMMDD/id, where id is a ever-increasing
'integer. If you make a change, update the date and increase the id!
BuildNum$ = "20160318/1"

View file

@ -3785,7 +3785,7 @@ DO
IF menu$(m, s) = "#About..." THEN
PCOPY 2, 0
idemessagebox "About", "QB64 Version " + Version$
idemessagebox "About", "QB64 Version " + Version$ + " (" + BuildNum$ + ")"
PCOPY 3, 0: SCREEN , , 3, 0: idewait4mous: idewait4alt
GOTO ideloop
END IF