Skip to content

Commit f3aa2e4

Browse files
author
Anton
committed
feat: v1.1.2 - Android UI enhancements, local settings, and optimized CI/CD
1 parent ed526b7 commit f3aa2e4

96 files changed

Lines changed: 450 additions & 44 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,18 @@ jobs:
2121
run: dotnet restore
2222

2323
- name: Publish App
24-
# Using PublishSingleFile and disabling PDB for a clean distribution
25-
run: dotnet publish clock.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:CopyOutputSymbolsToPublishDirectory=false -o publish
24+
# Remove PDBs, enable compression, and ensure single file output
25+
run: dotnet publish clock.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:CopyOutputSymbolsToPublishDirectory=false -p:DebugType=None -p:DebugSymbols=false -p:EnableCompressionInSingleFile=true -o publish
2626

27-
- name: Zip Release
27+
- name: Rename EXE for release
2828
shell: pwsh
29-
run: |
30-
Compress-Archive -Path publish/* -DestinationPath clock.zip
29+
run: mv publish/clock.exe ./clock-win-x64.exe
3130

3231
- name: Upload Windows Artifact
3332
uses: actions/upload-artifact@v4
3433
with:
3534
name: windows-release
36-
path: clock.zip
35+
path: clock-win-x64.exe
3736

3837
build-android:
3938
runs-on: ubuntu-latest
@@ -89,7 +88,7 @@ jobs:
8988
uses: softprops/action-gh-release@v2
9089
with:
9190
files: |
92-
clock.zip
91+
clock-win-x64.exe
9392
clock.apk
9493
name: Release ${{ github.ref_name }}
9594
body: |
@@ -98,10 +97,9 @@ jobs:
9897
Automatic build by GitHub Actions for multiple platforms.
9998
10099
### Windows Installation
101-
1. Download `clock.zip`.
102-
2. Extract to a folder.
103-
3. **Important**: Add your notification sound as `Assets/notify.wav`.
104-
4. Run `clock.exe`.
100+
1. Download `clock-win-x64.exe`.
101+
2. **Important**: Place it in a folder. If you want sounds, add your notification sound as `Assets/notify.wav` in the same folder.
102+
3. Run the `.exe`.
105103
106104
### Android Installation
107105
1. Download `clock.apk`.

README.md

Lines changed: 4 additions & 2 deletions

app.png

88.9 KB
244 KB
Binary file not shown.
0 Bytes
Binary file not shown.
5.37 KB
Binary file not shown.
0 Bytes
Binary file not shown.
748 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
162 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)