1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00

Compare commits

...

3 commits

Author SHA1 Message Date
github-actions[bot] 5b33b73da9 Automatic update of ./internal/source 2024-05-01 15:14:44 +00:00
Samuel Gomes 7130e923fd
Merge pull request #488 from a740g/main
Bump version to 3.13.0
2024-05-01 20:26:31 +05:30
Samuel Gomes 96d3be2dbf Bump version to 3.13.0 2024-05-01 18:02:06 +05:30
3 changed files with 8 additions and 8 deletions

View file

@ -5,8 +5,8 @@
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "qb64pe.manifest"
1 VERSIONINFO
FILEVERSION 3,12,0,0
PRODUCTVERSION 3,12,0,0
FILEVERSION 3,13,0,0
PRODUCTVERSION 3,13,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
@ -14,13 +14,13 @@ BEGIN
BEGIN
VALUE "CompanyName","QB64 Phoenix Edition\0"
VALUE "FileDescription","QB64 IDE and Compiler\0"
VALUE "FileVersion","3,12,0,0\0"
VALUE "FileVersion","3,13,0,0\0"
VALUE "InternalName","qb64pe.bas\0"
VALUE "LegalCopyright","MIT\0"
VALUE "LegalTrademarks","\0"
VALUE "OriginalFilename","qb64pe.exe\0"
VALUE "ProductName","QB64-PE\0"
VALUE "ProductVersion","3,12,0,0\0"
VALUE "ProductVersion","3,13,0,0\0"
VALUE "Comments","QB64 is a modern extended BASIC programming language that retains QB4.5/QBasic compatibility and compiles native binaries for Windows, Linux and macOS.\0"
VALUE "Web","\0"
END

View file

@ -7,7 +7,7 @@ if(!qbevent)break;evnt(24,1,"version.bas");}while(r);
do{
if(!qbevent)break;evnt(24,2,"version.bas");}while(r);
do{
qbs_set(__STRING_VERSION,qbs_new_txt_len("3.12.0",6));
qbs_set(__STRING_VERSION,qbs_new_txt_len("3.13.0",6));
qbs_cleanup(qbs_tmp_base,0);
if(!qbevent)break;evnt(24,4,"version.bas");}while(r);
S_4:;

View file

@ -1,9 +1,9 @@
DIM SHARED Version AS STRING
DIM SHARED IsCiVersion AS _BYTE
Version$ = "3.12.0"
$VERSIONINFO:FILEVERSION#=3,12,0,0
$VERSIONINFO:PRODUCTVERSION#=3,12,0,0
Version$ = "3.13.0"
$VERSIONINFO:FILEVERSION#=3,13,0,0
$VERSIONINFO:PRODUCTVERSION#=3,13,0,0
' If ./internal/version.txt exist, then this is some kind of CI build with a label
IF _FILEEXISTS("internal/version.txt") THEN