diff --git a/data/com.lemmygtk.lemoa.metainfo.xml.in b/data/com.lemmygtk.lemoa.metainfo.xml.in
index 7a8b692..f87b6fa 100644
--- a/data/com.lemmygtk.lemoa.metainfo.xml.in
+++ b/data/com.lemmygtk.lemoa.metainfo.xml.in
@@ -15,7 +15,11 @@
https://raw.githubusercontent.com/lemmy-gtk/lemoa/main/data/screenshots/community.png
- Community view
+ Community
+
+
+ https://raw.githubusercontent.com/lemmy-gtk/lemoa/main/data/screenshots/user.png
+ User profile
https://github.com/lemmy-gtk/lemoa
diff --git a/data/screenshots/community.png b/data/screenshots/community.png
new file mode 100644
index 0000000..d0fda22
Binary files /dev/null and b/data/screenshots/community.png differ
diff --git a/data/screenshots/posts.png b/data/screenshots/posts.png
new file mode 100644
index 0000000..1f95e8d
Binary files /dev/null and b/data/screenshots/posts.png differ
diff --git a/data/screenshots/user.png b/data/screenshots/user.png
new file mode 100644
index 0000000..872a012
Binary files /dev/null and b/data/screenshots/user.png differ
diff --git a/src/components/post_page.rs b/src/components/post_page.rs
index 6fd8cca..edad8b9 100644
--- a/src/components/post_page.rs
+++ b/src/components/post_page.rs
@@ -66,7 +66,7 @@ impl SimpleComponent for PostPage {
#[local_ref]
image -> gtk::Box {
- set_height_request: 100,
+ set_height_request: 400,
set_margin_bottom: 20,
set_margin_top: 20,
},
diff --git a/src/config.rs b/src/config.rs
index c56c81b..640bb72 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,4 +1,4 @@
pub const NAME: &str = "lemoa";
pub const APP_ID: &str = "com.lemmygtk.lemoa";
-pub const PKGDATADIR: &str = "/app/share/lemoa";
+pub const PKGDATADIR: &str = "/usr/local/share/lemoa";
pub const VERSION: &str = "0.1.0";
diff --git a/src/main.rs b/src/main.rs
index e914841..1627324 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -102,7 +102,7 @@ impl SimpleComponent for App {
#[root]
main_window = gtk::ApplicationWindow {
set_title: Some("Lemoa"),
- set_default_size: (300, 100),
+ set_default_size: (1400, 800),
#[wrap(Some)]
set_titlebar = >k::HeaderBar {