Skip to content

Commit

Permalink
refactor: removed unneeded graphics, moved files around and set love …
Browse files Browse the repository at this point in the history
…version to 11.4
  • Loading branch information
jonasgeiler committed Sep 19, 2024
1 parent e09c2ae commit 7b4fb66
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
bundle-id: com.jonasgeiler.joysticktester
description: A simple tool to test joysticks and gamepads
version-string: ${{ env.JOYSTICKTESTER_VERSION }}
icon-path: ./joysticktester/graphics/icon/512.png
icon-path: ./joysticktester/graphics/icon.png
love-package: ./release/joysticktester.love
product-name: joysticktester
output-folder: ./release/
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
uses: love-actions/love-actions-windows@v1.1.3
with:
love-package: ./release/joysticktester.love
icon-path: ./joysticktester/graphics/icon/multi.ico
icon-path: ./assets/icon.ico
product-name: joysticktester
project-website: https://github.com/${{ github.repository }}
output-folder: ./release/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ If you want to see the old version, check out the [`old-version`][old-version] t

## Requirements

- LÖVE 11.5 (Mysterious Mysteries)
- LÖVE 11.4 (Mysterious Mysteries)

## How to try

Expand Down
File renamed without changes.
File renamed without changes
4 changes: 2 additions & 2 deletions joysticktester/conf.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function love.conf(t)
t.identity = nil
t.appendidentity = false
t.version = '11.5'
t.version = '11.4'
t.console = false
t.accelerometerjoystick = true
t.externalstorage = false
Expand All @@ -11,7 +11,7 @@ function love.conf(t)
t.audio.mixwithsystem = true

t.window.title = 'Joystick Tester (Press 0-9 to vibrate all; Use mouse wheel to scroll)'
t.window.icon = 'graphics/icon/512.png'
t.window.icon = 'graphics/icon.png'
t.window.width = 1600
t.window.height = 800
t.window.borderless = false
Expand Down
File renamed without changes
Binary file removed joysticktester/graphics/icon/256.png
Binary file not shown.
Binary file removed joysticktester/graphics/icon/32.png
Binary file not shown.
Binary file removed joysticktester/graphics/icon/64.png
Binary file not shown.

0 comments on commit 7b4fb66

Please sign in to comment.