Removed object code and added link to more GTK2 software in the About window

This commit is contained in:
laki 2026-02-02 21:32:25 +00:00
parent 2feef89e14
commit 60255275eb
10 changed files with 7 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
src/dialogs.o
gtk2-mpv-player

Binary file not shown.

View File

@ -331,8 +331,11 @@ void dialogs_show_about(GtkWindow *parent)
GtkWidget *copyright_label = gtk_label_new("© 2026 laki"); GtkWidget *copyright_label = gtk_label_new("© 2026 laki");
gtk_box_pack_start(GTK_BOX(about_vbox), copyright_label, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(about_vbox), copyright_label, FALSE, FALSE, 0);
GtkWidget *link_label = gtk_link_button_new_with_label("https://github.com/mpv-player/mpv", "Powered by libmpv"); GtkWidget *link_label1 = gtk_link_button_new_with_label("https://github.com/mpv-player/mpv", "Powered by libmpv");
gtk_box_pack_start(GTK_BOX(about_vbox), link_label, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(about_vbox), link_label1, FALSE, FALSE, 0);
GtkWidget *link_label2 = gtk_link_button_new_with_label("https://lakiweb.net/article/gtk2/software-directory.html", "More GTK2 Software Available Here!");
gtk_box_pack_start(GTK_BOX(about_vbox), link_label2, FALSE, FALSE, 0);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), about_vbox, gtk_label_new("About")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), about_vbox, gtk_label_new("About"));

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
src/ui.o

Binary file not shown.