Skip to content

Commit 577dbcd

Browse files
committed
And I'm like, "Who?" And I'm like, "What?"
1 parent 12b5f6b commit 577dbcd

16 files changed

+918
-378
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*.{cpp,hpp}]
2+
insert_final_newline = true
3+
indent_style = space
4+
indent_size = 4
5+
trim_trailing_whitespace = true
6+
charset = utf-8
7+
end_of_line = lf

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- "master"
7+
- "**"
88

99
jobs:
1010
build:

CMakeLists.txt

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
cmake_minimum_required(VERSION 3.21)
2-
set(CMAKE_CXX_STANDARD 20)
2+
set(CMAKE_CXX_STANDARD 23)
33
set(CMAKE_CXX_STANDARD_REQUIRED ON)
44
if ("${CMAKE_SYSTEM_NAME}" STREQUAL "iOS" OR IOS)
55
set(CMAKE_OSX_ARCHITECTURES "arm64")
66
else()
7-
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64")
7+
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
88
endif()
99
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
1010
set(GEODE_DISABLE_PRECOMPILED_HEADERS ON)
1111

12-
project(SearchHistory VERSION 1.1.4)
12+
project(SearchHistory VERSION 1.2.0)
1313

14-
add_library(${PROJECT_NAME} SHARED
15-
src/classes/SearchHistoryNode.cpp
16-
src/classes/SearchHistoryPopup.cpp
17-
src/hooks/LevelSearchLayer.cpp
18-
src/SearchHistory.cpp
19-
)
14+
file(GLOB_RECURSE SOURCES CONFIGURE_DEPENDS src/*.cpp)
15+
16+
add_library(${PROJECT_NAME} SHARED ${SOURCES})
2017

2118
if (NOT DEFINED ENV{GEODE_SDK})
2219
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Save and view your recent searches.
33

44
## Features
55
- A button in the level search menu that allows you to view your search history
6-
- A popup that shows your search history, including a filter text box, and entries that can be used to search again
6+
- A popup that shows your search history, including advanced filter options, and entries that can be used to search again
77
- Incognito mode, which allows you to search without saving to your search history
88

99
## Credits
@@ -13,7 +13,7 @@ Save and view your recent searches.
1313
- [hiimjasmine00](https://gdbrowser.com/u/7466002) - Creator of the mod
1414

1515
## Gallery
16-
![Search History Popup ](./resources/search-history.png)
16+
![Search History Popup](https://raw.githubusercontent.com/hiimjasmine00/SearchHistory/refs/heads/master/resources/search-history.png)
1717

18-
# License
19-
This mod is licensed under the [MIT License](./LICENSE).
18+
## License
19+
This mod is licensed under the [MIT License](https://github.com/hiimjasmine00/SearchHistory/blob/master/LICENSE).

about.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Save and view your recent searches.
33

44
## Features
55
- A button in the level search menu that allows you to view your search history
6-
- A popup that shows your search history, including a filter text box, and entries that can be used to search again
6+
- A popup that shows your search history, including advanced filter options, and entries that can be used to search again
77
- Incognito mode, which allows you to search without saving to your search history
88

99
## Credits
@@ -13,4 +13,7 @@ Save and view your recent searches.
1313
- [hiimjasmine00](user:7466002) - Creator of the mod
1414

1515
## Gallery
16-
![Search History Popup](hiimjustin000.search_history/search-history.png?scale=0.625)
16+
![Search History Popup](hiimjustin000.search_history/search-history.png?width=300)
17+
18+
## License
19+
This mod is licensed under the [MIT License](https://github.com/hiimjasmine00/SearchHistory/blob/master/LICENSE).

changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Search History Changelog
2+
## v1.2.0 (2025-10-26)
3+
- Added advanced filtering options
4+
25
## v1.1.4 (2025-06-23)
36
- Ported to Geode v4.6.1
47

@@ -36,4 +39,4 @@ _ Added node IDs to the search history popup and entries
3639
- Fixed a layering issue in the mod's logo
3740

3841
## v1.0.0 (2024-08-07)
39-
- Initial release
42+
- Initial release

mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"geode": "4.6.1",
2+
"geode": "4.9.0",
33
"gd": {
44
"android": "2.2074",
55
"win": "2.2074",
66
"mac": "2.2074",
77
"ios": "2.2074"
88
},
9-
"version": "v1.1.4",
9+
"version": "v1.2.0",
1010
"id": "hiimjustin000.search_history",
1111
"name": "Search History",
1212
"developer": "hiimjasmine00",

0 commit comments

Comments
 (0)