Skip to content

Commit 790db0a

Browse files
committed
* Fix history box expanding in PackageListView
* Release 1.3.0
1 parent eb7fbfd commit 790db0a

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

data/com.github.donadigo.eddy.appdata.xml.in

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,39 @@
1313
<li>Install multiple packages at once</li>
1414
<li>Upgrade and downgrade existing packages</li>
1515
<li>Load all packages automatically from your Downloads folder</li>
16+
<li>View history of previosly installed apps</li>
1617
<li>Complete system integration including notifications and progress bar in the dock</li>
1718
</ul>
1819
</description>
1920
<provides>
2021
<binary>com.github.donadigo.eddy</binary>
2122
</provides>
2223
<releases>
24+
<release version="1.3.0" date="2020-12-04">
25+
<description>
26+
<p>This release adds new features and translations to Eddy and prepares the transition to elementary OS 6.0.</p>
27+
<p>You can now view previously installed apps.</p>
28+
<ul>
29+
<li>The option will appear in the welcome screen if you've previously installed any apps.</li>
30+
<li>You can also view the installed date in the details view of a package if it has one.</li>
31+
<li>This history can be managed through the builtin Security &amp; Privacy settings in elementary OS.</li>
32+
</ul>
33+
34+
<p>Other additions:</p>
35+
<ul>
36+
<li>Eddy will now show a warning icon if something is blocking currently ongoing operations in the app.</li>
37+
<li>Preparation for elementary OS 6.0 styling changes (Cassidy James)</li>
38+
<li>It is now possible to translate metadata of Eddy (Ryo Nakano)</li>
39+
</ul>
40+
41+
<p>New translations:</p>
42+
<ul>
43+
<li>Simplified Chinese (colindemian)</li>
44+
<li>Italian (Mirko Brombin)</li>
45+
<li>Polish (tosziro)</li>
46+
</ul>
47+
</description>
48+
</release>
2349
<release version="1.2.2" date="2020-04-17">
2450
<description>
2551
<p>This release fixes comparing some package versions and includes new translations:</p>

src/PackageListView.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public class Eddy.PackageListView : Gtk.Box {
101101

102102
notify["working"].connect (update);
103103
add (scrolled);
104-
pack_end (history_box);
104+
add (history_box);
105105

106106
set_mode (mode);
107107
}

0 commit comments

Comments
 (0)