diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 78e7feb..82a00a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ docs: - ./Flashcards.pdf flatpak: - image: quay.io/gnome_infrastructure/gnome-runtime-images:gnome-47 + image: quay.io/gnome_infrastructure/gnome-runtime-images:gnome-48 stage: build variables: APP_ID: "li.sopht.Flashcards" diff --git a/docs/template.typ b/docs/template.typ index db34851..1cab9c3 100644 --- a/docs/template.typ +++ b/docs/template.typ @@ -5,7 +5,7 @@ // Set the document's basic properties. set document(author: authors, title: title) - set text(font: "Linux Libertine", lang: "de") + set text(lang: "de") set heading(numbering: "1.1") set align(center) diff --git a/li.sopht.Flashcards.json b/li.sopht.Flashcards.json index 9c630ed..490e632 100644 --- a/li.sopht.Flashcards.json +++ b/li.sopht.Flashcards.json @@ -1,7 +1,7 @@ { "id": "li.sopht.Flashcards", "runtime": "org.gnome.Platform", - "runtime-version": "47", + "runtime-version": "48", "sdk": "org.gnome.Sdk", "command": "flashcards", "separate-locales": false, @@ -26,7 +26,9 @@ { "name": "blueprint-compiler", "buildsystem": "meson", - "cleanup": ["*"], + "cleanup": [ + "*" + ], "sources": [ { "type": "git", diff --git a/resources/flashcards.gresource.xml b/resources/flashcards.gresource.xml index d234d68..dc0c58f 100644 --- a/resources/flashcards.gresource.xml +++ b/resources/flashcards.gresource.xml @@ -1,9 +1,9 @@ - ui/window.ui - ui/create-category.ui - ui/create-card.ui + window.ui + create-category.ui + create-card.ui li.sopht.Flashcards.metainfo.xml \ No newline at end of file diff --git a/resources/ui/meson.build b/resources/ui/meson.build index 9e52d42..993b004 100644 --- a/resources/ui/meson.build +++ b/resources/ui/meson.build @@ -1,7 +1,8 @@ blueprints = custom_target('blueprints', input : files( 'window.blp', - 'create-category.blp' + 'create-category.blp', + 'create-card.blp' ), output : '.', command : [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],