1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00

Merge pull request #140 from QB64-Phoenix-Edition/version-update

Update version.bas
This commit is contained in:
Roland Heyder 2022-08-26 16:00:23 +02:00 committed by GitHub
commit a4ac743401
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View file

@ -52,8 +52,6 @@ Repository Layout
- `push-internal-source.sh`
- If `./internal/source` is different after building `./source/qb64pe.bas`, then this will automatically push those changes to the repository to update the sources used to build `qb64pe_bootstrap`.
- `internal/`
- `help/`
- Contains a downloaded copy of the help files, so that they do not have to be downloaded when QB64-PE is installed.
- `c/` - Contains everything related to the C/C++ source files for QB64-PE.
- `c_compiler/`
- On Windows, this folder is populated with the MinGW C++ compiler during the CI process (or when using `setup_win.bat`.

View file

@ -1,9 +1,9 @@
DIM SHARED Version AS STRING
DIM SHARED IsCiVersion AS _BYTE
Version$ = "0.8.2"
$VERSIONINFO:FileVersion#=0,8,2,0
$VERSIONINFO:ProductVersion#=0,8,2,0
Version$ = "3.0.0"
$VERSIONINFO:FileVersion#=3,0,0,0
$VERSIONINFO:ProductVersion#=3,0,0,0
' If ./internal/version.txt exist, then this is some kind of CI build with a label
If _FILEEXISTS("internal/version.txt") THEN