diff --git a/.changeset/compose-mention-popover-fits-dialog.md b/.changeset/compose-mention-popover-fits-dialog.md deleted file mode 100644 index 8d09b80..0000000 --- a/.changeset/compose-mention-popover-fits-dialog.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"smooblue": patch ---- - -@mention popover now pops UP above the textarea instead of down. The compose dialog has no spare room below the textarea (Post button + attachment row sit there), so the popover was clipping past the dialog footer and getting overlapped by the Post button. Up has the headroom — the dialog header is short — and the popover lifts cleanly into that space. Also bumps the popover z-index past 50 and sets `overflow: visible` on the compose sheet so a tall suggestion list isn't clipped by the upstream modal's overflow rule. diff --git a/CHANGELOG.md b/CHANGELOG.md index 690e7e3..da5f6d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.18.1 + +### Patch Changes + +- [`58bd65a`](https://github.com/SmooAI/smooblue/commit/58bd65a9ab53eaa18c7edb03f1cdebe91947b221) Thanks [@brentrager](https://github.com/brentrager)! - @mention popover now pops UP above the textarea instead of down. The compose dialog has no spare room below the textarea (Post button + attachment row sit there), so the popover was clipping past the dialog footer and getting overlapped by the Post button. Up has the headroom — the dialog header is short — and the popover lifts cleanly into that space. Also bumps the popover z-index past 50 and sets `overflow: visible` on the compose sheet so a tall suggestion list isn't clipped by the upstream modal's overflow rule. + ## 1.18.0 ### Minor Changes diff --git a/Cargo.lock b/Cargo.lock index b4d4964..0711832 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5252,7 +5252,7 @@ source = "git+https://github.com/SmooAI/ui.git?branch=main#f23080824d4731de1d4fc [[package]] name = "smooblue-app" -version = "1.18.0" +version = "1.18.1" dependencies = [ "anyhow", "arboard", @@ -5292,7 +5292,7 @@ dependencies = [ [[package]] name = "smooblue-atproto" -version = "1.18.0" +version = "1.18.1" dependencies = [ "async-trait", "chrono", @@ -5312,7 +5312,7 @@ dependencies = [ [[package]] name = "smooblue-crm" -version = "1.18.0" +version = "1.18.1" dependencies = [ "reqwest", "serde", @@ -5326,7 +5326,7 @@ dependencies = [ [[package]] name = "smooblue-oauth" -version = "1.18.0" +version = "1.18.1" dependencies = [ "async-trait", "base64", @@ -5352,7 +5352,7 @@ dependencies = [ [[package]] name = "smooblue-theme" -version = "1.18.0" +version = "1.18.1" dependencies = [ "smooai-ui", ] diff --git a/Cargo.toml b/Cargo.toml index 528808b..65a2b09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ ] [workspace.package] -version = "1.18.0" +version = "1.18.1" edition = "2021" license = "MIT" repository = "https://github.com/SmooAI/smooblue" diff --git a/package.json b/package.json index 468ec48..c4848d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "smooblue", - "version": "1.18.0", + "version": "1.18.1", "private": true, "description": "Native multi-column Bluesky desktop client. Rust + Dioxus.", "repository": "https://github.com/SmooAI/smooblue",