Skip to content

Commit

Permalink
ah shit here we go again
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjustin000 committed Sep 3, 2024
1 parent 2236313 commit c7633ef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64")
set(CMAKE_CXX_VISIBILITY_PRESET hidden)

project(IntegratedDemonlist VERSION 1.6.0)
project(IntegratedDemonlist VERSION 1.6.1)

add_library(${PROJECT_NAME} SHARED
src/IDListLayer.cpp
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Integrated Demonlist Changelog
## v1.6.1 (2024-09-02)
- Fixed a bug where the enter key would not work at all

## v1.6.0 (2024-09-01)
- Added AREDL pack support
- Fixed a bug where the AREDL would not load at the start of the game
Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"win": "2.206",
"mac": "2.206"
},
"version": "v1.6.0",
"version": "v1.6.1",
"id": "hiimjustin000.integrated_demonlist",
"name": "Integrated Demonlist",
"developer": "hiimjustin000",
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class $modify(IDKeyboardDispatcher, CCKeyboardDispatcher) {
auto packLayer = static_cast<IDPackLayer*>(CCDirector::sharedDirector()->getRunningScene()->getChildByID("IDPackLayer"));
if (packLayer) packLayer->search();

return true;
return listLayer || packLayer;
}
else return CCKeyboardDispatcher::dispatchKeyboardMSG(key, down, repeat);
}
Expand Down

0 comments on commit c7633ef

Please sign in to comment.