mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:44:33 +00:00
- Moved prole-tools-app to prole-app at the project root to make it self-contained for transition to its own repository. - Created prole-tools-app/dist/ directory to host build artifacts. - Generated distribution artifacts (Prole Tools.app and Prole Tools.zip) using prole-app/build.sh package. - Checked in the generated artifacts to prole-tools-app/dist/ (bypassing .gitignore for temporary release process). Changes Summary • Renamed directory prole-tools-app/ to prole-app/. • Populated prole-tools-app/dist/ with the latest build output from prole-app/build.sh. • Staged all changes, including the forced addition of ignored artifacts in prole-tools-app/dist/.
8 lines
215 B
Swift
8 lines
215 B
Swift
import AppKit
|
|
|
|
_ = NSApplication.shared
|
|
let delegate = AppDelegate()
|
|
dlog("Process started. Setting application delegate and running app loop…")
|
|
NSApplication.shared.delegate = delegate
|
|
NSApplication.shared.run()
|