Implemented clearer database functions and response codes so we know when to do library indexing.
Implement reading of artists, albums, and tracks. Fixed a bug related to unnecessary file name parsing. Fix SIGSEGV related to file name parsing and koto_utils_get_filename_without_extension. Implemented an unquote string function for use when reading database entries. Try to fix some weird random rendering issues. Changed where we are doing some KotoPageMusicLocal widget construction.
This commit is contained in:
parent
7566fb39f9
commit
35762ca233
12 changed files with 346 additions and 167 deletions
|
@ -30,7 +30,7 @@ static void on_activate (GtkApplication *app) {
|
|||
|
||||
window = gtk_application_get_active_window (app);
|
||||
if (window == NULL) {
|
||||
window = g_object_new(KOTO_TYPE_WINDOW, "application", app, "default-width", 600, "default-height", 300, NULL);
|
||||
window = g_object_new(KOTO_TYPE_WINDOW, "application", app, "default-width", 1200, "default-height", 675, NULL);
|
||||
}
|
||||
|
||||
gtk_window_present(window);
|
||||
|
@ -38,11 +38,6 @@ static void on_activate (GtkApplication *app) {
|
|||
|
||||
static void on_shutdown(GtkApplication *app) {
|
||||
(void) app;
|
||||
|
||||
if (koto_db != NULL) {
|
||||
g_message("Have a db?");
|
||||
}
|
||||
|
||||
close_db(); // Close the database
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue