Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvladus committed Apr 5, 2023
1 parent a486597 commit 790c101
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_ID=com.github.mrvladus.List
APP_ID=io.github.mrvladus.List
BIN=list
PREFIX=/app
CC=gcc
Expand All @@ -16,5 +16,5 @@ install: build
glib-compile-schemas $(PREFIX)/share/glib-2.0/schemas

run:
flatpak-builder --user --install --force-clean _build $(APP_ID).yml
flatpak-builder --user --install --force-clean _build $(APP_ID).yaml
flatpak run $(APP_ID)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Todo application for those who prefer simplicity. Add new todo's, remove comlete
## Installing
List is available as a Flatpak on Flathub:

<a href="https://flathub.org/apps/details/com.github.mrvladus.List"><img src="https://flathub.org/assets/badges/flathub-badge-en.png" alt="Download on Flathub" width="240"></a>
<a href="https://flathub.org/apps/details/io.github.mrvladus.List"><img src="https://flathub.org/assets/badges/flathub-badge-en.png" alt="Download on Flathub" width="240"></a>

## Building from source
1. Clone repo `git clone https://github.com/mrvladus/List`
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Name=List
Exec=list
Icon=com.github.mrvladus.List
Icon=io.github.mrvladus.List
Terminal=false
Type=Application
Categories=Office;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="list">
<schema id="com.github.mrvladus.List" path="/com/github/mrvladus/List/">
<schema id="io.github.mrvladus.List" path="/io/github/mrvladus/List/">
<key name="width" type="i">
<default>500</default>
</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>com.github.mrvladus.List</id>
<id>io.github.mrvladus.List</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>MIT</project_license>
<content_rating type="oars-1.1" />
<developer_name>Vlad Krupinski</developer_name>
<url type="homepage">https://github.com/mrvladus/List</url>

<launchable type="desktop-id">com.github.mrvladus.List.desktop</launchable>
<launchable type="desktop-id">io.github.mrvladus.List.desktop</launchable>
<provides>
<binary>list</binary>
</provides>
Expand All @@ -22,16 +22,23 @@
<screenshots>
<screenshot type="default">
<image>
https://github.com/mrvladus/List/blob/eafaad393f73cccbcc71c38b55a0ebf061c6ad07/screenshots/light.png?raw=true</image>
https://github.com/mrvladus/List/blob/fedf7f5448343062b8469ece8470896fbf0f09bf/screenshots/light.png?raw=true</image>
</screenshot>
<screenshot>
<image>
https://github.com/mrvladus/List/blob/eafaad393f73cccbcc71c38b55a0ebf061c6ad07/screenshots/dark.png?raw=true</image>
https://github.com/mrvladus/List/blob/fedf7f5448343062b8469ece8470896fbf0f09bf/screenshots/dark.png?raw=true</image>
</screenshot>
</screenshots>

<releases>
<release version="44.0" date="2023-04-05">
<release version="44.0.1" date="2023-04-05">
<description>
<p>
Bug fixes.
</p>
</description>
</release>
<release version="44.0" date="2023-04-04">
<description>
<p>
First release.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
app-id: com.github.mrvladus.List
app-id: io.github.mrvladus.List
runtime: org.gnome.Platform
runtime-version: '44'
sdk: org.gnome.Sdk
Expand Down
5 changes: 2 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#include <adwaita.h>
#include <stdio.h>
#include <string.h>

#define APP_ID "com.github.mrvladus.List"
#define APP_ID "io.github.mrvladus.List"

// ---------- Functions defenition ---------- //

Expand Down Expand Up @@ -44,7 +43,7 @@ void InfoBtnClicked()
gtk_application_get_active_window(GTK_APPLICATION(app)),
"application-name", "List",
"application-icon", APP_ID,
"version", "44.0",
"version", "44.0.1",
"copyright", "© 2023 Vlad Krupinsky",
"website", "https://github.com/mrvladus/List",
"license-type", GTK_LICENSE_MIT_X11,
Expand Down

0 comments on commit 790c101

Please sign in to comment.