Cleanup.
This commit is contained in:
parent
6601587af0
commit
6940ddd85e
@ -49,7 +49,6 @@ Supported rendering backends:
|
|||||||
Supported platforms:
|
Supported platforms:
|
||||||
|
|
||||||
* Android (14+, ARM, x86, MIPS)
|
* Android (14+, ARM, x86, MIPS)
|
||||||
* asm.js/Emscripten (1.25.0)
|
|
||||||
* FreeBSD
|
* FreeBSD
|
||||||
* iOS (iPhone, iPad, AppleTV)
|
* iOS (iPhone, iPad, AppleTV)
|
||||||
* Linux
|
* Linux
|
||||||
@ -57,8 +56,9 @@ Supported platforms:
|
|||||||
* OSX (10.12+)
|
* OSX (10.12+)
|
||||||
* PlayStation 4
|
* PlayStation 4
|
||||||
* RaspberryPi
|
* RaspberryPi
|
||||||
* Windows (XP, Vista, 7, 8, 10)
|
|
||||||
* UWP (Universal Windows, Xbox One)
|
* UWP (Universal Windows, Xbox One)
|
||||||
|
* Wasm/Emscripten
|
||||||
|
* Windows (XP, Vista, 7, 8, 10)
|
||||||
|
|
||||||
Supported compilers:
|
Supported compilers:
|
||||||
|
|
||||||
|
@ -35,7 +35,6 @@ Supported Platforms
|
|||||||
~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
- Android (14+, ARM, x86, MIPS)
|
- Android (14+, ARM, x86, MIPS)
|
||||||
- asm.js/Emscripten (1.25.0)
|
|
||||||
- FreeBSD
|
- FreeBSD
|
||||||
- iOS (iPhone, iPad, AppleTV)
|
- iOS (iPhone, iPad, AppleTV)
|
||||||
- Linux
|
- Linux
|
||||||
@ -43,8 +42,9 @@ Supported Platforms
|
|||||||
- OSX (10.12+)
|
- OSX (10.12+)
|
||||||
- PlayStation 4
|
- PlayStation 4
|
||||||
- RaspberryPi
|
- RaspberryPi
|
||||||
- Windows (XP, Vista, 7, 8, 10)
|
|
||||||
- UWP (Universal Windows, Xbox One)
|
- UWP (Universal Windows, Xbox One)
|
||||||
|
- Wasm/Emscripten
|
||||||
|
- Windows (XP, Vista, 7, 8, 10)
|
||||||
|
|
||||||
Supported Compilers
|
Supported Compilers
|
||||||
~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -97,6 +97,11 @@ newaction {
|
|||||||
|
|
||||||
local f = io.popen("git rev-list --count HEAD")
|
local f = io.popen("git rev-list --count HEAD")
|
||||||
local rev = string.match(f:read("*a"), ".*%S")
|
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:close()
|
||||||
f = io.popen("git log --format=format:%H -1")
|
f = io.popen("git log --format=format:%H -1")
|
||||||
local sha1 = f:read("*a")
|
local sha1 = f:read("*a")
|
||||||
|
Loading…
Reference in New Issue
Block a user