Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change app-id to id in manifests #421

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/electron.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ID. It also configures the runtime and SDK:

.. code-block:: yaml

app-id: org.flathub.electron-sample-app
id: org.flathub.electron-sample-app
runtime: org.freedesktop.Platform
runtime-version: '23.08'
sdk: org.freedesktop.Sdk
Expand Down
2 changes: 1 addition & 1 deletion docs/first-build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ manifest to the hello world app, add the following to an empty file:

.. code-block:: yaml

app-id: org.flatpak.Hello
id: org.flatpak.Hello
runtime: org.freedesktop.Platform
runtime-version: '23.08'
sdk: org.freedesktop.Sdk
Expand Down
4 changes: 2 additions & 2 deletions docs/manifests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ Basic properties
----------------

Each manifest file should specify basic information about the application that
is to be built, including the ``app-id``, ``runtime``, ``runtime-version``,
is to be built, including the ``id``, ``runtime``, ``runtime-version``,
``sdk`` and ``command`` parameters. These properties are typically specified
at the beginning of the file.

For example, the GNOME Dictionary manifest includes:

.. code-block:: yaml

app-id: org.gnome.Dictionary
id: org.gnome.Dictionary
runtime: org.gnome.Platform
runtime-version: '45'
sdk: org.gnome.Sdk
Expand Down
2 changes: 1 addition & 1 deletion docs/qt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ straight-forward.

.. code-block:: yaml

app-id: org.flatpak.qtdemo
id: org.flatpak.qtdemo
runtime: org.kde.Platform
runtime-version: '5.15-22.08'
sdk: org.kde.Sdk
Expand Down