Skip to content

Commit

Permalink
Merge pull request #13 from luleyleo/prepare-v1.2
Browse files Browse the repository at this point in the history
Update release notes and version number for v1.2
  • Loading branch information
luleyleo authored Oct 7, 2024
2 parents fbbfa2b + 04b8197 commit da12376
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
9 changes: 9 additions & 0 deletions assets/de.leopoldluley.Clapgrep.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@
<control>touch</control>
</supports>
<releases>
<release version="1.2" date="2024-10-07">
<description>
<p>New features:</p>
<ul>
<li>The app will remember whether it should search PDF and Office files.</li>
<li>The search backend has been completely rewritten and should be quite a bit faster.</li>
</ul>
</description>
</release>
<release version="1.1" date="2024-10-02">
<description>
<p>New features:</p>
Expand Down
11 changes: 10 additions & 1 deletion gnome/src/about.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
use gtk::License;

static RELEASE_NOTES: &str = r#"
<p>New features:</p>
<ul>
<li>The app will remember whether it should search PDF and Office files.</li>
<li>The search backend has been completely rewritten and should be quite a bit faster.</li>
</ul>
"#;

pub fn dialog() -> adw::AboutDialog {
adw::AboutDialog::builder()
.application_name("Clapgrep")
.version("1.1")
.version("1.2")
.release_notes(RELEASE_NOTES)
.application_icon(crate::APP_ID)
.developer_name("Leopold Luley")
.website("https://github.com/luleyleo/clapgrep")
Expand Down

0 comments on commit da12376

Please sign in to comment.