«
Previous
|
Next
»
Revision bc4c8be2
| src/main.cc | ||
|---|---|---|
|
#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"};
|
||
| ... | ... | |
|
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();
|
||
| ... | ... | |
|
{
|
||
|
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();
|
||
Update popup format and add homepage link to the "about" popup. Bump
version to 0.2.1.