Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lvcabral committed Jan 4, 2024
1 parent 2b6a148 commit 5667541
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Webpack Build
name: build

on:
push:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ This repository provides a sample web application you can build and run ([learn

The simulator is also available as a multi-platform **desktop application** (Windows, Linux & macOS) that uses the package published by this project. The application introduces several aditional Roku features, such as the **ECP** (External Control Protocol) and **Remote Console** servers to allow integration with tools like Telnet or [VSCode BrightScript Extension](https://marketplace.visualstudio.com/items?itemName=RokuCommunity.brightscript). You can also change the device configurations such as screen resolution, keyboard control customization, localization, among others. Download the installers and find more information in the links below:

- Source code and documentation: [app repository](https://github.com/lvcabral/brs-emu-app).
- Installation packages: [release page](https://github.com/lvcabral/brs-emu-app/releases).
- Source code and documentation: [app repository](https://github.com/lvcabral/brs-desktop).
- Installation packages: [release page](https://github.com/lvcabral/brs-desktop/releases).

## Project Documentation

Expand Down
4 changes: 2 additions & 2 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
https://fonts.gstatic.com
https://www.googletagmanager.com
https://www.google-analytics.com;">
<title>BrightScript Engine</title>
<title>BrightScript Simulation Engine</title>
<link href="css/default.css" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Maven+Pro|Muli|Istok+Web' rel='stylesheet' type='text/css' />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
Expand Down Expand Up @@ -69,7 +69,7 @@ <h3>Documentation and Downloads</h3>
<a href="https://github.com/lvcabral/brs-engine/#readme">https://github.com/lvcabral/brs-engine/</a>
</p>
<p>To download the <b>Desktop Applications</b> for <b>Windows, macOS and Linux</b> go to the
<a href="https://github.com/lvcabral/brs-emu-app/releases">releases page</a>.
<a href="https://github.com/lvcabral/brs-desktop/releases">releases page</a>.
</p>
<p>You can download the source code of this project in either <a
href="https://github.com/lvcabral/brs-engine/zipball/master">zip</a> or <a
Expand Down
4 changes: 2 additions & 2 deletions docs/integrating.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ end sub
### example.js

```javascript
// Initialize Simulated Device
brs.initialize({}, { debugToConsole: true, disableKeys: true });
// Subscribe to Events (optional)
brs.subscribe("myApp", (event, data) => {
if (event === "loaded") {
Expand All @@ -115,6 +113,8 @@ brs.subscribe("myApp", (event, data) => {
console.info(`Execution terminated! ${event}: ${data}`);
}
});
// Initialize Simulated Device
brs.initialize({}, { debugToConsole: true, disableKeys: true });
// OnClick handler to execute the code
function executeBrs() {
source = document.getElementById("source-code").value;
Expand Down

0 comments on commit 5667541

Please sign in to comment.