Skip to content

Commit

Permalink
Mark some extensions and 32bit build deprecated (#1604)
Browse files Browse the repository at this point in the history
* Update controller.cpp

* Update README.md

* Update CHANGELOG.md
  • Loading branch information
aismann authored Jan 11, 2024
1 parent 5380291 commit 781b4ce
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 20 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@
- Add support for window resized and positioned by @lich426
- Add extension: Inspector by @iAndyHD3
- Add *experimental* WebSocket support for both wasm and native platforms
- Mark 32bit build deprecated, and will be removed in next release axmol-2.2.0
- Add extension: DrawNodeEx by @aismann
- Add fairygui lua support by @Samoongeer

### Mark as deprecated, and will be removed in next release axmol-2.2.0
- 32bit build
- Extensions
- DragonBones
- GUI
- Zwoptex (Commented on cpp-test)

### BugFixs

- Fix MSL texture order does not follow GLSL binding order
Expand Down
50 changes: 32 additions & 18 deletions extensions/README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
# The axmol extensions

## DragonBones
# The Axmol extensions

## DragonBones - Deprecrated, will be removed in axmol-2.2.0 (see #1602)
- Upstream: https://github.com/DragonBones/DragonBonesCPP
- Version: 4.5
- License: MIT

## DrawNodeEx
- Upstream: https://github.com/axmolengine/axmol
- Version: 0.9
- License: MIT

## Effekseer (OFF default)
- [![Upstream](https://img.shields.io/github/v/release/effekseer/Effekseer?label=Upstream)](https://github.com/effekseer/EffekseerForCocos2d-x)
- https://github.com/effekseer/EffekseerForCocos2d-x
- https://github.com/effekseer/Effekseer
- Version: 1.70
- License: MIT


## GUI - DEPRECATED

## GUI - Deprecrated, will be removed in axmol-2.2.0 (see #1602)
- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT
Expand All @@ -24,47 +26,59 @@
- [![Upstream](https://img.shields.io/github/v/release/ocornut/imgui?label=Upstream)](https://github.com/ocornut/imgui)
- Version: 1.90-docking
- License: MIT

## Inspector
- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## Live2D (OFF default)
## JSONDefault
- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## Live2D (OFF default)
- Upstream: https://www.live2d.com/en/download/cubism-sdk/download-native/
- Version: [4-r.4] - 2021-12-09
- License: Live2D Proprietary Software License

## Particle3D
- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## SDFGen
- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## FairyGUI
## Asset-Manager
- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## CocosStudio
- Upstream: https://github.com/axmolengine/axmol
- original repo: Upstream: https://github.com/fairygui/FairyGUI-cocos2dx
- Version: axmol-1.0
- License: MIT

## FairyGUI
- Upstream: https://github.com/axmolengine/axmol
- original repo: Upstream: https://github.com/fairygui/FairyGUI-cocos2dx
- Version: axmol-1.0
- License: MIT

## physics-nodes

- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## scripting/lua

- Upstream: https://github.com/axmolengine/axmol
- Version: axmol-1.0
- License: MIT

## spine

- Upstream: https://github.com/EsotericSoftware/spine-runtimes
- Version: 4.1-c9af18e with changes to adapte axmol
- License: Spine Runtimes License

## DrawNodeEx

- Upstream: https://github.com/axmolengine/axmol
- Version: 0.9
- License: MIT
2 changes: 1 addition & 1 deletion tests/cpp-tests/Source/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class RootTests : public TestList
#if (AX_TARGET_PLATFORM == AX_PLATFORM_IOS || AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID)
addTest("Vibrate", []() { return new VibrateTests(); });
#endif
addTest("Zwoptex", []() { return new ZwoptexTests(); });
// addTest("Zwoptex Deprecrated, will be removed in release axmol-2.2.0 (see #1602)", []() { return new ZwoptexTests(); });
addTest("SpriteFrameCache", []() { return new SpriteFrameCacheTests(); }); // TODO
#if (AX_TARGET_PLATFORM == AX_PLATFORM_MAC || AX_TARGET_PLATFORM == AX_PLATFORM_WIN32 || \
AX_TARGET_PLATFORM == AX_PLATFORM_LINUX)
Expand Down

0 comments on commit 781b4ce

Please sign in to comment.