Skip to content

Commit b40f1dc

Browse files
committed
Update version to 1.2.3 in metadata, manifest, and UI components; fix host editor searchbar and unusual behavior in host list and refresh icons.
1 parent d908272 commit b40f1dc

20 files changed

+140
-242
lines changed

data/io.github.BuddySirJava.SSH-Studio.metainfo.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@
2727
<content_rating type="oars-1.1"/>
2828
<screenshots>
2929
<screenshot type="default">
30-
<image>https://raw.githubusercontent.com/BuddySirJava/SSH-Studio/refs/tags/1.2.2/assets/screenshots/ss1.png</image>
30+
<image>https://raw.githubusercontent.com/BuddySirJava/SSH-Studio/refs/tags/1.2.3/assets/screenshots/ss1.png</image>
3131
<caption>Main window with host list and details</caption>
3232
</screenshot>
3333
<screenshot>
34-
<image>https://raw.githubusercontent.com/BuddySirJava/SSH-Studio/refs/tags/1.2.2/assets/screenshots/ss2.png</image>
34+
<image>https://raw.githubusercontent.com/BuddySirJava/SSH-Studio/refs/tags/1.2.3/assets/screenshots/ss2.png</image>
3535
<caption>Synchronizing Raw/Diff View</caption>
3636
</screenshot>
3737
<screenshot>
38-
<image>https://raw.githubusercontent.com/BuddySirJava/SSH-Studio/refs/tags/1.2.2/assets/screenshots/ss3.png</image>
38+
<image>https://raw.githubusercontent.com/BuddySirJava/SSH-Studio/refs/tags/1.2.3/assets/screenshots/ss3.png</image>
3939
<caption>SSH Key Management</caption>
4040
</screenshot>
4141
</screenshots>
4242
<releases>
43-
<release version="1.2.2" date="2025-09-01">
43+
<release version="1.2.1" date="2025-09-01">
4444
<description>
4545
<p>This release introduces improved icon design and enhanced visual consistency. The application now features updated branding colors and better integration with GNOME's design language.</p>
4646
</description>
@@ -50,6 +50,12 @@
5050
<p>This release introduces improved icon design and enhanced visual consistency.</p>
5151
</description>
5252
</release>
53+
<release version="1.2.3" date="2025-09-17">
54+
<description>
55+
<p>Host Editor searchbar fixed.</p>
56+
<p>Unusual behavior of host list fixed.</p>
57+
</description>
58+
</release>
5359
</releases>
5460
<url type="homepage">https://github.com/BuddySirJava/SSH-Studio</url>
5561
<url type="bugtracker">https://github.com/BuddySirJava/SSH-Studio/issues</url>

data/media/icon.svg

Lines changed: 27 additions & 115 deletions
Loading

data/media/icon_128.png

586 Bytes
Loading

data/media/icon_256.png

1.41 KB
Loading

data/media/icon_512.png

4.87 KB
Loading

data/ui/host_editor.blp

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -204,49 +204,7 @@ template $HostEditor: Box {
204204
name: "advanced";
205205

206206
child: Adw.PreferencesPage {
207-
Adw.PreferencesGroup {
208-
title: _("Custom SSH Options");
209-
description: _("Add custom SSH configuration options not available in the standard fields");
210-
visible: false;
211-
sensitive: false;
212-
213-
Adw.ActionRow {
214-
title: _("Add Custom Option");
215-
subtitle: _("Add SSH options like Compression, ServerAliveInterval, etc.");
216-
activatable: true;
217-
activatable-widget: add_custom_button;
218-
219-
[suffix]
220-
Button add_custom_button {
221-
icon-name: "list-add-symbolic";
222-
tooltip-text: _("Add a new custom SSH option");
223-
css-classes: ["circular", "suggested-action"];
224-
}
225-
}
226-
227-
Adw.ExpanderRow custom_options_expander {
228-
title: _("Custom Options");
229-
subtitle: _("Manage your custom SSH configuration options");
230-
show-enable-switch: false;
231-
vexpand: true;
232-
233-
child: ScrolledWindow {
234-
hexpand: true;
235-
vexpand: true;
236-
vscrollbar-policy: never;
237-
hscrollbar-policy: never;
238-
239-
ListBox custom_options_list {
240-
selection-mode: none;
241-
css-classes: ["boxed-list"];
242-
243-
styles [
244-
"custom-options-list",
245-
]
246-
}
247-
};
248-
}
249-
}
207+
250208

251209
Adw.PreferencesGroup {
252210
title: _("Advanced Options");

data/ui/host_list.blp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ using Gtk 4.0;
33
template $HostList: Box {
44
orientation: vertical;
55
spacing: 0;
6+
vexpand: true;
67

78
styles [
89
"host-list",
@@ -42,12 +43,8 @@ template $HostList: Box {
4243

4344
ScrolledWindow {
4445
hexpand: true;
45-
vexpand: false;
46+
vexpand: true;
4647
min-content-width: 350;
47-
margin-start: 12;
48-
margin-end: 20;
49-
height-request: 650;
50-
valign: start;
5148

5249
styles [
5350
"host-list-scroll",

data/ui/main_window.blp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ using Adw 1;
33

44
template $MainWindow: Adw.ApplicationWindow {
55
title: _("SSH-Studio");
6-
default-width: 1200;
7-
default-height: 800;
6+
default-width: 900;
7+
default-height: 720;
88

99
Adw.ToastOverlay toast_overlay {
1010
Adw.ToolbarView main_box {

io.github.BuddySirJava.SSH-Studio.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
{
4848
"type": "git",
4949
"url": "https://github.com/BuddySirJava/SSH-Studio.git",
50-
"tag": "1.2.2",
50+
"tag": "1.2.3",
5151
"commit": "528e5c0e207c63b9ead2adf3f169316950ee81af",
5252
"x-checker-data": {
5353
"type": "git",

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('ssh-studio', 'c',
2-
version: '1.2.2',
2+
version: '1.2.3',
33
license: 'GPL-3.0-or-later',
44
meson_version: '>= 0.60.0',
55
default_options: ['warning_level=2',

0 commit comments

Comments
 (0)