This commit is contained in:
kramo
2023-04-06 10:18:49 +02:00
parent 50ce503458
commit 33377cf69f
5 changed files with 23 additions and 19 deletions

View File

@@ -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"

View File

@@ -36,10 +36,14 @@
</screenshots>
<content_rating type="oars-1.1" />
<releases>
<release version="1.2.2" date="2023-03-30">
<release version="1.3" date="2023-04-06">
<description translatable="no">
<ul>
<li>Bug fixes</li>
<li>Support for importing game covers from SteamGridDB!</li>
<li>New import source: Lutris</li>
<li>New import source: itch</li>
<li>Better feedback for hiding and launching games</li>
<li>UX improvements</li>
<li>Translations since 1.2</li>
</ul>
</description>

View File

@@ -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,

View File

@@ -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', ],
)

View File

@@ -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",