Skip to content

Commit

Permalink
update latest builds for workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ellraiser committed Feb 25, 2024
1 parent 6faca32 commit 4409e57
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
uses: actions/checkout@v4
- name: Download Love
run: |
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1272252613/zip"
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1273249143/zip"
7z x love12.zip -o*
7z x love12/love-macos.zip -o*
- name: Run Test Suite
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
powershell.exe mesa\systemwidedeploy.cmd 1
- name: Download Love
run: |
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1116038604/zip"
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1273247540/zip"
7z x love12.zip -o*
7z x love12/love-12.0-win64.zip -o*
- name: Run Tests (opengl)
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
uses: actions/checkout@v4
- name: Download Love
run: |
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1116038592/zip"
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1273246871/zip"
7z x love12.zip -o*
mv love12/love-*.AppImage love12/love12.AppImage
ls love12
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
/output/*.md
/output/actual/*.png
resources/.DS_Store
todo.md
resources/.DS_Store
Binary file modified resources/.DS_Store
Binary file not shown.
45 changes: 45 additions & 0 deletions todo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# TODO

# 12.0 Methods
- love.data.pack variant that accepts ByteData
- love.filesystem.load (binary vs text chunks)
- check expected behavior of mountCommonPath/unmountCommonPath

## physics
- World:rayCastAny
- World:rayCastClosest
- World:getShapesInArea
- Body:getShapes
- Body:getShape
- Body:hasCustomMassData

## graphics
- love.graphics.copyBuffer
- love.graphics.copyBufferToTexture
- love.graphics.copyTextureToBuffer
- love.graphics.readbackTexture
- love.graphics.readbackTextureAsync
- love.graphics.readbackBuffer
- love.graphics.readbackBufferAsync
- love.graphics.newComputeShader
- love.graphics.dispatchThreadgroupos
- love.graphics.dispatchIndirect
- love.graphics.newTexture
- love.graphics.drawFromShader
- love.graphics.drawFromShaderIndirect
- love.graphics.drawIndirect
- love.graphics.getQuadIndexBuffer
- love.graphics.setBlendState
- love.graphics.setOrthoProjection
- love.graphics.setPerspectiveProjection
- love.graphics.resetProjection
- Texture:isCanvas
- Texture:isComputeWritable
- Texture:generateMipmaps
- ImageData:setLinear
- ImageData:isLinear
- ImageData:encode ('exr' format)
- CompressedImageData:setLinear
- CompressedImageData:isLinear
- Mesh:getAttachedAttributes
- Shader:hasStage

0 comments on commit 4409e57

Please sign in to comment.