diff --git a/README.md b/README.md
index 8183c13..b8bce70 100644
--- a/README.md
+++ b/README.md
@@ -20,25 +20,9 @@ Given a subreddit name and a keyword, RPST will return all posts from a specifie
- [x] Add manual dark mode option, that will be persistent in all sessions
- [ ] Make it save results to a CSV file
-# Images & Screenshots
-## GUI
-* 
-* 
-
-## CLI
-* 
-* 
-* 
-
-
-
-
# 📖 Wiki
[Refer to the Wiki](https://github.com/bellingcat/reddit-post-scraping-tool/wiki) for installation instructions, in addition to all other documentation.
+***
+
-# 😁 Donations
-If you like `RPST` and would like to show support, you can Buy A Coffee for the developer using the button below
-
-
-
-Your support will be much appreciated😊
+
diff --git a/RPST GUI/RPST/RPST.vbproj b/RPST GUI/RPST/RPST.vbproj
index bbde351..4a1f375 100644
--- a/RPST GUI/RPST/RPST.vbproj
+++ b/RPST GUI/RPST/RPST.vbproj
@@ -13,8 +13,8 @@
https://github.com/bellingcat/reddit-post-scraping-tool
README.md
https://github.com/bellingcat/reddit-post-scraping-tool
- 1.7.0.0
- 1.7.0.0
+ 1.7.0.1
+ 1.7.0.1
LICENSE
True
1.7.0
diff --git a/images/2023-08-08_07-04.png b/images/2023-08-08_07-04.png
new file mode 100644
index 0000000..acb8f89
Binary files /dev/null and b/images/2023-08-08_07-04.png differ
diff --git a/images/2023-08-08_07-04_1.png b/images/2023-08-08_07-04_1.png
new file mode 100644
index 0000000..b05340c
Binary files /dev/null and b/images/2023-08-08_07-04_1.png differ
diff --git a/images/2023-08-08_07-12.png b/images/2023-08-08_07-12.png
new file mode 100644
index 0000000..6051263
Binary files /dev/null and b/images/2023-08-08_07-12.png differ
diff --git a/images/2023-08-08_07-12_1.png b/images/2023-08-08_07-12_1.png
new file mode 100644
index 0000000..6eab626
Binary files /dev/null and b/images/2023-08-08_07-12_1.png differ
diff --git a/images/2023-08-25_15-30.png b/images/2023-08-25_15-30.png
new file mode 100644
index 0000000..8f9e5c1
Binary files /dev/null and b/images/2023-08-25_15-30.png differ
diff --git a/images/2023-08-25_15-31.png b/images/2023-08-25_15-31.png
new file mode 100644
index 0000000..98828c7
Binary files /dev/null and b/images/2023-08-25_15-31.png differ
diff --git a/images/2023-08-25_15-35.png b/images/2023-08-25_15-35.png
new file mode 100644
index 0000000..031c28e
Binary files /dev/null and b/images/2023-08-25_15-35.png differ
diff --git a/images/2023-08-25_15-39.png b/images/2023-08-25_15-39.png
new file mode 100644
index 0000000..50ba3ca
Binary files /dev/null and b/images/2023-08-25_15-39.png differ
diff --git a/pyproject.toml b/pyproject.toml
index 2fef997..bca19e5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ packages = ["rpst"]
[project]
name = "reddit-post-scraping-tool"
-version = "1.7.0.0"
+version = "1.7.0.1"
description = "Given a subreddit name and a keyword, RPST returns all top (by default) posts that contain the specified keyword."
readme = "README.md"
requires-python = ">=3.8"
diff --git a/rpst/main.py b/rpst/main.py
index 458a734..d8dd5cf 100644
--- a/rpst/main.py
+++ b/rpst/main.py
@@ -21,7 +21,7 @@ def run():
try:
# Check for updates
- check_updates(version_tag="1.7.0.0")
+ check_updates(version_tag="1.7.0.1")
# Get posts with the provided/parsed arguments
get_posts(args=args)
diff --git a/rpst/rpst.py b/rpst/rpst.py
index 7b733a7..c62f848 100644
--- a/rpst/rpst.py
+++ b/rpst/rpst.py
@@ -48,7 +48,7 @@ def create_post_branch(post: dict, keyword: str, tree: Tree, args: argparse) ->
}
# Add the post's branch to the main tree.
- post_branch = tree.add(f"{glyph.scroll} {post['data']['title']}")
+ post_branch = tree.add(f"{glyph.page_with_curl} {post['data']['title']}")
# Add each piece of extracted data as a branch of the post_branch.
for post_key, post_value in post_data.items():