-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1391 Add menu entry and docs for running app in remote mode
- Loading branch information
Showing
10 changed files
with
181 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
= User interface | ||
|
||
Each Helgobox instance can display its own xref:app.adoc[] window, embedded into REAPER: | ||
|
||
. Open the xref:plug-in.adoc[] | ||
. Press menu:Menu[Show App] | ||
Unlike the xref:plug-in.adoc[], the App offers a modern and fancy user interface. | ||
At the moment, it primarily provides the user interface for xref:playtime::introduction.adoc[Playtime], but it will contain more stuff in the future. | ||
|
||
.App window | ||
image::generated/screenshots/main/home-screen.png[] | ||
|
||
At the moment, the app primarily provides the user interface for xref:playtime::introduction.adoc[Playtime], but it will contain more stuff in the future. |
58 changes: 58 additions & 0 deletions
58
doc/helgobox/modules/ROOT/pages/app/user-interface/cli.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
= Command line interface | ||
|
||
When running in xref:app.adoc#app-remote-mode[], the app session can optionally be configured using command line arguments. | ||
|
||
== Synopsis | ||
|
||
*helgobox* [_OPTIONS_] | ||
|
||
== Options | ||
|
||
--connection=<URL>:: | ||
URL that decides how the app connects to the xref:plug-in.adoc[]. | ||
+ | ||
|
||
.Connection examples | ||
[cols="1,2"] | ||
|=== | ||
| | ||
`grpc:://localhost:39051` + | ||
`grpc:://127.0.0.1:39051` | ||
| | ||
Connects to the plug-in running on the same machine, assuming a xref:configuration-files.adoc#realearn-ini[standard server configuration] (`server_grpc_port=39051`). | ||
|
||
This is the default if the connection option is omitted. | ||
|
||
| | ||
`grpc:://winpc:39051` + | ||
`grpc:://192.168.1.47:39051` | ||
| | ||
Connects to the plug-in running on the machine with the host name `winpc` or the IP address 192.168.1.47. | ||
|=== | ||
|
||
--location:: | ||
Path that decides which page is shown initially. | ||
+ | ||
This is not a file system path. It's comparable to the path of a URL that you would see in a web browser's address bar. | ||
+ | ||
|
||
.Location examples | ||
[cols="1,2"] | ||
|=== | ||
| | ||
`/instance/apc/projection` | ||
| | ||
Opens the xref:realearn::user-interface/projection.adoc[projection page] for the xref:key-concepts.adoc#instance[] with xref:key-concepts.adoc#instance-key[] `apc`. | ||
|
||
| | ||
`/instance/3/playtime` | ||
| | ||
Opens the xref:playtime::user-interface.adoc[Playtime] page for the xref:key-concepts.adoc#instance[] with xref:key-concepts.adoc#instance-id[] *3*. | ||
|
||
Numbers are always interpreted as instance IDs and strings as instance keys. Normally, you want to use an xref:key-concepts.adoc#instance-key[instance key] to refer to the desired instance, because instance IDs are likely to change after restarting REAPER. | ||
|
||
|
||
|=== | ||
|
||
--help:: | ||
Displays an overview of all supported command line options. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
A complement to the xref:plug-in.adoc[] which provides a modern user interface. | ||
It runs embedded in REAPER and in the future also as a separate mobile app (iOS, Android). | ||
It runs embedded in REAPER or as a separate program that connects to REAPER. Mobile versions for iOS and Android are planned. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters