Skip to content

Commit

Permalink
Merge pull request #143 from wakatime/main
Browse files Browse the repository at this point in the history
Release v3.0.4
  • Loading branch information
alanhamlett authored Aug 10, 2023
2 parents f40ac4d + a4f7358 commit 3c36b2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
id: prepare
run: |
mkdir release
mv ./WakaTime.zip release/wakatime-${{ needs.version.outputs.semver_tag }}.zip
mv ./WakaTime.zip release/macos-wakatime-${{ needs.version.outputs.semver_tag }}.zip
-
name: "Create release"
uses: softprops/action-gh-release@master
Expand All @@ -241,7 +241,7 @@ jobs:
target_commitish: ${{ github.sha }}
draft: false
files: |
./release/wakatime-${{ needs.version.outputs.semver_tag }}.zip
./release/macos-wakatime-${{ needs.version.outputs.semver_tag }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
Expand Down
3 changes: 2 additions & 1 deletion WakaTime/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ class AppDelegate: NSObject, NSApplicationDelegate {
alert.addButton(withTitle: "OK")
alert.runModal()
} else {
print(error)
print(String(describing: error))
NSLog(String(describing: error))
let alert = NSAlert()
alert.messageText = "Error"
alert.informativeText = error.localizedDescription
Expand Down
4 changes: 2 additions & 2 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ options:

packages:
AppUpdater:
url: https://github.com/mxcl/AppUpdater
from: 1.1.1
url: https://github.com/alanhamlett/AppUpdater
branch: master
Firebase:
url: https://github.com/firebase/firebase-ios-sdk
from: 10.0.0
Expand Down

0 comments on commit 3c36b2e

Please sign in to comment.