diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..acf97ba --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +root = true + +[*.json] +indent_style = space +indent_size = 4 diff --git a/data/io.github.flattool.Warehouse.metainfo.xml.in b/data/io.github.flattool.Warehouse.metainfo.xml.in index 0db3d16..e243ce0 100644 --- a/data/io.github.flattool.Warehouse.metainfo.xml.in +++ b/data/io.github.flattool.Warehouse.metainfo.xml.in @@ -64,6 +64,14 @@ + + +

New Features and Changes

+
    +
  • Bump GNOME runtime version to 47
  • +
+
+

Bux Fixes

diff --git a/io.github.flattool.Warehouse.json b/io.github.flattool.Warehouse.json index 2e0bb8c..a357eba 100644 --- a/io.github.flattool.Warehouse.json +++ b/io.github.flattool.Warehouse.json @@ -1,10 +1,10 @@ { - "id" : "io.github.flattool.Warehouse", - "runtime" : "org.gnome.Platform", - "runtime-version" : "46", - "sdk" : "org.gnome.Sdk", - "command" : "warehouse", - "finish-args" : [ + "id": "io.github.flattool.Warehouse", + "runtime": "org.gnome.Platform", + "runtime-version": "47", + "sdk": "org.gnome.Sdk", + "command": "warehouse", + "finish-args": [ "--share=ipc", "--socket=fallback-x11", "--device=dri", @@ -14,7 +14,7 @@ "--filesystem=~/.local/share/flatpak/:ro", "--filesystem=~/.var/app/" ], - "cleanup" : [ + "cleanup": [ "/include", "/lib/pkgconfig", "/man", @@ -25,30 +25,28 @@ "*.la", "*.a" ], - "modules" : [ + "modules": [ { - "name" : "blueprint-compiler", - "buildsystem" : "meson", - "sources" : [ + "name": "blueprint-compiler", + "buildsystem": "meson", + "sources": [ { - "type" : "git", - "url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler", - "tag" : "v0.10.0" + "type": "git", + "url": "https://gitlab.gnome.org/jwestman/blueprint-compiler", + "tag": "v0.10.0" } ], - "cleanup" : [ - "*" - ] + "cleanup": ["*"] }, { - "name" : "warehouse", - "builddir" : true, - "buildsystem" : "meson", - "config-opts": [ "-Dprofile=default" ], - "sources" : [ + "name": "warehouse", + "builddir": true, + "buildsystem": "meson", + "config-opts": ["-Dprofile=default"], + "sources": [ { - "type" : "dir", - "path" : "." + "type": "dir", + "path": "." } ] } diff --git a/meson.build b/meson.build index c09bb66..abac2d9 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('warehouse', - version: '1.6.4', + version: '1.6.5', meson_version: '>= 0.62.0', default_options: [ 'warning_level=2', 'werror=false', ], )