File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -196,23 +196,20 @@ jobs:
196196 --win-menu `
197197 --app-version ${{ needs.build.outputs.stripped_version }} `
198198 --java-options "${{ env.JVM_ARGS }}" `
199- --type exe `
199+ --type msi `
200200 --dest .
201201
202202 - name : List contents of out directory (Windows)
203203 run : Get-ChildItem -Path .
204204
205- # - name: Rename Windows standalone
206- # run: move ${{ env.FILE_NAME }}-1.0.exe ${{ env.OUT_DIR }}/${{ env.FILE_NAME }}-Windows-${{ env.VERSION }}.exe
207-
208205 - name : Attach Windows Standalone to Release
209206 uses : actions/upload-release-asset@v1
210207 env :
211208 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
212209 with :
213210 upload_url : ${{ needs.build.outputs.release_upload_url }}
214- asset_path : ${{ env.FILE_NAME }}-${{ needs.build.outputs.stripped_version }}.exe
215- 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
216213 asset_content_type : application/octet-stream
217214
218215
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
55## [ Unreleased]
66
7+ ## [ v2.0.0] - 2023-09-26
8+
79### Added
810
911- Mouse drag support for tile type changes.
Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ private void drawTileCount(Graphics g) {
706706 try {
707707 int iconSize = 20 ; // Define the size of your icons
708708 int iconTextSpacing = 5 ; // Spacing between icon and text
709- int wordSpacing = 25 ; // Spacing between each icon-count pair
709+ int wordSpacing = 45 ; // Spacing between each icon-count pair
710710 double iconScaling = 2.5 ;
711711 int totalIconWidth = 4 * iconSize + 3 * wordSpacing ; // 4 icons
712712 int totalWidth = totalIconWidth + 3 * iconTextSpacing ; // The space after each icon for text
You can’t perform that action at this time.
0 commit comments