Skip to content

Commit

Permalink
sync mac 0x (#1071)
Browse files Browse the repository at this point in the history
* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* [no ci] appimages are deprecated

* deploy even if they fail to build

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* Branch Sync

* [no ci] Fix nightly updates after AppImage Deprecation

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
ChristopherHX and github-actions[bot] authored Dec 4, 2024
1 parent 4101034 commit 43c36b5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/branch_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
}
}
deploy:
if: needs.prepare.outputs.sync == 'true' && !failure() && !cancelled()
if: needs.prepare.outputs.sync == 'true' && !failure('macOS', 'linux-pkg') && !cancelled()
needs:
- prepare
- linux-AppImage
Expand Down Expand Up @@ -120,7 +120,8 @@ jobs:
shell: bash
publish:
needs: deploy
if: needs.prepare.outputs.sync == 'true' && !failure() && !cancelled()
# this should also run if linux packages fail, since we don't upload those anyway
if: needs.prepare.outputs.sync == 'true' && !failure('macOS') && !cancelled()
permissions: write-all
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion imgui
Submodule imgui updated 57 files
+2 −1 backends/imgui_impl_allegro5.cpp
+1 −1 backends/imgui_impl_allegro5.h
+1 −1 backends/imgui_impl_android.cpp
+1 −1 backends/imgui_impl_android.h
+1 −1 backends/imgui_impl_dx10.h
+27 −15 backends/imgui_impl_dx11.cpp
+1 −1 backends/imgui_impl_dx11.h
+92 −23 backends/imgui_impl_dx12.cpp
+33 −12 backends/imgui_impl_dx12.h
+39 −36 backends/imgui_impl_dx9.cpp
+2 −1 backends/imgui_impl_glfw.cpp
+1 −1 backends/imgui_impl_glfw.h
+1 −1 backends/imgui_impl_glut.cpp
+1 −1 backends/imgui_impl_glut.h
+1 −1 backends/imgui_impl_metal.mm
+9 −4 backends/imgui_impl_opengl3.cpp
+1 −1 backends/imgui_impl_osx.h
+3 −2 backends/imgui_impl_osx.mm
+5 −3 backends/imgui_impl_sdl2.cpp
+1 −1 backends/imgui_impl_sdl2.h
+3 −4 backends/imgui_impl_sdl3.cpp
+1 −1 backends/imgui_impl_sdl3.h
+86 −59 backends/imgui_impl_vulkan.cpp
+12 −4 backends/imgui_impl_vulkan.h
+18 −0 backends/imgui_impl_wgpu.cpp
+1 −1 backends/imgui_impl_wgpu.h
+66 −59 backends/imgui_impl_win32.cpp
+1 −1 backends/imgui_impl_win32.h
+664 −268 docs/CHANGELOG.txt
+2 −3 docs/TODO.txt
+1 −1 examples/example_android_opengl3/main.cpp
+3 −0 examples/example_glfw_opengl3/Makefile.emscripten
+2 −1 examples/example_glfw_vulkan/build_win64.bat
+3 −0 examples/example_glfw_wgpu/Makefile.emscripten
+3 −0 examples/example_sdl2_opengl3/Makefile.emscripten
+4 −0 examples/example_sdl2_vulkan/build_win32.bat
+14 −0 examples/example_sdl2_vulkan/build_win64.bat
+3 −0 examples/example_sdl3_opengl3/Makefile.emscripten
+7 −1 examples/example_sdl3_opengl3/build_win32.bat
+14 −0 examples/example_sdl3_opengl3/build_win64.bat
+14 −0 examples/example_sdl3_vulkan/build_win32.bat
+14 −0 examples/example_sdl3_vulkan/build_win64.bat
+190 −0 examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj
+64 −0 examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters
+587 −0 examples/example_sdl3_vulkan/main.cpp
+79 −23 examples/example_win32_directx12/main.cpp
+10 −0 examples/imgui_examples.sln
+1 −1 imconfig.h
+244 −314 imgui.cpp
+81 −90 imgui.h
+35 −24 imgui_demo.cpp
+290 −170 imgui_draw.cpp
+86 −53 imgui_internal.h
+5 −3 imgui_tables.cpp
+120 −110 imgui_widgets.cpp
+51 −15 misc/fonts/binary_to_compressed_c.cpp
+9 −5 misc/freetype/imgui_freetype.cpp
2 changes: 1 addition & 1 deletion mcpelauncher-client
2 changes: 1 addition & 1 deletion mcpelauncher-core
2 changes: 1 addition & 1 deletion sdl3
Submodule sdl3 updated 322 files

0 comments on commit 43c36b5

Please sign in to comment.