File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -196,23 +196,20 @@ jobs:
196
196
--win-menu `
197
197
--app-version ${{ needs.build.outputs.stripped_version }} `
198
198
--java-options "${{ env.JVM_ARGS }}" `
199
- --type exe `
199
+ --type msi `
200
200
--dest .
201
201
202
202
- name : List contents of out directory (Windows)
203
203
run : Get-ChildItem -Path .
204
204
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
-
208
205
- name : Attach Windows Standalone to Release
209
206
uses : actions/upload-release-asset@v1
210
207
env :
211
208
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
212
209
with :
213
210
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
216
213
asset_content_type : application/octet-stream
217
214
218
215
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.
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ v2.0.0] - 2023-09-26
8
+
7
9
### Added
8
10
9
11
- 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) {
706
706
try {
707
707
int iconSize = 20 ; // Define the size of your icons
708
708
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
710
710
double iconScaling = 2.5 ;
711
711
int totalIconWidth = 4 * iconSize + 3 * wordSpacing ; // 4 icons
712
712
int totalWidth = totalIconWidth + 3 * iconTextSpacing ; // The space after each icon for text
You can’t perform that action at this time.
0 commit comments