-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e388812
commit 2f20f83
Showing
7 changed files
with
54 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,58 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2021 elementary, Inc. <[email protected]> --> | ||
<component> | ||
<component type="desktop-application"> | ||
<id>io.elementary.installer</id> | ||
<translation type="gettext">io.elementary.installer</translation> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0</project_license> | ||
|
||
<name>Installer</name> | ||
<summary>Install elementary OS</summary> | ||
<description> | ||
<p>Step by step installer for elementary OS itself.</p> | ||
</description> | ||
|
||
<screenshots> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/1.0.7/data/screenshot-language.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-keyboard.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-try-install.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-custom.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-encrypt.png</image> | ||
</screenshot> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-progress.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-success.png</image> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<content_rating type="oars-1.1" /> | ||
|
||
<provides> | ||
<binary>io.elementary.installer</binary> | ||
<binary>io.elementary.installer-daemon</binary> | ||
</provides> | ||
|
||
<url type="bugtracker">https://github.com/elementary/installer/issues</url> | ||
<url type="donation">https://elementary.io/get-involved#funding</url> | ||
<url type="help">https://github.com/elementary/installer/discussions</url> | ||
<url type="homepage">https://elementary.io/</url> | ||
<url type="translate">https://l10n.elementary.io/projects/installer</url> | ||
|
||
<developer_name>elementary, Inc.</developer_name> | ||
<project_group>elementary</project_group> | ||
<update_contact>contact_at_elementary.io</update_contact> | ||
|
||
<releases> | ||
<release version="1.0.7" date="2023-01-11" urgency="medium"> | ||
<description> | ||
|
@@ -68,31 +111,4 @@ | |
</description> | ||
</release> | ||
</releases> | ||
|
||
<screenshots> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/1.0.7/data/screenshot-language.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-keyboard.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-try-install.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-custom.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-encrypt.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image type="default">https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-progress.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/elementary/installer/master/data/screenshot-success.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<developer_name>elementary, Inc.</developer_name> | ||
<url type="homepage">https://elementary.io</url> | ||
<url type="bugtracker">https://github.com/elementary/installer/issues</url> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
project( | ||
'io.elementary.installer', | ||
'vala', 'c', | ||
meson_version : '>= 0.56.0', | ||
version: '1.0.7' | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
data/installer.appdata.xml.in | ||
data/installer.metainfo.xml.in | ||
data/io.elementary.installer.desktop.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
i18n.gettext('extra', | ||
args: '--directory=' + meson.source_root(), | ||
args: '--directory=' + meson.project_source_root(), | ||
preset: 'glib', | ||
install: false | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
i18n.gettext(meson.project_name(), | ||
args: '--directory=' + meson.source_root(), | ||
args: '--directory=' + meson.project_source_root(), | ||
preset: 'glib' | ||
) | ||
subdir('extra') |