This commit is contained in:
Бранимир Караџић 2022-03-31 20:21:32 -07:00
parent 6601587af0
commit 6940ddd85e
3 changed files with 9 additions and 4 deletions

View File

@ -49,7 +49,6 @@ Supported rendering backends:
Supported platforms:
* Android (14+, ARM, x86, MIPS)
* asm.js/Emscripten (1.25.0)
* FreeBSD
* iOS (iPhone, iPad, AppleTV)
* Linux
@ -57,8 +56,9 @@ Supported platforms:
* OSX (10.12+)
* PlayStation 4
* RaspberryPi
* Windows (XP, Vista, 7, 8, 10)
* UWP (Universal Windows, Xbox One)
* Wasm/Emscripten
* Windows (XP, Vista, 7, 8, 10)
Supported compilers:

View File

@ -35,7 +35,6 @@ Supported Platforms
~~~~~~~~~~~~~~~~~~~
- Android (14+, ARM, x86, MIPS)
- asm.js/Emscripten (1.25.0)
- FreeBSD
- iOS (iPhone, iPad, AppleTV)
- Linux
@ -43,8 +42,9 @@ Supported Platforms
- OSX (10.12+)
- PlayStation 4
- RaspberryPi
- Windows (XP, Vista, 7, 8, 10)
- UWP (Universal Windows, Xbox One)
- Wasm/Emscripten
- Windows (XP, Vista, 7, 8, 10)
Supported Compilers
~~~~~~~~~~~~~~~~~~~

View File

@ -97,6 +97,11 @@ newaction {
local f = io.popen("git rev-list --count HEAD")
local rev = string.match(f:read("*a"), ".*%S")
local codegen = require "codegen"
local idl = codegen.idl "bgfx.idl"
print("1." .. idl._version .. "." .. rev)
f:close()
f = io.popen("git log --format=format:%H -1")
local sha1 = f:read("*a")