Skip to content

Commit

Permalink
V2022.1.2
Browse files Browse the repository at this point in the history
- UX improvements
  • Loading branch information
nlogozzo committed Jan 7, 2022
1 parent 3ca821b commit f274789
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion UpdateConfig.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"LatestVersion":"2022.1.1","Changelog":"- Added confirm message for removing all queued downloads","LinkToExe":"https://github.com/nlogozzo/NickvisionTubeConverter/releases/download/2022.1.1/NickvisionTubeConverter"}
{"LatestVersion":"2022.1.2","Changelog":"- UX improvements","LinkToExe":"https://github.com/nlogozzo/NickvisionTubeConverter/releases/download/2022.1.2/NickvisionTubeConverter"}
2 changes: 1 addition & 1 deletion controls/headerbar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace NickvisionTubeConverter::Controls
m_btnRemoveAllQueuedDownloads.set_popover(m_popRemoveAllQueuedDownloads);
m_btnRemoveAllQueuedDownloads.set_tooltip_text("Clear All Queued Downloads");
//==Settings==//
m_btnSettings.set_icon_name("settings");
m_btnSettings.set_icon_name("preferences-system");
m_btnSettings.set_tooltip_text("Settings");
//==Help==//
m_actionHelp = Gio::SimpleActionGroup::create();
Expand Down
6 changes: 3 additions & 3 deletions views/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace NickvisionTubeConverter::Views
using namespace NickvisionTubeConverter::Models;
using namespace NickvisionTubeConverter::Controls;

MainWindow::MainWindow() : m_opened(false), m_updater("https://raw.githubusercontent.com/nlogozzo/NickvisionTubeConverter/main/UpdateConfig.json", { "2022.1.1" })
MainWindow::MainWindow() : m_opened(false), m_updater("https://raw.githubusercontent.com/nlogozzo/NickvisionTubeConverter/main/UpdateConfig.json", { "2022.1.2" })
{
//==Settings==//
set_default_size(800, 600);
Expand Down Expand Up @@ -304,7 +304,7 @@ namespace NickvisionTubeConverter::Views
void MainWindow::changelog(const Glib::VariantBase& args)
{
Gtk::MessageDialog* changelogDialog = new Gtk::MessageDialog(*this, "What's New?", false, Gtk::MessageType::INFO, Gtk::ButtonsType::OK, true);
changelogDialog->set_secondary_text("\n- Added confirm message for removing all queued downloads");
changelogDialog->set_secondary_text("\n- UX improvements");
changelogDialog->signal_response().connect(sigc::bind([](int response, Gtk::MessageDialog* dialog)
{
delete dialog;
Expand All @@ -319,7 +319,7 @@ namespace NickvisionTubeConverter::Views
aboutDialog->set_modal(true);
aboutDialog->set_hide_on_close(true);
aboutDialog->set_program_name("Nickvision Tube Converter");
aboutDialog->set_version("2022.1.1");
aboutDialog->set_version("2022.1.2");
aboutDialog->set_comments("An easy to use YouTube video downloader.");
aboutDialog->set_copyright("(C) Nickvision 2021-2022");
aboutDialog->set_license_type(Gtk::License::GPL_3_0);
Expand Down

0 comments on commit f274789

Please sign in to comment.