Change package name to io.github.lemmygtk.lemoa for flatpak

This commit is contained in:
Bnyro 2023-06-26 14:23:25 +02:00
parent 0e14266b4a
commit bd6216d839
8 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
{
"id": "com.lemmygtk.lemoa",
"id": "io.github.lemmygtk.lemoa",
"runtime": "org.gnome.Platform",
"runtime-version": "44",
"sdk": "org.gnome.Sdk",

View File

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<schemalist>
<schema path="/com/lemmygtk/lemoa" id="@BASE_ID@">
<schema path="/io/github/lemmygtk/lemoa" id="@BASE_ID@">
</schema>
</schemalist>

View File

@ -9,7 +9,7 @@ project(
gnome = import('gnome')
# application_id can contain the -devel extension
base_id = 'com.lemmygtk.lemoa'
base_id = 'io.github.lemmygtk.lemoa'
version = meson.project_version()
# Required packages

View File

@ -1,4 +1,4 @@
pub const NAME: &str = "lemoa";
pub const APP_ID: &str = "com.lemmygtk.lemoa";
pub const PKGDATADIR: &str = "/usr/local/share/lemoa";
pub const APP_ID: &str = "io.github.lemmygtk.lemoa";
pub const PKGDATADIR: &str = "/app/share/lemoa";
pub const VERSION: &str = "0.1.0";