Skip to content

Commit

Permalink
FranzCross: sketch out Flatpak metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanp committed Oct 20, 2023
1 parent 8d31f07 commit 7ab0d0b
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 2 deletions.
2 changes: 2 additions & 0 deletions FranzCross/flatpak/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.flatpak-builder
build/
3 changes: 3 additions & 0 deletions FranzCross/flatpak/flathub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"only-arches": ["x86_64"]
}
46 changes: 46 additions & 0 deletions FranzCross/flatpak/io.defn.Franz.appdata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<application>
<id type="desktop">io.defn.Franz</id>
<name>Franz</name>
<summary>A desktop client for Apache Kafka</summary>
<metadata_license>CC-BY-SA</metadata_license>
<project_license>Proprietary</project_license>
<developer_name>CLEARTYPE SRL</developer_name>

<url type="homepage">https://franz.defn.io</url>
<url type="help">https://franz.defn.io/manual</url>
<url type="bugtracker">mailto:[email protected]</url>

<description>
<p>Franz is a desktop client for Apache Kafka and other Apache Kafka-compatible brokers like RedPanda. Use it to inspect and modify the state of your cluster, search for your data, modify consumer groups and more.</p>
<p>Franz is available for a free 30-day trial. Individual and company licenses can be purchased at <a href="https://franz.defn.io/buy.html"> https://franz.defn.io/buy.html</a>.</p>
</description>

<launchable type="desktop-id">io.defn.Franz.desktop</launchable>

<screenshots>
<screenshot type="default">
<image>https://franz.defn.io/assets/01-welcome-window.png</image>
</screenshot>
<screenshot>
<image>https://franz.defn.io/assets/02-topic-records-table.png</image>
</screenshot>
<screenshot>
<image>https://franz.defn.io/assets/03-consumer-group.png</image>
</screenshot>
<screenshot>
<image>https://franz.defn.io/assets/04-aws-msk-iam.png</image>
</screenshot>
<screenshot>
<image>https://franz.defn.io/assets/05-lua-scripting.png</image>
</screenshot>
</screenshots>

<releases>
<release version="1.3" date="2023-10-15" />
</releases>

<content_rating type="oars-1.1">
<content_attribute id="social-info">moderate</content_attribute>
</content_rating>
</application>
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[Desktop Entry]
Type=Application
Version=1.2
Name=Franz
Exec=Franz
Name=Franz
Icon=io.defn.Franz
Version=1.2
Comment=Desktop client for Apache Kafka
Categories=Development
Terminal=false
25 changes: 25 additions & 0 deletions FranzCross/flatpak/io.defn.Franz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
app-id: io.defn.Franz
runtime: org.freedesktop.Platform
runtime-version: '22.04'
sdk: org.freedesktop.sdk
command: Franz
finish-args:
- --share=ipc
- --share=network
- --socket=wayland
- --socket=fallback-x11
- --filesystem=home
- --filesystem=/tmp
modules:
- name: Franz
buildsystem: simple
build-commands:
- cp -r bin /app/bin
- cp -r lib /app/lib
- install -D icon.svg /app/share/icons/hicolor/scalable/apps/io.defn.Franz.svg
- install -D io.defn.Franz.desktop /app/share/applications/io.defn.Franz.desktop
build-options:
no-debuginfo: true
sources:
- type: archive
path: FIXME

0 comments on commit 7ab0d0b

Please sign in to comment.