1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 16:10:39 +00:00

Merge pull request #68 from mkilgore/report-non-release-version

Report if the version of QB64 being used is unknown/manually-built
This commit is contained in:
Matt Kilgore 2022-05-20 17:40:11 -04:00 committed by GitHub
commit fa2001bace
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 4 additions and 2 deletions

View file

@ -6,6 +6,8 @@ SUCCESS=$?
rm qb64_bootstrap
rm internal/source/*
rm internal/temp/debug_* internal/temp/recompile_*
rm internal/temp/qb64.sym
rm internal/temp/qb64_bootstrap.sym
mv internal/temp/* internal/source/

1
.gitignore vendored
View file

@ -7,7 +7,6 @@ internal/temp*
internal/config*.txt
internal/config.ini
internal/help
internal/version.txt
internal/commit.txt
tempfoldersearch.bin
internal/c/qbx[2-9].cpp

Binary file not shown.

Binary file not shown.

1
internal/version.txt Normal file
View file

@ -0,0 +1 @@
-UNKNOWN

View file

@ -13,7 +13,7 @@ If _FILEEXISTS("internal/version.txt") THEN
LINE INPUT #versionfile, VersionLabel$
Version$ = Version$ + VersionLabel$
if VersionLabel$ <> "" then
if VersionLabel$ <> "" AND VersionLabel$ <> "-UNKNOWN" then
IsCiVersion = -1
end if