1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-22 07:55:14 +00:00
QB64-PE/source/global/version.bas

14 lines
358 B
QBasic
Raw Normal View History

DIM SHARED Version AS STRING
DIM SHARED BuildNum AS STRING
2017-01-21 00:56:50 +00:00
DIM SHARED AutoBuildMsg AS STRING
2018-11-02 09:17:33 +00:00
2020-01-19 23:34:50 +00:00
Version$ = "1.4"
2020-01-22 18:28:43 +00:00
BuildNum$ = "Release Candidate"
2018-11-02 09:17:33 +00:00
IF _FILEEXISTS("internal/version.txt") THEN
versionfile = FREEFILE
OPEN "internal/version.txt" FOR INPUT AS #versionfile
LINE INPUT #versionfile, AutoBuildMsg
CLOSE #versionfile
END IF