Skip to content

Commit 79d860e

Browse files
committed
Merge branch 'master' of github.com:openframeworks/openFrameworks
2 parents a636891 + a9b878e commit 79d860e

File tree

96 files changed

+7938
-6594
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+7938
-6594
lines changed

.github/workflows/build-emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
TARGET: ${{matrix.cfg.target}}
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- name: Docker Step
3232
run: "docker run -di --name emscripten -v $PWD:/src emscripten/emsdk:3.1.21 bash"
3333
- name: Download libs

.github/workflows/build-ios-tvos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
TARGET: ${{matrix.cfg.target}}
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Download libs
3535
run: ./scripts/${{matrix.cfg.libs}}/download_libs.sh
3636
- name: install

.github/workflows/build-linux-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
TARGET: ${{matrix.cfg.target}}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Download libs
3333
run: ./scripts/linux/download_libs.sh -a ${{matrix.cfg.libs}};
3434
- name: Install dependencies

.github/workflows/build-linux-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
TARGET: ${{matrix.cfg.target}}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Install libunwind
1919
run: sudo apt-get install libunwind-dev
2020
- name: Install dependencies
@@ -25,7 +25,7 @@ jobs:
2525
run: scripts/ci/package_builds.sh;
2626
id: createpackage
2727
- name: Update Release
28-
uses: IsaacShelton/[email protected].2
28+
uses: IsaacShelton/[email protected].3
2929
with:
3030
token: ${{ secrets.GITHUB_TOKEN }}
3131
tag: nightly

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
TARGET: ${{matrix.cfg.target}}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Download libs
3333
run: ./scripts/linux/download_libs.sh -a ${{matrix.cfg.libs}};
3434
- name: Remove Old lib-unwind

.github/workflows/build-macos.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,19 @@ jobs:
2929
TARGET: ${{matrix.cfg.target}}
3030
OPT: ${{matrix.cfg.opt}}
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Cache compile
3434
id: cache-compile
3535
uses: actions/cache@v3
3636
env:
3737
cache-name: cache-keep-compile
3838
with:
3939
path: |
40-
libs/openFrameworksCompiled/lib/osx/*.a
4140
libs/openFrameworksCompiled/lib/osx/**/
4241
addons/obj/osx/**/
43-
scripts/templates/osx/build/**/
4442
45-
key: ${{ runner.os }}-${{matrix.cfg.opt}}-${{ env.cache-name }}-${{ hashFiles('**/*.cpp') }}
43+
# key: ${{ runner.os }}-${{matrix.cfg.opt}}-${{ env.cache-name }}-${{ hashFiles('**/*.cpp') }}
44+
key: ${{ runner.os }}-${{matrix.cfg.opt}}-${{ env.cache-name }}-
4645
restore-keys: |
4746
${{ runner.os }}-${{matrix.cfg.opt}}-${{ env.cache-name }}-
4847
@@ -91,7 +90,7 @@ jobs:
9190

9291
- name: Build
9392
run:
94-
if [ "$TARGET" = "osx" ] && [ "$OPT" = "xcode" ]; then
93+
if [ "$OPT" = "xcode" ]; then
9594
scripts/ci/$TARGET/build.sh $OPT;
9695
else
9796
scripts/ci/$TARGET/run_tests.sh;

.github/workflows/build-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run:
3030
shell: msys2 {0}
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- uses: msys2/setup-msys2@v2
3434
with:
3535
update: true

.github/workflows/build-vs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
BITS: ${{ matrix.bits }}
3030
steps:
3131
- name: Clone repository
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
- uses: msys2/setup-msys2@v2
3434
with:
3535
update: true

.github/workflows/manual-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
TARGET: ${{matrix.cfg.target}}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Install libunwind
2222
run: sudo apt-get install libunwind-dev
2323
- name: Install dependencies
@@ -28,7 +28,7 @@ jobs:
2828
run: scripts/ci/package_builds.sh ${{ github.event.inputs.release }};
2929
id: createpackage
3030
- name: Update Release
31-
uses: IsaacShelton/[email protected].2
31+
uses: IsaacShelton/[email protected].3
3232
with:
3333
token: ${{ secrets.GITHUB_TOKEN }}
3434
tag: ${{ github.event.inputs.release }}

addons/ofxEmscripten/libs/html5audio/lib/emscripten/library_html5audio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ var LibraryHTML5Audio = {
9797
var fileSizeInBytes = stats.size;
9898

9999
var tag = ext; //this covers most types
100-
if( ext == mp3 ){
100+
if( ext == 'mp3'){
101101
tag = 'mpeg';
102102
}else if( ext == 'oga'){
103103
tag = 'ogg';

0 commit comments

Comments
 (0)