From 254d1aa9db2c614b45dbcd56b39bed0d76ba384a Mon Sep 17 00:00:00 2001 From: Rafostar <40623528+Rafostar@users.noreply.github.com> Date: Wed, 16 Dec 2020 15:33:39 +0100 Subject: [PATCH] Make remote app binary name consistent with app ID --- ...r.ClapperRemote.in => com.github.rafostar.Clapper.Remote.in} | 0 bin/meson.build | 2 +- clapper_src/webApp.js | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/{com.github.rafostar.ClapperRemote.in => com.github.rafostar.Clapper.Remote.in} (100%) diff --git a/bin/com.github.rafostar.ClapperRemote.in b/bin/com.github.rafostar.Clapper.Remote.in similarity index 100% rename from bin/com.github.rafostar.ClapperRemote.in rename to bin/com.github.rafostar.Clapper.Remote.in diff --git a/bin/meson.build b/bin/meson.build index d077c7d5..c36e6978 100644 --- a/bin/meson.build +++ b/bin/meson.build @@ -1,4 +1,4 @@ -clapper_apps = [ '', 'Remote' ] +clapper_apps = [ '', '.Remote' ] foreach id_postfix : clapper_apps bin_conf = configuration_data() diff --git a/clapper_src/webApp.js b/clapper_src/webApp.js index e5bd1168..e05442d4 100644 --- a/clapper_src/webApp.js +++ b/clapper_src/webApp.js @@ -25,7 +25,7 @@ class ClapperWebApp extends Gio.SubprocessLauncher if(this.remoteApp) return; - this.remoteApp = this.spawnv([Misc.appId + 'Remote']); + this.remoteApp = this.spawnv([Misc.appId + '.Remote']); this.remoteApp.wait_async(null, this._onRemoteClosed.bind(this)); debug('remote app started');