Skip to content

Commit 89d0529

Browse files
committed
docs(CHANGELOG): v0.2.2
1 parent 7bce894 commit 89d0529

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [v0.2.2](https://github.com/DearVa/Everywhere/releases/tag/v0.2.2) - 2025-08-11
2+
3+
### ✨ New Features
4+
- **Model Support**: Added support for `Claude Opus 4.1`
5+
6+
### 🔄️ Changed
7+
- Split settings into separate sidebar items
8+
9+
**Full Changelog**: https://github.com/DearVa/Everywhere/compare/v0.2.1...v0.2.2
10+
11+
12+
113
## [v0.2.1](https://github.com/DearVa/Everywhere/releases/tag/v0.2.1) - 2025-08-11
214

315
### ✨ New Features

src/Everywhere/Views/Controls/VisualTreeDebugger.axaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@
6868
<TextBlock
6969
FontSize="16"
7070
Text="{Binding Name}"
71-
TextWrapping="WrapWithOverflow"/>
71+
TextWrapping="Wrap"/>
7272

7373
<TextBox
7474
AcceptsReturn="True"
7575
IsReadOnly="{Binding IsReadOnly}"
7676
MaxLines="5"
7777
Text="{Binding Value, Mode=TwoWay}"
78-
TextWrapping="WrapWithOverflow"/>
78+
TextWrapping="Wrap"/>
7979
</StackPanel>
8080
</DataTemplate>
8181
</ItemsControl.ItemTemplate>

src/Everywhere/Views/Pages/SettingsCategoryPage.axaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@
133133
<TextBlock
134134
Classes="Large" IsHitTestVisible="False"
135135
Text="{Binding HeaderKey^}"
136-
TextWrapping="WrapWithOverflow"/>
136+
TextWrapping="Wrap"/>
137137
<TextBlock
138138
Classes="Small" Margin="0,8"
139139
IsHitTestVisible="False"
140140
Text="{Binding DescriptionKey^}"
141-
TextWrapping="WrapWithOverflow"/>
141+
TextWrapping="Wrap"/>
142142
<ContentControl
143143
Classes="SettingsItemContentPresenter"
144144
Content="{Binding}"/>

src/Everywhere/Views/Windows/ChatFloatingWindow.axaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
<TextBlock
317317
IsVisible="{Binding !!DescriptionKey}"
318318
Text="{Binding DescriptionKey^, FallbackValue={x:Null}}"
319-
TextWrapping="WrapWithOverflow"/>
319+
TextWrapping="Wrap"/>
320320
</StackPanel>
321321
</Button>
322322
</DataTemplate>
@@ -367,7 +367,7 @@
367367
</Style>
368368

369369
<Style Selector="SelectableTextBlock">
370-
<Setter Property="TextWrapping" Value="WrapWithOverflow"/>
370+
<Setter Property="TextWrapping" Value="Wrap"/>
371371
</Style>
372372

373373
<Style Selector="NumericUpDown">

0 commit comments

Comments
 (0)