commit bc4c8be2954300953ff670db00f53dfd89af11f3
Author: david.sorber <david.sorber@gmail.com>
Date:   Fri Nov 28 17:08:26 2025 -0500

    Update popup format and add homepage link to the "about" popup. Bump
    version to 0.2.1.

diff --git a/src/main.cc b/src/main.cc
index 7c84e13..57f4c56 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -33,7 +33,7 @@ namespace sfs = std::filesystem;
 #endif
 
 const std::string APP_NAME("pwmgr");
-const std::string VERSION("v0.2.0");
+const std::string VERSION("v0.2.1");
 const std::string DEFAULT_FILEPATH("/home/dsorber/Documents/chicken_soup/chicken_soup.txt.enc");
 
 const std::string BOLD{"\033[1m"};
@@ -413,6 +413,10 @@ int main(int argc, char** argv)
                                     VERSION.c_str());
                         ImGui::Text("Compiled on: %s ", __TIMESTAMP__);
                         ImGui::Text("Created by: dsorber");
+                        ImGui::Text("Homepage:");
+                        ImGui::SameLine();
+                        ImGui::TextLinkOpenURL(APP_NAME.c_str(), "https://brutus.gleeze.com/redmine/projects/pwmgr");
+                        ImGui::Separator();
                         ImGui::PushFont(tinyfont);
                         ImGui::Text("(click anywhere outside to close)");
                         ImGui::PopFont();
@@ -530,7 +534,8 @@ int main(int argc, char** argv)
                     {
                         ImGui::SeparatorText("Save Popup");
                         ImGui::Text("Someday this button will do something...");
-                        ImGui::Text("but today is not that day");
+                        ImGui::Text("...but today is not that day.");
+                        ImGui::Separator();
                         ImGui::PushFont(tinyfont);
                         ImGui::Text("(click anywhere outside to close)");
                         ImGui::PopFont();
