sensivity 2.5.43 → 2.5.45
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/.qr.txt +19 -0
- package/.qrshow.ps1 +20 -0
- package/cli.js +0 -0
- package/launcher.js +280 -25
- package/package.json +8 -15
- package/public/assets/logo.png +0 -0
- package/public/css/style.css +988 -252
- package/public/index.html +15 -7
- package/public/js/app.js +575 -62
- package/public/js/config_schema.js +56 -10
- package/sens.node +0 -0
- package/server.obf.js +1 -1
package/public/index.html
CHANGED
|
@@ -10,12 +10,16 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
|
|
13
|
+
<div id="bg-brand" aria-hidden="true">
|
|
14
|
+
<span class="brand-mark m1">SENSIVITY<br>BEST PRIVATE</span>
|
|
15
|
+
<span class="brand-mark m2">SENSIVITY<br>BEST PRIVATE</span>
|
|
16
|
+
<span class="brand-mark m3">SENSIVITY<br>BEST PRIVATE</span>
|
|
17
|
+
<span class="brand-mark m4">SENSIVITY<br>BEST PRIVATE</span>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
13
20
|
<div id="license-overlay">
|
|
14
21
|
<div id="license-box">
|
|
15
|
-
<
|
|
16
|
-
<path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/>
|
|
17
|
-
<path d="M9 12l2 2 4-4"/>
|
|
18
|
-
</svg>
|
|
22
|
+
<img class="logo-icon" src="/assets/logo.png" alt="Sensivity">
|
|
19
23
|
<h1>Sensivity <span>License</span></h1>
|
|
20
24
|
<p class="subtitle">Enter your key to unlock</p>
|
|
21
25
|
<input type="text" id="license-key" placeholder="SENSIVITY-XXXX-XXXX-XXXX-XXXX-XXXXXXXX" onkeydown="if(event.key==='Enter')submitLicense()">
|
|
@@ -28,15 +32,19 @@
|
|
|
28
32
|
<div id="sidebar"></div>
|
|
29
33
|
<div id="content">
|
|
30
34
|
<div id="topbar"></div>
|
|
31
|
-
<div id="
|
|
35
|
+
<div id="workspace">
|
|
36
|
+
<div id="pages"></div>
|
|
37
|
+
<aside id="esp-preview-shell"></aside>
|
|
38
|
+
</div>
|
|
32
39
|
</div>
|
|
33
40
|
</div>
|
|
41
|
+
<div id="debug-toast" role="status" aria-live="polite"></div>
|
|
34
42
|
<div id="statusbar">
|
|
35
43
|
<span class="s-dot" id="status-dot"></span>
|
|
36
44
|
<span class="s-text" id="status-text">Ready</span>
|
|
37
45
|
<span class="s-url" id="s-url" style="flex:1;font-size:10px;color:var(--text3);text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:none"></span>
|
|
38
|
-
<button class="s-btn" id="cheat-btn" onclick="toggleCheat()" disabled>Start
|
|
39
|
-
<button class="s-btn
|
|
46
|
+
<button class="s-btn" id="cheat-btn" onclick="toggleCheat()" disabled>Start</button>
|
|
47
|
+
<button class="s-btn kill-btn" onclick="killSensivity()">Kill</button>
|
|
40
48
|
</div>
|
|
41
49
|
|
|
42
50
|
<svg style="display:none" id="icons-sprite" xmlns="http://www.w3.org/2000/svg">
|