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

Add FreeDesktop Compliant MetaInfo #124

Merged
merged 2 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 10 additions & 1 deletion .github/workflows/central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,16 @@ jobs:
- run: flutter build linux --release --dart-define="SENTRY_DSN=${{ secrets.SENTRY_DSN }}" --dart-define="DISCORD_CLIENT_ID=${{ secrets.DISCORD_CLIENT_ID }}"
name: flutter build
- name: Zip Release
run: zip -r intiface-central-linux-${{ matrix.os }}-x64.zip build/linux/x64/release/bundle
run: |
ROOT=`pwd`
ZIP=$PWD/intiface-central-linux-${{ matrix.os }}-x64.zip
cd build/linux/x64/release/bundle
zip -r $ZIP ./*
cd $ROOT
cd linux/
zip -u $ZIP com.nonpolynomial.intiface_central.desktop
zip -u $ZIP com.nonpolynomial.intiface_central.metainfo.xml
cd $ROOT
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
57 changes: 57 additions & 0 deletions linux/com.nonpolynomial.intiface_central.metainfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html -->
<!-- Credits to github/nickavem for the app data, Doomsdayrs for edits -->
<component type="desktop">
<id>com.nonpolynomial.intiface_central</id>
<metadata_license>MIT</metadata_license>
<name>Intiface Central</name>
<summary>Buttplug Frontend Application</summary>
<description>
<p>Intiface® Central is a frontend application for the Buttplug Sex Toy Control Library, for Desktop (Win/macOS/Linux) and Mobile (Android/iOS).</p>
<p>For users, it provides simple, friendly capabilites for managing, connecting, customizing devices.</p>
<p>For developers, it allows their application to connect to and control sex toys, without having to worry about constantly updating the underlying libraries or dealing with bugs and crashes in a difficult-to-debug cross langauge environment.</p>
</description>
<url type="homepage">https://intiface.com/central/</url>
<url type="bugtracker">https://github.com/intiface/intiface-central/issues</url>
<url type="faq">https://docs.intiface.com/docs/intiface-central/</url>
<url type="help">https://discuss.buttplug.io/</url>
<launchable type="desktop-id">com.nonpolynomial.intiface_central.desktop</launchable>
<project_license>GPL-3.0</project_license>
<developer id="com.nonpolyomial">
<name>Nonpolynomial Labs, LLC</name>
</developer>

<releases>
<release version="2.5.5" date="2024-01-29"/>
<release version="2.5.3" date="2023-11-17"/>
<release version="2.4.5" date="2023-10-09"/>
<release version="2.4.4" date="2023-10-06"/>
<release version="2.4.3" date="2023-07-23"/>
<release version="2.3.0" date="2023-02-20"/>
</releases>

<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/intiface/intiface-central/main/screenshots/news.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/intiface/intiface-central/main/screenshots/devices.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/intiface/intiface-central/main/screenshots/log.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/intiface/intiface-central/main/screenshots/settings.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/intiface/intiface-central/main/screenshots/help.png</image>
</screenshot>
</screenshots>

<content_rating type="oars-1.1">
<content_attribute id="sex-themes">moderate</content_attribute>
</content_rating>
<categories>
<category>Utility</category>
</categories>
</component>