File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 9797 --name ${{ env.FILE_NAME }} \
9898 --main-jar ${{ env.FILE_NAME }}-${{ env.VERSION }}.jar \
9999 --main-class ${{ env.MAIN_CLASS }} \
100- --resource-dir assets \
101100 --icon assets/icon/${{ env.ICON_NAME }}.icns \
102101 --app-version ${{ needs.build.outputs.stripped_version }} \
103102 --type dmg \
@@ -190,12 +189,11 @@ jobs:
190189 --name ${{ env.FILE_NAME }} `
191190 --main-jar ${{ env.FILE_NAME }}-${{ env.VERSION }}.jar `
192191 --main-class ${{ env.MAIN_CLASS }} `
193- --resource-dir assets `
194192 --icon assets/icon/${{ env.ICON_NAME }}.ico `
195193 --win-shortcut `
196194 --win-menu `
197195 --app-version ${{ needs.build.outputs.stripped_version }} `
198- --type exe `
196+ --type msi `
199197 --dest .
200198
201199 - name : List contents of out directory (Windows)
@@ -210,8 +208,8 @@ jobs:
210208 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
211209 with :
212210 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
215213 asset_content_type : application/octet-stream
216214
217215
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ private Tile fetchTile(int mouseX, int mouseY) {
333333
334334 // delayed timer to animate the ant and making it smoother movement.
335335 public void delayPaint () {
336- int delay = 150 ;
336+ int delay = 250 ;
337337 Timer timer = new Timer (delay , new ActionListener () {
338338 LinkedList <LinkedList <Tile >> allPath2D = ant .getAllPath2D ();
339339 Tile subNodeToBeDrawn = null ;
You can’t perform that action at this time.
0 commit comments