Skip to content

Commit

Permalink
V2022.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Oct 11, 2022
1 parent b61cbf4 commit 48002d2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('org.nickvision.tagger', ['cpp', 'c'], version: '2022.10.1', meson_version: '>= 0.59.0', default_options: ['warning_level=3', 'werror=false', 'cpp_std=c++20'])
project('org.nickvision.tagger', ['cpp', 'c'], version: '2022.10.2', meson_version: '>= 0.59.0', default_options: ['warning_level=3', 'werror=false', 'cpp_std=c++20'])

gnome = import('gnome')

Expand Down
2 changes: 1 addition & 1 deletion org.nickvision.tagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{
"type": "git",
"url": "https://github.com/nlogozzo/NickvisionTagger.git",
"tag": "2022.10.1"
"tag": "2022.10.2"
}
]
}
Expand Down
7 changes: 2 additions & 5 deletions org.nickvision.tagger.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,9 @@
<binary>org.nickvision.tagger</binary>
</provides>
<releases>
<release version="2022.10.1" date="2022-10-09">
<release version="2022.10.2" date="2022-10-11">
<description>
<p>- Added the ability to submit tag metadata to AcoustId</p>
<p>- Improved 'Download MusicBrainz Metadata' accuracy</p>
<p>- Improved 'Download MusicBrainz Metadata' performance</p>
<p>- Improved file size calculation</p>
<p>- Fix window sizing issues for low-res screens</p>
</description>
</release>
</releases>
Expand Down
4 changes: 2 additions & 2 deletions src/ui/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Application::Application(const std::string& id, GApplicationFlags flags) : m_adw
m_appInfo.setName("NickvisionTagger");
m_appInfo.setShortName("Tagger");
m_appInfo.setDescription("An easy-to-use music tag (metadata) editor.");
m_appInfo.setVersion("2022.10.1");
m_appInfo.setChangelog("<ul><li>Added the ability to submit tag metadata to AcoustId</li><li>Improved 'Download MusicBrainz Metadata' accuracy</li><li>Improved 'Download MusicBrainz Metadata' performance</li><li>Improved file size calculation</li></ul>");
m_appInfo.setVersion("2022.10.2");
m_appInfo.setChangelog("<ul><li>Fix window sizing issues for low-res screens</li></ul>");
m_appInfo.setGitHubRepo("https://github.com/nlogozzo/NickvisionTagger");
m_appInfo.setIssueTracker("https://github.com/nlogozzo/NickvisionTagger/issues/new");
m_appInfo.setSupportUrl("https://github.com/nlogozzo/NickvisionTagger/discussions");
Expand Down
3 changes: 1 addition & 2 deletions src/ui/views/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ void gtk_image_set_from_byte_vector(GtkImage* image, const TagLib::ByteVector& b
MainWindow::MainWindow(GtkApplication* application, const MainWindowController& controller) : m_controller{ controller }, m_gobj{ adw_application_window_new(application) }
{
//Window Settings
gtk_widget_set_size_request(m_gobj, 1000, 800);
gtk_window_set_default_size(GTK_WINDOW(m_gobj), 1000, 800);
gtk_window_set_default_size(GTK_WINDOW(m_gobj), 900, 700);
g_signal_connect(m_gobj, "close_request", G_CALLBACK((void (*)(GtkWidget*, gpointer))[](GtkWidget*, gpointer data) { reinterpret_cast<MainWindow*>(data)->onCloseRequest(); }), this);
//gtk_style_context_add_class(gtk_widget_get_style_context(m_gobj), "devel");
//Header Bar
Expand Down

0 comments on commit 48002d2

Please sign in to comment.