@mindexec/cli 0.2.493 → 0.2.494
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/electron/preload.cjs +15 -12
- package/electron/source-smoke.mjs +6 -0
- package/package.json +1 -1
- package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Core.60vfpag0ii.dll → MindExecution.Core.tre9kny2uo.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.mvd5iguar3.dll → MindExecution.Kernel.lvfnhwdksf.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.vdu428rgb7.dll → MindExecution.Plugins.Admin.k2vbe4lt64.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.ew1bh09dyd.dll → MindExecution.Plugins.Business.u7i3r45xp5.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.jk98j1djoc.dll → MindExecution.Plugins.Concept.7eoasvev17.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.6ub1ud4o4q.dll → MindExecution.Plugins.Directory.rhh13u0z6c.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.0as3sypjys.dll → MindExecution.Plugins.PlanMaster.xzl2x2cqk4.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.b12xkgn7e0.dll → MindExecution.Plugins.YouTube.945tf0zc9m.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.2fytw4afkm.dll → MindExecution.Shared.e0w408b0ti.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.f6sfehwfzb.dll → MindExecution.Web.vc6ux7xjcw.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/service-worker-assets.js +22 -22
- package/wwwroot/service-worker.js +1 -1
package/electron/preload.cjs
CHANGED
|
@@ -39,26 +39,28 @@ function ensureUpdateIndicatorStyle() {
|
|
|
39
39
|
left: 16px;
|
|
40
40
|
bottom: 16px;
|
|
41
41
|
z-index: 2147483000;
|
|
42
|
-
width:
|
|
43
|
-
height:
|
|
42
|
+
width: 32px;
|
|
43
|
+
height: 32px;
|
|
44
|
+
box-sizing: border-box;
|
|
44
45
|
display: none;
|
|
45
46
|
align-items: center;
|
|
46
47
|
justify-content: center;
|
|
47
|
-
border:
|
|
48
|
-
border-radius:
|
|
49
|
-
background:
|
|
50
|
-
color: #
|
|
51
|
-
box-shadow: 0
|
|
48
|
+
border: 0;
|
|
49
|
+
border-radius: 50%;
|
|
50
|
+
background: #3b82f6;
|
|
51
|
+
color: #fff;
|
|
52
|
+
box-shadow: 0 1px 3px rgba(15, 23, 42, 0.16);
|
|
52
53
|
cursor: pointer;
|
|
53
54
|
padding: 0;
|
|
54
55
|
font: inherit;
|
|
56
|
+
line-height: 0;
|
|
57
|
+
appearance: none;
|
|
55
58
|
-webkit-app-region: no-drag;
|
|
56
|
-
transition:
|
|
59
|
+
transition: background 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
|
|
57
60
|
}
|
|
58
61
|
#${UPDATE_INDICATOR_ID}:hover {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
box-shadow: 0 7px 20px rgba(37, 99, 235, 0.2);
|
|
62
|
+
background: #2563eb;
|
|
63
|
+
box-shadow: 0 2px 6px rgba(37, 99, 235, 0.28);
|
|
62
64
|
}
|
|
63
65
|
#${UPDATE_INDICATOR_ID}:focus-visible {
|
|
64
66
|
outline: 2px solid #60a5fa;
|
|
@@ -71,12 +73,13 @@ function ensureUpdateIndicatorStyle() {
|
|
|
71
73
|
#${UPDATE_INDICATOR_ID} svg {
|
|
72
74
|
width: 20px;
|
|
73
75
|
height: 20px;
|
|
76
|
+
flex: 0 0 20px;
|
|
74
77
|
display: block;
|
|
75
78
|
pointer-events: none;
|
|
76
79
|
}
|
|
77
80
|
#${UPDATE_INDICATOR_ID} .mindexec-update-tooltip {
|
|
78
81
|
position: absolute;
|
|
79
|
-
left:
|
|
82
|
+
left: 40px;
|
|
80
83
|
bottom: 50%;
|
|
81
84
|
transform: translateY(50%) translateX(-2px);
|
|
82
85
|
opacity: 0;
|
|
@@ -102,6 +102,12 @@ assert.doesNotMatch(mainSource, /Restart and update|promptForDownloadedUpdate|sh
|
|
|
102
102
|
assert.match(preloadSource, /mindexec-desktop-update-indicator/, 'The bottom-left update indicator is missing.');
|
|
103
103
|
assert.match(preloadSource, /Update available ·/, 'The update indicator tooltip must include the available version.');
|
|
104
104
|
assert.match(preloadSource, /left:\s*16px[\s\S]*bottom:\s*16px/, 'The update indicator must stay at the bottom-left.');
|
|
105
|
+
assert.match(preloadSource, /width:\s*32px[\s\S]{0,80}height:\s*32px/,
|
|
106
|
+
'The update indicator must keep the compact circular-button dimensions.');
|
|
107
|
+
assert.match(preloadSource, /align-items:\s*center[\s\S]{0,80}justify-content:\s*center/,
|
|
108
|
+
'The update indicator icon must stay centered in both directions.');
|
|
109
|
+
assert.match(preloadSource, /border:\s*0[\s\S]{0,80}border-radius:\s*50%[\s\S]{0,100}background:\s*#3b82f6[\s\S]{0,60}color:\s*#fff/,
|
|
110
|
+
'The update indicator must keep the filled blue circle and white icon style.');
|
|
105
111
|
assert.match(preloadSource, /ipcRenderer\.invoke\('updates:install'\)/, 'Clicking the update indicator must use the owned install IPC path.');
|
|
106
112
|
assert.match(preloadSource, /mindExecDesktop/, 'The updater preload namespace changed unexpectedly.');
|
|
107
113
|
assert.match(preloadSource, /updates:\s*\{/, 'The updater preload API is missing.');
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Core.60vfpag0ii.dll → MindExecution.Core.tre9kny2uo.dll}
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.f6sfehwfzb.dll → MindExecution.Web.vc6ux7xjcw.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256
|
|
4
|
+
"hash": "sha256-+9C8RLzNbrTQDRmN4By8EyLK7EfZCP3u8M86Mpy5ODk=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"BenchmarkUtils.ytz7pn9azy.dll": "BenchmarkUtils.dll",
|
|
7
7
|
"Edgar.9yqq548b45.dll": "Edgar.dll",
|
|
@@ -131,16 +131,16 @@
|
|
|
131
131
|
"System.brmz7yk5qh.dll": "System.dll",
|
|
132
132
|
"netstandard.he3m3p1s9q.dll": "netstandard.dll",
|
|
133
133
|
"System.Private.CoreLib.7ouudb2fbl.dll": "System.Private.CoreLib.dll",
|
|
134
|
-
"MindExecution.Core.
|
|
135
|
-
"MindExecution.Kernel.
|
|
136
|
-
"MindExecution.Plugins.Admin.
|
|
137
|
-
"MindExecution.Plugins.Business.
|
|
138
|
-
"MindExecution.Plugins.Concept.
|
|
139
|
-
"MindExecution.Plugins.Directory.
|
|
140
|
-
"MindExecution.Plugins.PlanMaster.
|
|
141
|
-
"MindExecution.Plugins.YouTube.
|
|
142
|
-
"MindExecution.Shared.
|
|
143
|
-
"MindExecution.Web.
|
|
134
|
+
"MindExecution.Core.tre9kny2uo.dll": "MindExecution.Core.dll",
|
|
135
|
+
"MindExecution.Kernel.lvfnhwdksf.dll": "MindExecution.Kernel.dll",
|
|
136
|
+
"MindExecution.Plugins.Admin.k2vbe4lt64.dll": "MindExecution.Plugins.Admin.dll",
|
|
137
|
+
"MindExecution.Plugins.Business.u7i3r45xp5.dll": "MindExecution.Plugins.Business.dll",
|
|
138
|
+
"MindExecution.Plugins.Concept.7eoasvev17.dll": "MindExecution.Plugins.Concept.dll",
|
|
139
|
+
"MindExecution.Plugins.Directory.rhh13u0z6c.dll": "MindExecution.Plugins.Directory.dll",
|
|
140
|
+
"MindExecution.Plugins.PlanMaster.xzl2x2cqk4.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
141
|
+
"MindExecution.Plugins.YouTube.945tf0zc9m.dll": "MindExecution.Plugins.YouTube.dll",
|
|
142
|
+
"MindExecution.Shared.e0w408b0ti.dll": "MindExecution.Shared.dll",
|
|
143
|
+
"MindExecution.Web.vc6ux7xjcw.dll": "MindExecution.Web.dll",
|
|
144
144
|
"dotnet.native.566r55w3xu.js": "dotnet.native.js",
|
|
145
145
|
"dotnet.native.58bvs6q392.wasm": "dotnet.native.wasm",
|
|
146
146
|
"dotnet.js": "dotnet.js",
|
|
@@ -294,18 +294,18 @@
|
|
|
294
294
|
"System.Xml.XDocument.sn51jas17n.dll": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
|
|
295
295
|
"System.brmz7yk5qh.dll": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
|
|
296
296
|
"netstandard.he3m3p1s9q.dll": "sha256-R07q1Ea5Z2eVFySUmx9qr3C0fUyQE7IG+sF232eocjQ=",
|
|
297
|
-
"MindExecution.Core.
|
|
298
|
-
"MindExecution.Kernel.
|
|
299
|
-
"MindExecution.Plugins.Business.
|
|
300
|
-
"MindExecution.Plugins.Concept.
|
|
301
|
-
"MindExecution.Plugins.PlanMaster.
|
|
302
|
-
"MindExecution.Shared.
|
|
303
|
-
"MindExecution.Web.
|
|
297
|
+
"MindExecution.Core.tre9kny2uo.dll": "sha256-91zZBeeqVua/7HXoiGEqryXvGNM4izL+l8z4Kh0C0fQ=",
|
|
298
|
+
"MindExecution.Kernel.lvfnhwdksf.dll": "sha256-IbFx8JxXa+QRUNm9pqBTSmFo7ghuQnBToTiXbHwmVWk=",
|
|
299
|
+
"MindExecution.Plugins.Business.u7i3r45xp5.dll": "sha256-BmYgSNMKLzOXhtW3hladCk/DnzPqB9tZtlGEYL4fLNs=",
|
|
300
|
+
"MindExecution.Plugins.Concept.7eoasvev17.dll": "sha256-AU7HZTLvW82YaSb4MhCUvT82f22sEnuHTpyIU6VEmd4=",
|
|
301
|
+
"MindExecution.Plugins.PlanMaster.xzl2x2cqk4.dll": "sha256-3SRAAp8G04dLhv4hOlc2I6TwPIu2Jf5zqrTX1MmExPE=",
|
|
302
|
+
"MindExecution.Shared.e0w408b0ti.dll": "sha256-DksjGVFvlR0gB4apcyqX7uFRDBVmB3DaDluLKaDXJWc=",
|
|
303
|
+
"MindExecution.Web.vc6ux7xjcw.dll": "sha256-UXcmU/KJXjmvG/mBkeVrXffAoAldr6D+A85/g34BGas="
|
|
304
304
|
},
|
|
305
305
|
"lazyAssembly": {
|
|
306
|
-
"MindExecution.Plugins.Admin.
|
|
307
|
-
"MindExecution.Plugins.Directory.
|
|
308
|
-
"MindExecution.Plugins.YouTube.
|
|
306
|
+
"MindExecution.Plugins.Admin.k2vbe4lt64.dll": "sha256-9J/m3xgDb5mm7Iq8Pj17SESapskdzW9cGjsLTbjqRSo=",
|
|
307
|
+
"MindExecution.Plugins.Directory.rhh13u0z6c.dll": "sha256-z+nlo4PUKukFfztUGISdXKarSzf18L1QjG0aPTlNuh4=",
|
|
308
|
+
"MindExecution.Plugins.YouTube.945tf0zc9m.dll": "sha256-16G/XU3ruiPabnxisVAy4YVTZcZ3u0fED6u1adzTHFw="
|
|
309
309
|
}
|
|
310
310
|
},
|
|
311
311
|
"cacheBootResources": true,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "FL27lJqF",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -502,44 +502,44 @@ self.assetsManifest = {
|
|
|
502
502
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
503
503
|
},
|
|
504
504
|
{
|
|
505
|
-
"hash": "sha256-
|
|
506
|
-
"url": "_framework/MindExecution.Core.
|
|
505
|
+
"hash": "sha256-91zZBeeqVua/7HXoiGEqryXvGNM4izL+l8z4Kh0C0fQ=",
|
|
506
|
+
"url": "_framework/MindExecution.Core.tre9kny2uo.dll"
|
|
507
507
|
},
|
|
508
508
|
{
|
|
509
|
-
"hash": "sha256-
|
|
510
|
-
"url": "_framework/MindExecution.Kernel.
|
|
509
|
+
"hash": "sha256-IbFx8JxXa+QRUNm9pqBTSmFo7ghuQnBToTiXbHwmVWk=",
|
|
510
|
+
"url": "_framework/MindExecution.Kernel.lvfnhwdksf.dll"
|
|
511
511
|
},
|
|
512
512
|
{
|
|
513
|
-
"hash": "sha256-
|
|
514
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
513
|
+
"hash": "sha256-9J/m3xgDb5mm7Iq8Pj17SESapskdzW9cGjsLTbjqRSo=",
|
|
514
|
+
"url": "_framework/MindExecution.Plugins.Admin.k2vbe4lt64.dll"
|
|
515
515
|
},
|
|
516
516
|
{
|
|
517
|
-
"hash": "sha256-
|
|
518
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
517
|
+
"hash": "sha256-BmYgSNMKLzOXhtW3hladCk/DnzPqB9tZtlGEYL4fLNs=",
|
|
518
|
+
"url": "_framework/MindExecution.Plugins.Business.u7i3r45xp5.dll"
|
|
519
519
|
},
|
|
520
520
|
{
|
|
521
|
-
"hash": "sha256-
|
|
522
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
521
|
+
"hash": "sha256-AU7HZTLvW82YaSb4MhCUvT82f22sEnuHTpyIU6VEmd4=",
|
|
522
|
+
"url": "_framework/MindExecution.Plugins.Concept.7eoasvev17.dll"
|
|
523
523
|
},
|
|
524
524
|
{
|
|
525
|
-
"hash": "sha256-
|
|
526
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
525
|
+
"hash": "sha256-z+nlo4PUKukFfztUGISdXKarSzf18L1QjG0aPTlNuh4=",
|
|
526
|
+
"url": "_framework/MindExecution.Plugins.Directory.rhh13u0z6c.dll"
|
|
527
527
|
},
|
|
528
528
|
{
|
|
529
|
-
"hash": "sha256-
|
|
530
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
529
|
+
"hash": "sha256-3SRAAp8G04dLhv4hOlc2I6TwPIu2Jf5zqrTX1MmExPE=",
|
|
530
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.xzl2x2cqk4.dll"
|
|
531
531
|
},
|
|
532
532
|
{
|
|
533
|
-
"hash": "sha256-
|
|
534
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
533
|
+
"hash": "sha256-16G/XU3ruiPabnxisVAy4YVTZcZ3u0fED6u1adzTHFw=",
|
|
534
|
+
"url": "_framework/MindExecution.Plugins.YouTube.945tf0zc9m.dll"
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
|
-
"hash": "sha256-
|
|
538
|
-
"url": "_framework/MindExecution.Shared.
|
|
537
|
+
"hash": "sha256-DksjGVFvlR0gB4apcyqX7uFRDBVmB3DaDluLKaDXJWc=",
|
|
538
|
+
"url": "_framework/MindExecution.Shared.e0w408b0ti.dll"
|
|
539
539
|
},
|
|
540
540
|
{
|
|
541
|
-
"hash": "sha256-
|
|
542
|
-
"url": "_framework/MindExecution.Web.
|
|
541
|
+
"hash": "sha256-UXcmU/KJXjmvG/mBkeVrXffAoAldr6D+A85/g34BGas=",
|
|
542
|
+
"url": "_framework/MindExecution.Web.vc6ux7xjcw.dll"
|
|
543
543
|
},
|
|
544
544
|
{
|
|
545
545
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -878,7 +878,7 @@ self.assetsManifest = {
|
|
|
878
878
|
"url": "_framework/YamlDotNet.dtey92juka.dll"
|
|
879
879
|
},
|
|
880
880
|
{
|
|
881
|
-
"hash": "sha256-
|
|
881
|
+
"hash": "sha256-WC4gg0Gw4IEYB9AbfTJbCVMEgqUDlmTBGLnT2Hy7GwA=",
|
|
882
882
|
"url": "_framework/blazor.boot.json"
|
|
883
883
|
},
|
|
884
884
|
{
|