Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
verticalsync committed Jun 21, 2024
2 parents c58524f + 32d2dbf commit c6e9749
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "60797172+github-actions[bot]@users.noreply.github.com"
git checkout -b ci/meta-update
git add meta/me.verticalsync.Sunroof.metainfo.xml
git add meta/io.github.verticalsync.sunroof.metainfo.xml
git commit -m "Insert release changes for ${{ github.event.release.tag_name }}"
git push origin ci/meta-update
gh pr create -B main -H ci/meta-update -t "Metainfo for ${{ github.event.release.tag_name }}" -b "This PR updates the metainfo for release ${{ github.event.release.tag_name }}."
Expand Down
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<component type="desktop-application">
<!--Created with jdAppStreamEdit 7.1-->
<id>me.verticalsync.Sunroof</id>
<id>io.github.verticalsync.sunroof</id>
<name>Sunroof</name>
<summary>Snappier Discord app with Suncord</summary>
<developer_name>Suncord Contributors</developer_name>
<launchable type="desktop-id">me.verticalsync.Sunroof.desktop</launchable>
<launchable type="desktop-id">io.github.verticalsync.sunroof</launchable>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0</project_license>
<project_group>Suncord</project_group>
<description>
<p>Sunroof is a cross platform desktop app aiming to give you a snappier Discord experience with Suncord pre-installed.</p>
<p>Sunroof comes bundled with Venmic, a purpose-built library to provide functioning audio screenshare.</p>
<p>Sunroof is a cross-platform Vesktop Fork desktop app aiming to give you extra plugins but still give you a snappier Discord experience, with Suncord pre-installed.</p>
<p>Which comes bundled with Venmic, a purpose-built library to provide functioning audio screenshare.</p>
</description>
<screenshots>
<screenshot type="default">
<caption>Suncord settings page and about window open</caption>
<image type="source">https://vencord.dev/assets/screenshots/vesktop-1-appstream.png</image>
<image type="source">https://files.catbox.moe/59wp6h.png</image>
</screenshot>
<screenshot>
<caption>A dialog showing screenshare options</caption>
<image type="source">https://vencord.dev/assets/screenshots/vesktop-2-appstream.png</image>
<image type="source">https://files.catbox.moe/nbo64w.png</image>
</screenshot>
<screenshot>
<caption>A screenshot of a Discord server</caption>
<image type="source">https://vencord.dev/assets/screenshots/vesktop-3-appstream.png</image>
<image type="source">https://files.catbox.moe/uzpk4h.png</image>
</screenshot>
</screenshots>
<releases>
<release version="1.6.0" date="2024-03-25" type="stable">
<url>https://github.com/verticalsync/Sunroof/releases/tag/1.6.0</url>
<description>
Expand Down Expand Up @@ -228,4 +229,4 @@
<keyword>Privacy</keyword>
<keyword>Mod</keyword>
</keywords>
</component>
</component>
4 changes: 2 additions & 2 deletions scripts/utils/updateMeta.mts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const latestReleaseInformation = await fetch("https://api.github.com/repos/verti
}
}).then(res => res.json());

const metaInfo = await fs.readFile("./meta/me.verticalsync.Sunroof.metainfo.xml", "utf-8");
const metaInfo = await fs.readFile("./meta/io.github.verticalsync.sunroof.metainfo.xml", "utf-8");

const parser = new DOMParser().parseFromString(metaInfo, "text/xml");

Expand Down Expand Up @@ -90,4 +90,4 @@ const output = xmlFormat(new XMLSerializer().serializeToString(parser), {
indentation: " "
});

await fs.writeFile("./meta/me.verticalsync.Sunroof.metainfo.xml", output, "utf-8");
await fs.writeFile("./meta/io.github.verticalsync.sunroof.metainfo.xml", output, "utf-8");

0 comments on commit c6e9749

Please sign in to comment.