Skip to content

Commit

Permalink
repush
Browse files Browse the repository at this point in the history
  • Loading branch information
vmsaif committed Sep 21, 2023
1 parent 406bd0d commit 0015ebd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ jobs:
--name ${{ env.FILE_NAME }} \
--main-jar ${{ env.FILE_NAME }}-${{ env.VERSION }}.jar \
--main-class ${{ env.MAIN_CLASS }} \
--resource-dir assets \
--icon assets/icon/${{ env.ICON_NAME }}.icns \
--app-version ${{ needs.build.outputs.stripped_version }} \
--type dmg \
Expand Down Expand Up @@ -190,12 +189,11 @@ jobs:
--name ${{ env.FILE_NAME }} `
--main-jar ${{ env.FILE_NAME }}-${{ env.VERSION }}.jar `
--main-class ${{ env.MAIN_CLASS }} `
--resource-dir assets `
--icon assets/icon/${{ env.ICON_NAME }}.ico `
--win-shortcut `
--win-menu `
--app-version ${{ needs.build.outputs.stripped_version }} `
--type exe `
--type msi `
--dest .
- name: List contents of out directory (Windows)
Expand All @@ -210,8 +208,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.build.outputs.release_upload_url }}
asset_path: ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}.exe
asset_name: ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}-windows.exe
asset_path: ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}.msi
asset_name: ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}-windows.msi
asset_content_type: application/octet-stream


2 changes: 1 addition & 1 deletion src/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private Tile fetchTile(int mouseX, int mouseY) {

// delayed timer to animate the ant and making it smoother movement.
public void delayPaint() {
int delay = 150;
int delay = 250;
Timer timer = new Timer(delay, new ActionListener() {
LinkedList<LinkedList<Tile>> allPath2D = ant.getAllPath2D();
Tile subNodeToBeDrawn = null;
Expand Down

0 comments on commit 0015ebd

Please sign in to comment.