Skip to content

Commit 9388763

Browse files
committed
new version
1 parent 92346c4 commit 9388763

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/main.yml

+3-6
Original file line numberDiff line numberDiff 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

CHANGELOG.md

+2
Original file line numberDiff line numberDiff 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.

src/Game.java

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)