-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from Gnimuc/1.90.8
1.90.8 and backend shenanigans
- Loading branch information
Showing
94 changed files
with
50,351 additions
and
19,747 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,13 @@ jobs: | |
name: Loading only - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.6' | ||
- '1.9' | ||
- '1' | ||
- 'nightly' | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- windows-latest | ||
arch: | ||
|
@@ -28,17 +28,13 @@ jobs: | |
exclude: | ||
- os: macOS-latest | ||
arch: x86 | ||
- os: ubuntu-latest # covered in "tests" job | ||
arch: x64 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: julia-actions/cache@v2 | ||
- run: | | ||
julia --project=. -e 'using Pkg; Pkg.develop(PackageSpec(path="LibCImGui.jl"))' | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
- uses: julia-actions/[email protected] | ||
|
@@ -49,30 +45,29 @@ jobs: | |
name: Tests - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.6' | ||
- '1.9' | ||
- '1' | ||
- 'nightly' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
# For some reason GLFW won't let us create a window on 32 bit ubuntu | ||
# - x86 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: julia-actions/cache@v2 | ||
- run: | | ||
julia --project=. -e 'using Pkg; Pkg.develop(PackageSpec(path="LibCImGui.jl"))' | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
with: | ||
prefix: xvfb-run -a -s '-screen 0 1024x768x24' | ||
env: | ||
LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | ||
- uses: julia-actions/[email protected] | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
@@ -82,11 +77,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: sudo apt-get install xvfb && Xvfb :99 & | ||
- uses: julia-actions/setup-julia@v2 | ||
- uses: julia-actions/cache@v2 | ||
with: | ||
version: '1' | ||
- run: | | ||
julia --project=docs -e ' | ||
using Pkg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
name = "CImGui" | ||
uuid = "5d785b6c-b76f-510e-a07c-3070796c7e87" | ||
authors = ["Yupei Qi <[email protected]>"] | ||
version = "1.89.1" | ||
version = "2.0.0" | ||
|
||
[deps] | ||
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82" | ||
CImGuiPack_jll = "333409e9-af72-5310-9767-d6ad21a76a05" | ||
CSyntax = "ea656a56-6ca6-5dda-bba5-7b6963a5f74c" | ||
ImGuiGLFWBackend = "623d79b3-9695-4e60-bd7e-2a5aabaa6933" | ||
ImGuiOpenGL2Backend = "c105bd9b-9289-4129-acf4-4c081b46d160" | ||
ImGuiOpenGLBackend = "9d0819b4-44e7-43a2-ad03-8fb999128168" | ||
LibCImGui = "9be01004-c4f5-478b-abeb-cb32b114cf5e" | ||
Preferences = "21216c6a-2e73-6563-6e65-726566657250" | ||
|
||
[weakdeps] | ||
GLFW = "f7f18e0c-5ee9-5ccd-a5bf-e8befd85ed98" | ||
ModernGL = "66fc600b-dfda-50eb-8b99-91cfa97b1301" | ||
|
||
[extensions] | ||
GlfwOpenGLBackend = ["GLFW", "ModernGL"] | ||
|
||
[compat] | ||
CEnum = "0.4, 0.5" | ||
CImGuiPack_jll = "0.3.0" | ||
CSyntax = "0.4" | ||
ImGuiGLFWBackend = "0.2" | ||
ImGuiOpenGL2Backend = "0.1" | ||
ImGuiOpenGLBackend = "0.2" | ||
LibCImGui = "~1.89" | ||
Preferences = "1" | ||
julia = "1.6" | ||
julia = "1.9" | ||
|
||
[extras] | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[deps] | ||
CxxWrap = "1f15a43c-97ca-5a2a-ae31-89f07a497df4" | ||
GLFW_jll = "0656b61e-2033-5cc2-a64a-77c0f6c09b89" | ||
WrapIt = "962878d8-9763-11ee-8c14-fbf60c98afae" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
fe10825
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
fe10825
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/109914
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
fe10825
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CC @Gnimuc