mirror of https://github.com/axmolengine/axmol.git
commit
9a1c67031a
|
@ -35,7 +35,7 @@ _USRSTUDIOPDLL
|
||||||
- [x] 2. Remove SimpleAudio
|
- [x] 2. Remove SimpleAudio
|
||||||
- [ ] 3. Remove offthread file operation
|
- [ ] 3. Remove offthread file operation
|
||||||
- [x] 4. Remove getSutiableFOpen, avoid reduce performance, there is another better solution for support: ```just doesn't convert path to utf-8 in FileUtils manually implementation```
|
- [x] 4. Remove getSutiableFOpen, avoid reduce performance, there is another better solution for support: ```just doesn't convert path to utf-8 in FileUtils manually implementation```
|
||||||
- [x] 5. Optimize CCDownloader, curl for all platforms
|
- [x] 5. Refactor CCDownloader, curl for all platforms, don't use scheduler to retrive progress info, make it more reuseable
|
||||||
- [ ] 7. Refactor engine-v5-deps, all compile as vs2019 MSVC 19.22.27905.0
|
- [ ] 7. Refactor engine-v5-deps, all compile as vs2019 MSVC 19.22.27905.0
|
||||||
- [x] 8. minizip-1.2.0
|
- [x] 8. minizip-1.2.0
|
||||||
- [x] 9. ccMessageBox
|
- [x] 9. ccMessageBox
|
||||||
|
|
|
@ -79,7 +79,6 @@ elseif(APPLE)
|
||||||
set(COCOS_AUDIO_PLATFORM_HEADER
|
set(COCOS_AUDIO_PLATFORM_HEADER
|
||||||
audio/apple/AudioDecoder.h
|
audio/apple/AudioDecoder.h
|
||||||
audio/apple/AudioPlayer.h
|
audio/apple/AudioPlayer.h
|
||||||
audio/apple/AudioMacros.h
|
|
||||||
audio/apple/AudioCache.h
|
audio/apple/AudioCache.h
|
||||||
audio/apple/AudioEngineImpl.h
|
audio/apple/AudioEngineImpl.h
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "ProgramStateRegistry.h"
|
#include "ProgramStateRegistry.h"
|
||||||
|
|
||||||
CC_BACKEND_BEGIN
|
CC_BACKEND_BEGIN
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"version": "v5-deps-1",
|
"version": "v5-deps-2",
|
||||||
"zip_file_size": "103868946",
|
"zip_file_size": "103868975",
|
||||||
"repo_name": "engine-v5-3rd",
|
"repo_name": "engine-v5-3rd",
|
||||||
"repo_parent": "https://github.com/simdsoft/",
|
"repo_parent": "https://github.com/simdsoft/",
|
||||||
"move_dirs": {
|
"move_dirs": {
|
||||||
|
|
|
@ -119,7 +119,7 @@ function genernate_binding_codes()
|
||||||
|
|
||||||
echo "Create auto-generated luabinding glue codes."
|
echo "Create auto-generated luabinding glue codes."
|
||||||
pushd "$COCOS2DX_ROOT/tools/tolua"
|
pushd "$COCOS2DX_ROOT/tools/tolua"
|
||||||
python ./genbindings.py
|
# python ./genbindings.py
|
||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue