diff --git a/.windows/Cartridges.iss b/.windows/Cartridges.iss
index 9454d35..6eebbdd 100644
--- a/.windows/Cartridges.iss
+++ b/.windows/Cartridges.iss
@@ -1,5 +1,5 @@
#define MyAppName "Cartridges"
-#define MyAppVersion "1.2.2"
+#define MyAppVersion "1.3"
#define MyAppPublisher "kramo"
#define MyAppURL "https://github.com/kra-mo/cartridges"
#define MyAppExeName "pythonw.exe"
diff --git a/data/hu.kramo.Cartridges.metainfo.xml.in b/data/hu.kramo.Cartridges.metainfo.xml.in
index 3db9524..178a9a1 100644
--- a/data/hu.kramo.Cartridges.metainfo.xml.in
+++ b/data/hu.kramo.Cartridges.metainfo.xml.in
@@ -36,10 +36,14 @@
-
+
- - Bug fixes
+ - Support for importing game covers from SteamGridDB!
+ - New import source: Lutris
+ - New import source: itch
+ - Better feedback for hiding and launching games
+ - UX improvements
- Translations since 1.2
diff --git a/hu.kramo.Cartridges.json b/hu.kramo.Cartridges.json
index c36f1e1..ad40efb 100644
--- a/hu.kramo.Cartridges.json
+++ b/hu.kramo.Cartridges.json
@@ -49,20 +49,6 @@
}
]
},
- {
- "name" : "blueprint-compiler",
- "buildsystem" : "meson",
- "sources" : [
- {
- "type" : "git",
- "url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
- "tag" : "v0.6.0"
- }
- ],
- "cleanup" : [
- "*"
- ]
- },
{
"name": "python3-python-steamgriddb",
"buildsystem": "simple",
@@ -102,6 +88,20 @@
}
]
},
+ {
+ "name" : "blueprint-compiler",
+ "buildsystem" : "meson",
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
+ "tag" : "v0.6.0"
+ }
+ ],
+ "cleanup" : [
+ "*"
+ ]
+ },
{
"name" : "cartridges",
"builddir" : true,
diff --git a/meson.build b/meson.build
index 71e0ccb..eef1625 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('cartridges',
- version: '1.2.2',
+ version: '1.3',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
diff --git a/src/main.py b/src/main.py
index f42e963..94aadf7 100644
--- a/src/main.py
+++ b/src/main.py
@@ -113,7 +113,7 @@ class CartridgesApplication(Adw.Application):
application_name=_("Cartridges"),
application_icon="hu.kramo.Cartridges",
developer_name="kramo",
- version="1.2.2",
+ version="1.3",
developers=[
"kramo https://kramo.hu",
"Paweł Lidwin https://github.com/imLinguin",