Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kaii-lb committed Sep 26, 2023
1 parent 5eea544 commit 2cf31d0
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 19 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
build-linux/
target/
build/
.flatpak-builder/
.gitignore
2 changes: 1 addition & 1 deletion com.kaii.hgui.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"sources" : [
{
"type" : "git",
"url" : "file:///home/kai/Projects"
"url" : "file:///home/kaii/Projects"
}
]
}
Expand Down
44 changes: 35 additions & 9 deletions data/com.kaii.hgui.appdata.xml.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop">
<id>com.kaii.hgui.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<description>
<p>An app allowing users to convert between Hijri and Gregorian years and full dates!
It also copies the result the the system's clipboard to allow for easier access.</p>
</description>
</component>
<component type="desktop-application">
<id>com.kaii.hgui</id>

<name>Time Warp</name>
<summary>An app made for easy and offline conversion between Hijri and Gregorian dates (and vice versa)!</summary>

<metadata_license>CC-BY-4.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>

<recommends>
<display_length compare="ge">768</display_length>
</recommends>

<description>
<p>
Easy to use and straightforward, this app allows a lot of time saving (hence the name) when in need. Mostly useful for those who love history :D
</p>
<p>
<em>Features</em> - Convert between Hijri and Gregorian years - Convert between Hijri and Gregorian dates - Convert multiple years at once - Copy result to clipboard
</p>
</description>

<launchable type="desktop-id">com.kaii.hgui.desktop</launchable>
<screenshots>
<screenshot type="default">
<image>https://github.com/kaii-lb/hgui-rust/blob/master/assets/images/dates.png</image>
</screenshot>
<screenshot>
<image>https://github.com/kaii-lb/hgui-rust/blob/master/assets/images/array.png</image>
</screenshot>
<screenshot>
<image>https://github.com/kaii-lb/hgui-rust/blob/master/assets/images/years.png</image>
</screenshot>
</screenshots>
</component>
15 changes: 9 additions & 6 deletions data/com.kaii.hgui.desktop.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[Desktop Entry]
Name=Time Warp
Exec=hgui-rust
Icon=com.kaii.hgui
Terminal=false
Version=1.0
Type=Application
Categories=GTK;

Name=Time Warp
Comment=An app made for easy and offline conversion between Hijri and Gregorian dates (and vice versa)!
Categories=Utility;Construction;
Keywords=hijri;gregorian;converter;date;
StartupNotify=true

Icon=com.kaii.hgui
Exec=hgui-rust
Terminal=false
2 changes: 1 addition & 1 deletion src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl HguiRustApplication {
let window = self.active_window().unwrap();
let about = adw::AboutWindow::builder()
.transient_for(&window)
.application_name("Hijri to Gregorian Converter")
.application_name("Time Warp")
.application_icon("com.kaii.hgui")
.developer_name("Kaii")
.version(VERSION)
Expand Down
4 changes: 2 additions & 2 deletions src/gtk/window.blp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ template HguiRustWindow : Adw.ApplicationWindow {
[title]
Box {
Label {
label: "Hijri to Gregorian Converter";
label: "Time Warp";
}
}

Expand Down Expand Up @@ -166,7 +166,7 @@ menu primary_menu {
}

item {
label: _("_About Hgui-rust");
label: _("_About Time Warp");
action: "app.about";
}
}
Expand Down

0 comments on commit 2cf31d0

Please sign in to comment.