Skip to content

Commit 285b00a

Browse files
authored
iOS support (#90)
1 parent f93e43f commit 285b00a

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build-type: RelWithDebInfo
1818
- name: macOS
1919
os: macos-latest
20+
- name: iOS
21+
os: macos-latest
22+
target: iOS
2023
- name: Android32
2124
os: ubuntu-22.04
2225
target: Android32
@@ -32,7 +35,7 @@ jobs:
3235
uses: actions/checkout@v4
3336

3437
- name: Build
35-
uses: geode-sdk/build-geode-mod@ccache-tests
38+
uses: geode-sdk/build-geode-mod@main
3639
with:
3740
export-pdb: true
3841
combine: true

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set(CMAKE_CXX_VISIBILITY_PRESET hidden)
1010

1111
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
1212

13-
project(jukebox VERSION 3.2.0)
13+
project(jukebox VERSION 3.2.1)
1414

1515
file(GLOB SOURCES
1616
jukebox/jukebox/ui/*.cpp

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v3.2.1
4+
5+
* Experimental iOS support!
6+
37
## v3.2.0
48

59
* Remove all usage of std::stoi, fixing some crashes in the process

mod.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
2-
"geode": "4.3.1",
3-
"version": "3.2.0",
2+
"geode": "4.4.0",
3+
"version": "3.2.1",
44
"id": "fleym.nongd",
55
"name": "Jukebox",
66
"gd": {
77
"win": "2.2074",
88
"mac": "2.2074",
9+
"ios": "2.2074",
910
"android": "2.2074"
1011
},
1112
"developers": [

0 commit comments

Comments
 (0)