Kasper

Results 254 comments of Kasper

`package.json` isn't necessary for tauri, so you don't need to specify a version there (*except currently the tauri action uses package.json to get the version). The version in `tauri.conf.json` is...

If you specify a version in `tauri.conf.json`, yes, but otherwise it defaults to `Cargo.toml`

@amrbashir Yeah, I agree that `skip_taskbar` should only be window-level. In Electron they just have `dock.hide()` and `dock.show()`, maybe Tauri could have `set_dock_visibility(bool)`

@srsholmes was talking about how this could work in https://github.com/tauri-apps/tauri/issues/2258 (as well as behavior across multiple spaces, which idk if there should be another issue for?)

@amrbashir I don't think showing over fullscreen apps is necessarily the same as showing on all workspaces, though I don't know for sure

`Application Support` is where app data is stored. The [guidelines](https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/MacOSXDirectories/MacOSXDirectories.html) say this: Application SupportContains all app-specific data and support files. These are the files that your app creates and manages...

> * Linux's shadows/transparency/blur is controlled by the compositor installed on the user system so we might not have much control over this at all. @amrbashir Does `decorations: false` currently...

The correct options for this are `releaseDraft` and `releaseBody`. The README used to show an out-of-date example.

That's great, though personally not looking to self host, just running Supabase for local development

So according to the commit it's there to make windows resizable when there's no decorations. I would've assumed that you could remove decorations while keeping `NSWindowStyleMask::NSResizableWindowMask`? @lemarier @wusyong and @keiya01...