1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00

Merge pull request #417 from QB64-Phoenix-Edition/version-bump

Bump Version
This commit is contained in:
Roland Heyder 2023-12-18 16:28:34 +01:00 committed by GitHub
commit 437f351bb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -129,6 +129,7 @@ These flags controls whether certain dependencies are compiled in or not. All of
| `DEP_DEVICEINPUT` | Enables game controller input support. |
| `DEP_ZLIB` | Adds `_DEFLATE` and `_INFLATE` support. |
| `DEP_DATA` | Compiles in data produced via `DATA` statements. |
| `DEP_EMBED` | Compiles in data embedded via `$EMBED` statements. |
| `DEP_CONSOLE` | On Windows, this gives the program console support (graphical support is still allowed) |
| `DEP_CONSOLE_ONLY` | Same as `DEP_CONSOLE`, but also removes GLUT and graphics support. |
| `DEP_AUDIO_MINIAUDIO` | Pulls in sound support using miniaudio for playing sounds via `PLAY`, `_SNDPLAY`, and various other functions that makes sounds. |

View file

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

View file

@ -3460,7 +3460,7 @@ DO
NEXT
END IF
IF _FILEEXISTS(EmbedFile$) = 0 THEN a$ = "File '" + EmbedFile$ + "' not found": GOTO errmes
'verify handle validity (A-Z/a-z/0-9, begin with letter)
'verify handle validity (Aa-Zz/0-9, begin with letter)
SELECT CASE ASC(EmbedHandle$, 1)
CASE 0 TO 64, 91 TO 96, 123 TO 255
a$ = "First char of Embed-Handle '" + EmbedHandle$ + "' must be a letter": GOTO errmes