Skip to content

Commit b2e71df

Browse files
authored
Tauri release (#2)
* test tauri builds * changelog * npm install * fix macos install * Enable lua rock release * Add default options to example
1 parent e321d97 commit b2e71df

Some content is hidden

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

56 files changed

+25
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
8383

8484
- name: install frontend dependencies
85-
run: npm run install # change this to npm, pnpm or bun depending on which one you use.
85+
run: npm install # change this to npm, pnpm or bun depending on which one you use.
8686

8787
- uses: tauri-apps/tauri-action@v0
8888
env:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions

src-lua/feather/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function Feather:init(config)
3333
self.defaultObservers = conf.defaultObservers or false
3434
---TODO: find a better way to ensure that the error handler is called, maybe a thread?
3535
self.errorWait = conf.errorWait or 3
36-
self.autoRegisterErrorHandler = conf.autoRegisterErrorHandler and true or false
36+
self.autoRegisterErrorHandler = conf.autoRegisterErrorHandler or false
3737
self.plugins = conf.plugins or {}
3838
self.lastDelivery = 0
3939
self.observers = {}

src-lua/main.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@ end
142142

143143
local debugger = FeatherDebugger({
144144
errorHandler = customerrorhandler,
145+
wrappedPrint = true,
146+
wrapPrint = true,
147+
defaultObservers = true,
145148
autoRegisterErrorHandler = true,
146149
baseDir = "src-lua",
147150
debug = true,

src-tauri/icons/128x128.png

2.72 KB

src-tauri/icons/[email protected]

7.21 KB

src-tauri/icons/32x32.png

473 Bytes

src-tauri/icons/64x64.png

2.87 KB
2.22 KB
3.42 KB

0 commit comments

Comments
 (0)