Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
asivery committed Sep 30, 2024
2 parents 4041465 + 0cd98ce commit 09de6e5
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/create-macos-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Release macOS App

on:
workflow_dispatch:
inputs:
release_name:
description: 'Name of the release'
required: true
default: 'New Release'

jobs:
build-and-release:
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'

- name: Install dependencies
run: npm install

- name: Build and release macOS app
run: npm run dist-mac
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_NAME: ${{ github.event.inputs.release_name }}
- run: zip release.zip build/*.dmg

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release.zip
path: release.zip
Binary file added extras/Zadig-USBMS-manual.pdf
Binary file not shown.
5 changes: 3 additions & 2 deletions src/preload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ export const CHANGELOG: ChangelogVersionInjection[] = [
name: 'ElectronWMD 0.5.0-1.5.0',
contents: [
"Add support for Sony Network Walkman devices",
"Fix stability issues on HiMD device",
"Overhauled settings - moved ElectronWMD settings to main settings dialog",
"Add support for running a local instance of the Sony ATRAC encoder",
"Fix stability issues on HiMD devices",
"Overhauled settings - moved ElectronWMD settings to the main settings dialog",
],
}
}
Expand Down

0 comments on commit 09de6e5

Please sign in to comment.