Skip to content

Commit d7a917b

Browse files
committed
More Sounds and Fixes
1 parent 6b9d2b6 commit d7a917b

File tree

12 files changed

+493
-258
lines changed

12 files changed

+493
-258
lines changed

.github/workflows/multi-platform.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
- name: Windows
1616
os: windows-latest
1717

18+
- name: macOS
19+
os: macos-latest
20+
1821
- name: Android32
1922
os: ubuntu-latest
2023
target: Android32
@@ -36,8 +39,7 @@ jobs:
3639
- name: Build the mod
3740
uses: geode-sdk/build-geode-mod@main
3841
with:
39-
cli: 'nightly'
40-
sdk: 'nightly'
42+
use-cpm-cache: false
4143
bindings-ref: main
4244
combine: true
4345
target: ${{ matrix.config.target }}

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ set(CMAKE_CXX_VISIBILITY_PRESET hidden)
1010

1111
project(EditorSounds VERSION 1.0.0)
1212

13-
add_library(${PROJECT_NAME} SHARED
14-
src/main.cpp
15-
# Add your cpp files here
13+
file(GLOB_RECURSE SOURCES
14+
src/*.cpp
1615
)
1716

17+
add_library(${PROJECT_NAME} SHARED ${SOURCES})
18+
1819
if (NOT DEFINED ENV{GEODE_SDK})
1920
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")
2021
else()

audio/gridDecrease.ogg

9.98 KB
Binary file not shown.

audio/gridIncrease.ogg

8.15 KB
Binary file not shown.
File renamed without changes.

audio/prevPage.ogg

7.29 KB
Binary file not shown.

audio/toggle.ogg

7.68 KB
Binary file not shown.

audio/toggleLink.ogg

8.48 KB
Binary file not shown.

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 1.2.0
2+
- New sounds!
3+
- New icon! (I spend way too much time on it)
4+
- Mac Support
5+
- Clean some things up
6+
7+
# 1.0.0 - 1.1.10
8+
- Release and Bugfixes

logo.png

157 KB
Loading

0 commit comments

Comments
 (0)