@holochain/hc-spin 0.400.0 → 0.400.1
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 +38 -0
- package/package.json +2 -2
- package/src/main/menu.ts +38 -0
package/dist/main/index.js
CHANGED
|
@@ -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");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holochain/hc-spin",
|
|
3
|
-
"version": "0.400.
|
|
4
|
-
"holochainVersion": "0.4.0
|
|
3
|
+
"version": "0.400.1",
|
|
4
|
+
"holochainVersion": "0.4.0",
|
|
5
5
|
"description": "CLI to run Holochain aps during development.",
|
|
6
6
|
"author": "matthme",
|
|
7
7
|
"homepage": "https://developer.holochain.org",
|
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
|
]);
|