Skip to content

Commit eb0541c

Browse files
committed
chore: update app id to com.stremio.Client
1 parent bb2a4c9 commit eb0541c

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center">
22

3-
![Stremio icon](data/icons/com.stremio.App.svg "Stremio icon")
3+
![Stremio icon](data/icons/com.stremio.Client.svg "Stremio icon")
44

55
# Stremio on Linux
66
Client for Stremio on Linux using [`winit`](https://github.com/rust-windowing/winit) + [`glutin`](https://github.com/rust-windowing/glutin) with [`libmpv`](https://github.com/mpv-player/mpv/blob/master/DOCS/man/libmpv.rst) and [`CEF`](https://github.com/chromiumembedded/cef)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"app-id": "com.stremio.App.Devel",
2+
"app-id": "com.stremio.Client.Devel",
33
"runtime": "org.freedesktop.Platform",
44
"runtime-version": "24.08",
55
"sdk": "org.freedesktop.Sdk",
@@ -61,11 +61,11 @@
6161
"post-install": [
6262
"install -Dm755 data/stremio -t /app/bin/",
6363
"install -Dm755 target/debug/stremio-linux-shell /app/share/stremio/stremio",
64-
"install -Dm644 data/icons/com.stremio.App.Devel.svg -t /app/share/icons/hicolor/scalable/apps/",
65-
"install -Dm644 data/com.stremio.App.desktop /app/share/applications/com.stremio.App.Devel.desktop",
66-
"sed -i -e 's/com.stremio.App/com.stremio.App.Devel/g' /app/share/applications/com.stremio.App.Devel.desktop",
67-
"install -Dm644 data/com.stremio.App.metainfo.xml /app/share/metainfo/com.stremio.App.Devel.metainfo.xml",
68-
"sed -i -e 's/com.stremio.App/com.stremio.App.Devel/g' /app/share/metainfo/com.stremio.App.Devel.metainfo.xml",
64+
"install -Dm644 data/icons/com.stremio.Client.Devel.svg -t /app/share/icons/hicolor/scalable/apps/",
65+
"install -Dm644 data/com.stremio.Client.desktop /app/share/applications/com.stremio.Client.Devel.desktop",
66+
"sed -i -e 's/com.stremio.Client/com.stremio.Client.Devel/g' /app/share/applications/com.stremio.Client.Devel.desktop",
67+
"install -Dm644 data/com.stremio.Client.metainfo.xml /app/share/metainfo/com.stremio.Client.Devel.metainfo.xml",
68+
"sed -i -e 's/com.stremio.Client/com.stremio.Client.Devel/g' /app/share/metainfo/com.stremio.Client.Devel.metainfo.xml",
6969
"mkdir -p /app/lib/ffmpeg",
7070
"mkdir -p /app/lib/intel-vaapi-driver"
7171
],
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[Desktop Entry]
22
Name=Stremio
33
Comment=Freedom To Stream
4-
Icon=com.stremio.App
4+
Icon=com.stremio.Client
55
Terminal=false
66
StartupNotify=true
77
Exec=sh -c "stremio -o '%u'"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<component type="desktop-application">
3-
<id>com.stremio.App</id>
3+
<id>com.stremio.Client</id>
44
<name>Stremio</name>
55
<summary>Freedom to Stream</summary>
66
<description>
@@ -38,5 +38,5 @@
3838
<url type="homepage">https://github.com/Stremio/stremio-linux</url>
3939
<url type="bugtracker">https://github.com/Stremio/stremio-linux/issues</url>
4040

41-
<launchable type="desktop-id">com.stremio.App.desktop</launchable>
41+
<launchable type="desktop-id">com.stremio.Client.desktop</launchable>
4242
</component>
Lines changed: 2 additions & 2 deletions
Loading

flatpak/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
package_id="com.stremio.App.Devel"
3+
package_id="com.stremio.Client.Devel"
44
cwd="flatpak"
55

66
python3 $cwd/flatpak-builder-tools/cargo/flatpak-cargo-generator.py Cargo.lock -o $cwd/cargo-sources.json

src/constants.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pub const APP_ID: &str = match cfg!(debug_assertions) {
2-
true => "com.stremio.App.Devel",
3-
false => "com.stremio.App",
2+
true => "com.stremio.Client.Devel",
3+
false => "com.stremio.Client",
44
};
55

66
pub const APP_NAME: &str = "Stremio";

0 commit comments

Comments
 (0)