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

Merge branch 'main' into wiki-dev

This commit is contained in:
Roland Heyder 2022-05-21 00:23:32 +02:00
commit bec7e9cdf4
7 changed files with 5 additions and 3 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

View file

@ -33,7 +33,7 @@ qbs_set(__STRING_VERSION,qbs_add(__STRING_VERSION,__STRING_VERSIONLABEL));
qbs_cleanup(qbs_tmp_base,0);
if(!qbevent)break;evnt(24,14,"version.bas");}while(r);
S_9:;
if ((qbs_cleanup(qbs_tmp_base,qbs_notequal(__STRING_VERSIONLABEL,qbs_new_txt_len("",0))))||new_error){
if ((qbs_cleanup(qbs_tmp_base,(qbs_notequal(__STRING_VERSIONLABEL,qbs_new_txt_len("",0)))&(qbs_notequal(__STRING_VERSIONLABEL,qbs_new_txt_len("-UNKNOWN",8)))))||new_error){
if(qbevent){evnt(24,16,"version.bas");if(r)goto S_9;}
do{
*__BYTE_ISCIVERSION= -1 ;

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