Skip to content

Commit

Permalink
Prepare release 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
halx99 committed Mar 25, 2024
1 parent f0c0c75 commit 6e62271
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 37 deletions.
28 changes: 14 additions & 14 deletions 1k/fetch.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -92,27 +92,27 @@ function(_1kfetch uri)
set(source_dir ${_pkg_store} PARENT_SCOPE)
endfunction()

# for example: _1kcm_add_pkg("gh:yasio/yasio#4.2.1")
function(_1kcm_add_pkg uri)
# simple cmake pkg management:
# for example: _1kadd_pkg("gh:yasio/yasio#4.2.1")
function(_1kadd_pkg uri)
_1kfetch(${uri} ${ARGN})

set(optValueArgs EXCLUDE_FROM_ALL)
set(oneValueArgs OPTIONS)
cmake_parse_arguments(opt "${optValueArgs}" "${oneValueArgs}" "" ${ARGN})
set(oneValueArgs BINARY_DIR)
set(multiValueArgs OPTIONS)
cmake_parse_arguments(opt "${optValueArgs}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
foreach(OPTION ${opt_OPTIONS})
_1k_parse_option("${OPTION}")
_1kparse_option("${OPTION}")
set(${OPTION_KEY} "${OPTION_VALUE}" CACHE BOOL "" FORCE)
endforeach()
set(binary_dir "")
if(IS_ABSOLUTE ${source_dir})
# string(LENGTH "${_1kfetch_cache_dir}/" _offset)
# string(LENGTH "${source_dir}" _len)
# math(EXPR _len "${_len} - ${_offset}" OUTPUT_FORMAT DECIMAL)
# string(SUBSTRING ${source_dir} ${_offset} ${_len} _path)
get_filename_component(_path ${source_dir} NAME)

get_filename_component(_path ${source_dir} NAME)
if(opt_BINARY_DIR)
set(binary_dir "${opt_BINARY_DIR}/${_path}")
else()
set(binary_dir "${CMAKE_BINARY_DIR}/1kiss/${_path}")
endif()

if (opt_EXCLUDE_FROM_ALL)
add_subdirectory(${source_dir} ${binary_dir} EXCLUDE_FROM_ALL)
else()
Expand All @@ -126,7 +126,7 @@ function(_1klink src dest)
execute_process(COMMAND ${PWSH_COMMAND} ${CMAKE_CURRENT_FUNCTION_LIST_DIR}/fsync.ps1 -s "${_srcDir}" -d "${_dstDir}" -l 1)
endfunction()

function(_1k_parse_option OPTION)
function(_1kparse_option OPTION)
string(REGEX MATCH "^[^ ]+" OPTION_KEY "${OPTION}")
string(LENGTH "${OPTION}" OPTION_LENGTH)
string(LENGTH "${OPTION_KEY}" OPTION_KEY_LENGTH)
Expand Down
25 changes: 2 additions & 23 deletions 3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -172,37 +172,16 @@ add_library(3rdparty INTERFACE)
set(_1kfetch_cache_dir "${_AX_ROOT}/cache" CACHE STRING "" FORCE)
set(_1kfetch_manifest "${_AX_ROOT}/manifest.json" CACHE STRING "" FORCE)

# fetch prebuilts of 1k_dist and git sources
# fetch prebuilts of 1kdist and git sources
include(${_AX_ROOT}/1k/fetch.cmake)

function(xpm_parse_option OPTION)
string(REGEX MATCH "^[^ ]+" OPTION_KEY "${OPTION}")
string(LENGTH "${OPTION}" OPTION_LENGTH)
string(LENGTH "${OPTION_KEY}" OPTION_KEY_LENGTH)
if(OPTION_KEY_LENGTH STREQUAL OPTION_LENGTH)
# no value for key provided, assume user wants to set option to "ON"
set(OPTION_VALUE "ON")
else()
math(EXPR OPTION_KEY_LENGTH "${OPTION_KEY_LENGTH}+1")
string(SUBSTRING "${OPTION}" "${OPTION_KEY_LENGTH}" "-1" OPTION_VALUE)
endif()
set(OPTION_KEY
"${OPTION_KEY}"
PARENT_SCOPE
)
set(OPTION_VALUE
"${OPTION_VALUE}"
PARENT_SCOPE
)
endfunction()

function(ax_add_3rd source_dir)
set(options EXCLUDE_FROM_ALL NO_LINK)
set(multiValueArgs TARGETS OPTIONS)
cmake_parse_arguments(opt "${options}" "" "${multiValueArgs}" ${ARGN})

foreach(OPTION ${opt_OPTIONS})
xpm_parse_option("${OPTION}")
_1kparse_option("${OPTION}")
set(${OPTION_KEY} "${OPTION_VALUE}" CACHE BOOL "" FORCE)
endforeach()

Expand Down
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Due to Axmol Engine is a fork of Cocos2d-x-4.0, so the [Cocos2d-x AUTHORS](https
armanhossiny
Arvant
bwaiox
binxiaojiao
crazyhappygame
CodeAndWeb
clawfinger (Dmitry Vassiliev)
Expand Down
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
## axmol-2.1.3 ?? 2024

### BugFixes

- Fix android build by @smilediver in https://github.com/axmolengine/axmol/pull/1723
- Fix EditBox error by @binxiaojiao in https://github.com/axmolengine/axmol/pull/1755
- Fix InputEvent in fairyGUI onKeyDown and onKeyUp by @binxiaojiao in https://github.com/axmolengine/axmol/pull/1757
- Fix wasm FPS control not working by @binxiaojiao in https://github.com/axmolengine/axmol/pull/1762
- Fix texture recreation when GL context is lost by @smilediver in https://github.com/axmolengine/axmol/pull/1763
- Fix DebugDraw issue in 3D physics by @halx99
- Fix OpenGLState cache error, reported by @solan-solan in https://github.com/axmolengine/axmol/issues/1759
- Fix linux crash after close window by @halx99

### Improvements

- Disable c++20 char8_t
- Improve build system
- Add wasm EditBox support
- HttpClient: add support for PATCH method by @smilediver in https://github.com/axmolengine/axmol/pull/1722
- Add -f switch info to axmol command help output by @rh101 in https://github.com/axmolengine/axmol/pull/1729
- Implement new axmol log system based on fmtlib by @halx99 in https://github.com/axmolengine/axmol/pull/1732
- Logging colorful support by @halx99 in https://github.com/axmolengine/axmol/pull/1735
- Improve logging color style by @halx99 in https://github.com/axmolengine/axmol/pull/1739
- Add support for verbose trace level logging by @rh101 in https://github.com/axmolengine/axmol/pull/1764
- Adapt DrawNodeEx to the changes on: Move color types to math/Color.h axmolengine#1741 by @aismann in https://github.com/axmolengine/axmol/pull/1760
- Removed the '\n' which creates a second (empty) line. by @aismann in https://github.com/axmolengine/axmol/pull/1746
- Add Node World Space Positioning by @DelinWorks in https://github.com/axmolengine/axmol/pull/1743
- Move color types to math/Color.h by @halx99 in https://github.com/axmolengine/axmol/pull/1741
- Removing EditBox should not result in logging an error message by @rh101 in https://github.com/axmolengine/axmol/pull/1740
- Update TLD axmol.org -> axmol.dev
- Rename folder thirdparty ==> 3rdparty
- Update spine to 4.1-54fac9d

### sdks updates

- emsdk: 3.1.53 ==> 3.1.56

### 3rdparty updates

- simdjson: 3.7.0 ==> 3.8.0

## axmol-2.1.2 Feb.25 2024

### BugFixes
Expand Down

0 comments on commit 6e62271

Please sign in to comment.