...
The current BOS 9.0.145.1 release contains a Beta version of Chromium 110. This version, which exceeds the Power BI requirement for Series 5, can be set by using the chromium110
registry key.
See this page for more information about changing registry key settings.
Registry Key Example Settings
BrightScript
...
Console
See this page for more information.registry write html widget_type chromium110
BrightScript
...
See this page for more information.
Code Block |
---|
RegHtml = CreateObject("roRegistrySection", "html") RegHtml.Write("widget_type", "chromium110") RegHtml.Flush() |
JavaScript
...
See this page for more information.
Code Block | ||
---|---|---|
| ||
var registryClass = require("@brightsign/registry"); var registry = new registryClass(); registry.write("html", {widget_type:"chromium110"}).then( function(){console.log("Write Successful");}); |
...