File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 97
97
--name ${{ env.FILE_NAME }} \
98
98
--main-jar ${{ env.FILE_NAME }}-${{ env.VERSION }}.jar \
99
99
--main-class ${{ env.MAIN_CLASS }} \
100
- --resource-dir assets \
101
100
--icon assets/icon/${{ env.ICON_NAME }}.icns \
102
101
--app-version ${{ needs.build.outputs.stripped_version }} \
103
102
--type dmg \
@@ -190,12 +189,11 @@ jobs:
190
189
--name ${{ env.FILE_NAME }} `
191
190
--main-jar ${{ env.FILE_NAME }}-${{ env.VERSION }}.jar `
192
191
--main-class ${{ env.MAIN_CLASS }} `
193
- --resource-dir assets `
194
192
--icon assets/icon/${{ env.ICON_NAME }}.ico `
195
193
--win-shortcut `
196
194
--win-menu `
197
195
--app-version ${{ needs.build.outputs.stripped_version }} `
198
- --type exe `
196
+ --type msi `
199
197
--dest .
200
198
201
199
- name : List contents of out directory (Windows)
@@ -210,8 +208,8 @@ jobs:
210
208
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
211
209
with :
212
210
upload_url : ${{ needs.build.outputs.release_upload_url }}
213
- asset_path : ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}.exe
214
- asset_name : ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}-windows.exe
211
+ asset_path : ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}.msi
212
+ asset_name : ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}-windows.msi
215
213
asset_content_type : application/octet-stream
216
214
217
215
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ private Tile fetchTile(int mouseX, int mouseY) {
333
333
334
334
// delayed timer to animate the ant and making it smoother movement.
335
335
public void delayPaint () {
336
- int delay = 150 ;
336
+ int delay = 250 ;
337
337
Timer timer = new Timer (delay , new ActionListener () {
338
338
LinkedList <LinkedList <Tile >> allPath2D = ant .getAllPath2D ();
339
339
Tile subNodeToBeDrawn = null ;
You can’t perform that action at this time.
0 commit comments