@holochain/hc-spin 0.400.0 → 0.400.2

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.
@@ -0,0 +1,25 @@
1
+ name: 'test'
2
+ on:
3
+ pull_request: {}
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
10
+ # Checks out a copy of your repository on the ubuntu-latest machine
11
+ - uses: actions/checkout@v3
12
+
13
+ - name: Install dependencies and build
14
+ run: yarn && yarn build
15
+
16
+ ci_pass:
17
+ if: ${{ always() }}
18
+ runs-on: 'ubuntu-latest'
19
+ needs:
20
+ - test
21
+ steps:
22
+ - name: check status
23
+ uses: re-actors/alls-green@release/v1
24
+ with:
25
+ jobs: ${{ toJSON(needs) }}
package/CHANGELOG.md CHANGED
@@ -5,9 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
5
5
  ## \[Unreleased\]
6
6
 
7
7
  ### Added
8
-
9
8
  ### Fixed
10
-
11
9
  ### Changed
12
-
13
10
  ### Removed
11
+
12
+ ## 2025-07-31: v0.400.2
13
+ ### Fixed
14
+ - The `--network-seed` argument to hc sandbox was not actually passed on to hc sandbox. Fixed with [#33](https://github.com/holochain/hc-spin/pull/33)
@@ -13074,6 +13074,44 @@ const menu = electron.Menu.buildFromTemplate([
13074
13074
  accelerator: "CommandOrControl+R"
13075
13075
  }
13076
13076
  ]
13077
+ },
13078
+ {
13079
+ label: "Edit",
13080
+ submenu: [
13081
+ {
13082
+ label: "Undo",
13083
+ role: "undo",
13084
+ accelerator: "CommandOrControl+Z"
13085
+ },
13086
+ {
13087
+ label: "Redo",
13088
+ role: "redo",
13089
+ accelerator: "CommandOrControl+Shift+Z"
13090
+ },
13091
+ {
13092
+ type: "separator"
13093
+ },
13094
+ {
13095
+ label: "Cut",
13096
+ role: "cut",
13097
+ accelerator: "CommandOrControl+X"
13098
+ },
13099
+ {
13100
+ label: "Copy",
13101
+ role: "copy",
13102
+ accelerator: "CommandOrControl+C"
13103
+ },
13104
+ {
13105
+ label: "Paste",
13106
+ role: "paste",
13107
+ accelerator: "CommandOrControl+V"
13108
+ },
13109
+ {
13110
+ label: "Select All",
13111
+ role: "selectAll",
13112
+ accelerator: "CommandOrControl+A"
13113
+ }
13114
+ ]
13077
13115
  }
13078
13116
  ]);
13079
13117
  const rustUtils = require("@holochain/hc-spin-rust-utils");
@@ -13281,7 +13319,8 @@ electron.app.whenReady().then(async () => {
13281
13319
  happTargetDir ? happTargetDir : CLI_OPTS.happOrWebhappPath.path,
13282
13320
  CLI_OPTS.bootstrapUrl ? CLI_OPTS.bootstrapUrl : bootstrapUrl,
13283
13321
  CLI_OPTS.singalingUrl ? CLI_OPTS.singalingUrl : signalingUrl,
13284
- CLI_OPTS.appId
13322
+ CLI_OPTS.appId,
13323
+ CLI_OPTS.networkSeed
13285
13324
  );
13286
13325
  const lairUrls = [];
13287
13326
  sandboxPaths.forEach((sandbox) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@holochain/hc-spin",
3
- "version": "0.400.0",
4
- "holochainVersion": "0.4.0-rc.2",
3
+ "version": "0.400.2",
4
+ "holochainVersion": "0.4.4",
5
5
  "description": "CLI to run Holochain aps during development.",
6
6
  "author": "matthme",
7
7
  "homepage": "https://developer.holochain.org",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@electron-toolkit/preload": "^3.0.0",
37
37
  "@electron-toolkit/utils": "^3.0.0",
38
- "@holochain/client": "0.18.0",
38
+ "@holochain/client": "^0.18.1",
39
39
  "@holochain/hc-spin-rust-utils": "0.400.0",
40
40
  "@msgpack/msgpack": "^2.8.0",
41
41
  "bufferutil": "4.0.8",
package/src/main/index.ts CHANGED
@@ -311,6 +311,7 @@ app.whenReady().then(async () => {
311
311
  CLI_OPTS.bootstrapUrl ? CLI_OPTS.bootstrapUrl : bootstrapUrl,
312
312
  CLI_OPTS.singalingUrl ? CLI_OPTS.singalingUrl : signalingUrl,
313
313
  CLI_OPTS.appId,
314
+ CLI_OPTS.networkSeed,
314
315
  );
315
316
 
316
317
  const lairUrls: string[] = [];
package/src/main/menu.ts CHANGED
@@ -48,4 +48,42 @@ export const menu = Menu.buildFromTemplate([
48
48
  },
49
49
  ],
50
50
  },
51
+ {
52
+ label: 'Edit',
53
+ submenu: [
54
+ {
55
+ label: 'Undo',
56
+ role: 'undo',
57
+ accelerator: 'CommandOrControl+Z',
58
+ },
59
+ {
60
+ label: 'Redo',
61
+ role: 'redo',
62
+ accelerator: 'CommandOrControl+Shift+Z',
63
+ },
64
+ {
65
+ type: 'separator',
66
+ },
67
+ {
68
+ label: 'Cut',
69
+ role: 'cut',
70
+ accelerator: 'CommandOrControl+X',
71
+ },
72
+ {
73
+ label: 'Copy',
74
+ role: 'copy',
75
+ accelerator: 'CommandOrControl+C',
76
+ },
77
+ {
78
+ label: 'Paste',
79
+ role: 'paste',
80
+ accelerator: 'CommandOrControl+V',
81
+ },
82
+ {
83
+ label: 'Select All',
84
+ role: 'selectAll',
85
+ accelerator: 'CommandOrControl+A',
86
+ },
87
+ ],
88
+ },
51
89
  ]);