Skip to content

Commit 12b5f6b

Browse files
committed
Don't Stop 'Til You Get Enough
1 parent 1634ec3 commit 12b5f6b

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
matrix:
1414
config:
1515
- name: Windows
16-
os: windows-latest
16+
os: ubuntu-latest
17+
target: Win64
1718
build-config: RelWithDebInfo
1819

1920
- name: macOS
@@ -38,9 +39,8 @@ jobs:
3839
- uses: actions/checkout@v4
3940

4041
- name: Build the mod
41-
uses: hiimjasmine00/build-geode-mod@main
42+
uses: hiimjasmine00/build-geode-mod@xwin
4243
with:
43-
sdk: nightly
4444
build-config: ${{ matrix.config.build-config || 'Release' }}
4545
export-pdb: true
4646
export-symbols: true
@@ -53,7 +53,7 @@ jobs:
5353
needs: ['build']
5454

5555
steps:
56-
- uses: hiimjasmine00/build-geode-mod/combine@main
56+
- uses: geode-sdk/build-geode-mod/combine@main
5757
id: build
5858

5959
- uses: actions/upload-artifact@v4

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif()
99
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
1010
set(GEODE_DISABLE_PRECOMPILED_HEADERS ON)
1111

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

1414
add_library(${PROJECT_NAME} SHARED
1515
src/classes/SearchHistoryNode.cpp

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Search History
2-
A mod that allows you to view your search history.
2+
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

about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Search History
2-
A mod that allows you to view your search history.
2+
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

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Search History Changelog
2+
## v1.1.4 (2025-06-23)
3+
- Ported to Geode v4.6.1
4+
25
## v1.1.3 (2025-04-08)
36
- Added support for iOS
47
- Fixed a bug where incognito mode would act in reverse

mod.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"geode": "4.3.1",
2+
"geode": "4.6.1",
33
"gd": {
44
"android": "2.2074",
55
"win": "2.2074",
66
"mac": "2.2074",
77
"ios": "2.2074"
88
},
9-
"version": "v1.1.3",
9+
"version": "v1.1.4",
1010
"id": "hiimjustin000.search_history",
1111
"name": "Search History",
1212
"developer": "hiimjasmine00",
13-
"description": "A mod that allows you to view your search history.",
13+
"description": "Save and view your recent searches.",
1414
"dependencies": {
1515
"geode.node-ids": ">=v1.9.0"
1616
},

0 commit comments

Comments
 (0)