@holochain/hc-spin 0.400.0-dev.2 → 0.400.0-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/index.js +1 -1
- package/package.json +2 -2
- package/src/main/index.ts +1 -1
package/dist/main/index.js
CHANGED
|
@@ -13075,7 +13075,7 @@ const WINDOW_INFO_MAP = {};
|
|
|
13075
13075
|
electron.protocol.registerSchemesAsPrivileged([
|
|
13076
13076
|
{
|
|
13077
13077
|
scheme: "webhapp",
|
|
13078
|
-
privileges: { standard: true }
|
|
13078
|
+
privileges: { standard: true, secure: true, stream: true }
|
|
13079
13079
|
}
|
|
13080
13080
|
]);
|
|
13081
13081
|
contextMenu({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holochain/hc-spin",
|
|
3
|
-
"version": "0.400.0-dev.
|
|
4
|
-
"holochainVersion": "0.4.0-dev.
|
|
3
|
+
"version": "0.400.0-dev.3",
|
|
4
|
+
"holochainVersion": "0.4.0-dev.16",
|
|
5
5
|
"description": "CLI to run Holochain aps during development.",
|
|
6
6
|
"author": "matthme",
|
|
7
7
|
"homepage": "https://developer.holochain.org",
|
package/src/main/index.ts
CHANGED