Skip to content

Commit

Permalink
bump version to 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
HuakunShen committed Sep 4, 2024
1 parent ef88371 commit 87f3886
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions apps/desktop/src/lib/sample-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { clipboard, dialog, shell } from 'tauri-api-adapter/worker'
clipboard.readText().then((text) => {
console.log('From Worker: ', text)
})
clipboard.readFiles().then((files) => {
console.log('Copied Files From Worker: ', files)
})
shell.executeBashScript('echo "Hello from Worker"').then(console.log)
// dialog.confirm('Are you sure?').then((response) => {
// console.log('From Worker: ', response)
Expand Down
2 changes: 1 addition & 1 deletion packages/tauri-api-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tauri-api-adapter",
"version": "0.3.5",
"version": "0.3.6",
"type": "module",
"exports": {
".": {
Expand Down

0 comments on commit 87f3886

Please sign in to comment.