Skip to content

Commit

Permalink
Merge branch 'master' into wip-translator
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand committed Oct 1, 2024
2 parents 754f93d + 6277c81 commit 46c45ae
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 43 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/.cancel.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
- devel
- versus-ci-android

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

defaults:
run:
working-directory: Engine/android-project
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: "${{ matrix.config.name }} | ${{ matrix.config.build_type }}"
Expand Down
29 changes: 12 additions & 17 deletions .github/workflows/ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: "${{ matrix.config.name }} | ${{ matrix.config.build_type }}"
Expand Down Expand Up @@ -84,12 +88,9 @@ jobs:
g++-8 --version
cmake --version
- uses: actions/checkout@v3
with:
fetch-depth: 3
submodules: recursive
- uses: WohlSoft/[email protected]

- uses: Wohlstand/branch-name@v1.0.1-wohl
- uses: WohlSoft/branch-name@v0.1

- name: Check if a pull request
id: event-check
Expand All @@ -105,10 +106,8 @@ jobs:
- name: Download Qt
if: matrix.config.qt_download
uses: carlosperate/download-file-action@v2
with:
file-url: "${{ matrix.config.qt_download }}"
file-name: qt.tar.bz2
shell: bash
run: wget -d -nv -t 5 -O qt.tar.bz2 "${{ matrix.config.qt_download }}"

- name: Extract Qt
if: matrix.config.qt_install_dir
Expand All @@ -121,10 +120,8 @@ jobs:
- name: Download libreadline6
if: matrix.config.readline6_download
uses: carlosperate/download-file-action@v2
with:
file-url: "${{ matrix.config.readline6_download }}"
file-name: libreadline6.deb
shell: bash
run: wget -d -nv -t 5 -O libreadline6.deb "${{ matrix.config.readline6_download }}"

- name: Install LFTP
if: matrix.config.readline6_download
Expand All @@ -135,10 +132,8 @@ jobs:
- name: Download LFTP
if: matrix.config.lftp_download
uses: carlosperate/download-file-action@v2
with:
file-url: "${{ matrix.config.lftp_download }}"
file-name: lftp.deb
shell: bash
run: wget -d -nv -t 5 -O lftp.deb "${{ matrix.config.lftp_download }}"

- name: Install LFTP
if: matrix.config.lftp_download
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: "${{ matrix.config.name }} | ${{ matrix.config.build_type }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
private static final String TAG = "SDL";
private static final int SDL_MAJOR_VERSION = 2;
private static final int SDL_MINOR_VERSION = 30;
private static final int SDL_MICRO_VERSION = 6;
private static final int SDL_MICRO_VERSION = 7;
/*
// Display InputType.SOURCE/CLASS of events and devices
//
Expand Down
2 changes: 1 addition & 1 deletion _Libs/AudioCodecs
Submodule AudioCodecs updated 59 files
+5 −2 SDL2/CMakeLists.txt
+17 −17 SDL2/README.md
+1 −1 SDL2/android-java-files/SDLActivity.java
+42 −42 SDL2/cmake/CheckCPUArchitecture.cmake
+483 −483 SDL2/docs/README-android.md
+163 −163 SDL2/docs/README-cmake.md
+123 −123 SDL2/docs/README-directfb.md
+138 −138 SDL2/docs/README-dynapi.md
+374 −374 SDL2/docs/README-emscripten.md
+176 −176 SDL2/docs/README-gdk.md
+71 −71 SDL2/docs/README-gesture.md
+19 −19 SDL2/docs/README-git.md
+4 −4 SDL2/docs/README-hg.md
+307 −307 SDL2/docs/README-ios.md
+27 −27 SDL2/docs/README-kmsbsd.md
+96 −96 SDL2/docs/README-linux.md
+285 −285 SDL2/docs/README-macos.md
+28 −28 SDL2/docs/README-n3ds.md
+103 −103 SDL2/docs/README-nacl.md
+44 −44 SDL2/docs/README-ngage.md
+92 −92 SDL2/docs/README-os2.md
+17 −17 SDL2/docs/README-pandora.md
+8 −8 SDL2/docs/README-platforms.md
+68 −68 SDL2/docs/README-porting.md
+51 −51 SDL2/docs/README-ps2.md
+36 −36 SDL2/docs/README-psp.md
+180 −180 SDL2/docs/README-raspberrypi.md
+41 −41 SDL2/docs/README-riscos.md
+86 −86 SDL2/docs/README-touch.md
+60 −60 SDL2/docs/README-versions.md
+114 −114 SDL2/docs/README-visualc.md
+33 −33 SDL2/docs/README-vita.md
+10 −10 SDL2/docs/README-wince.md
+58 −58 SDL2/docs/README-windows.md
+519 −519 SDL2/docs/README-winrt.md
+63 −63 SDL2/docs/README.md
+1 −1 SDL2/include/SDL_version.h
+2 −1 SDL2/src/file/SDL_rwops.c
+20 −20 SDL2/src/hidapi/testgui/testgui.sln
+217 −217 SDL2/src/hidapi/testgui/testgui.vcproj
+29 −29 SDL2/src/hidapi/windows/hidapi.sln
+201 −201 SDL2/src/hidapi/windows/hidapi.vcproj
+196 −196 SDL2/src/hidapi/windows/hidtest.vcproj
+1 −0 SDL2/src/joystick/SDL_joystick.c
+1 −1 SDL2/src/joystick/controller_list.h
+35 −8 SDL2/src/joystick/hidapi/SDL_hidapi_ps3.c
+2 −0 SDL2/src/joystick/usb_ids.h
+9 −0 SDL2/src/joystick/windows/SDL_rawinputjoystick.c
+38 −38 SDL2/src/main/windows/version.rc
+3 −3 SDL2/src/main/winrt/SDL2-WinRTResources.rc
+1 −1 SDL2/src/sensor/android/SDL_androidsensor.c
+17 −9 SDL2/src/stdlib/SDL_string.c
+3 −0 SDL2/src/video/SDL_video.c
+1 −1 SDL2/src/video/kmsdrm/SDL_kmsdrmopengles.c
+25 −20 SDL2/src/video/kmsdrm/SDL_kmsdrmvideo.c
+1 −0 SDL2/src/video/wayland/SDL_waylandmouse.c
+6 −4 SDL2/src/video/x11/SDL_x11mouse.c
+1 −1 _common/update-sdl2.sh
+8 −2 libopus/CMakeLists.txt
2 changes: 1 addition & 1 deletion _common/PGE_File_Formats

0 comments on commit 46c45ae

Please sign in to comment.