Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(core): Ability to disable minimize/maximize/close native window's buttons, closes #2353 #6665

Merged
merged 30 commits into from
May 24, 2023
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
963bae8
feat(core): expose maximizability/minimizability/closability to windo…
TDiblik Apr 8, 2023
6c43a48
feat(utils): ability to set button states from tauri.conf.json
TDiblik Apr 8, 2023
58f60d6
chore: summarize changes
TDiblik Apr 8, 2023
07491f8
chore: docs
TDiblik Apr 8, 2023
3028b5e
chore: add generated schemas
TDiblik Apr 8, 2023
b1371bc
chore: docs
TDiblik Apr 8, 2023
58d0394
chore(core): make comments consistent
TDiblik Apr 11, 2023
45820bc
feat(core/api): Expose new api for typescript and config features
TDiblik Apr 11, 2023
1d72277
chore: docs
TDiblik Apr 11, 2023
3ef3365
chore(core/api): add generated schemas
TDiblik Apr 11, 2023
79e2d56
chore(meta): update changes to reflect current state
TDiblik Apr 11, 2023
dcc5aa1
chore(core/api): add generated files
TDiblik Apr 11, 2023
46f0f56
fix(ci)
TDiblik Apr 14, 2023
1916c96
chore(docs): Add platform specific documentation
TDiblik Apr 14, 2023
e7e9da2
chore(tooling): Rename/Remove params inside docs that don't match fun…
TDiblik Apr 14, 2023
22a2726
chore(core/api) add generated files
TDiblik Apr 14, 2023
e02e195
chore(api): formatting
TDiblik Apr 14, 2023
a3efd51
chore(api): formatting
TDiblik Apr 14, 2023
5cf766d
chore(api): formatting
TDiblik Apr 14, 2023
8c45842
chore(api): formatting
TDiblik Apr 14, 2023
fe8f77f
chore(api): formatting
TDiblik Apr 14, 2023
2f72907
chore(api): formatting
TDiblik Apr 14, 2023
51697f0
docs(core): Insert platform specific comments instead of linking
TDiblik Apr 14, 2023
4801768
docs(core): Insert platform specific comments instead of linking
TDiblik Apr 14, 2023
e4e6bda
chore(tooling): Add more info to configuration docs
TDiblik Apr 16, 2023
1ffdf28
Merge remote-tracking branch 'origin/dev' into feature/2353-set-title…
lucasfernog May 24, 2023
0bab7b6
split change files
lucasfernog May 24, 2023
4e0acca
update docs
lucasfernog May 24, 2023
ff48bbb
fix covector
lucasfernog May 24, 2023
9e8386b
update api example
lucasfernog May 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: summarize changes
TDiblik committed Apr 8, 2023

Verified

This commit was signed with the committer’s verified signature.
TDiblik Tomáš Diblík
commit 58f60d634b4dfb807be88c893701f52688c2e321
5 changes: 5 additions & 0 deletions .changes/maximizability-minimizability-closability-config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-utils": minor
---

Added the [`maximizable`, `minimizable`, `closable`] options to the window configuration.
10 changes: 10 additions & 0 deletions .changes/maximizability-minimizability-closability.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'api': minor
'tauri': minor
'tauri-runtime-wry': minor
'tauri-runtime': minor
---

- Added the [`maximizable`, `minimizable`, `closable`] options to the window builder.
- Exposed the [`set_maximizable`, `set_minimizable`, `set_closable`] setter functions to the window api.
- Exposed the [`is_maximizable`, `is_minimizable`, `is_closable`] getter functions to the window api.