vibemon 1.5.0
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/README.md +40 -0
- package/assets/characters/apto.png +0 -0
- package/assets/characters/claw.png +0 -0
- package/assets/characters/clawd.png +0 -0
- package/assets/characters/kiro.png +0 -0
- package/assets/generators/generate-icons.js +86 -0
- package/assets/generators/icon-128.png +0 -0
- package/assets/generators/icon-16.png +0 -0
- package/assets/generators/icon-256.png +0 -0
- package/assets/generators/icon-32.png +0 -0
- package/assets/generators/icon-64.png +0 -0
- package/assets/generators/icon-generator.html +221 -0
- package/assets/icon.icns +0 -0
- package/assets/icon.ico +0 -0
- package/assets/icon.png +0 -0
- package/bin/cli.js +16 -0
- package/index.html +26 -0
- package/main.js +358 -0
- package/modules/http-server.cjs +584 -0
- package/modules/http-utils.cjs +110 -0
- package/modules/multi-window-manager.cjs +927 -0
- package/modules/state-manager.cjs +168 -0
- package/modules/tray-manager.cjs +660 -0
- package/modules/validators.cjs +180 -0
- package/modules/ws-client.cjs +313 -0
- package/package.json +112 -0
- package/preload.js +22 -0
- package/renderer.js +84 -0
- package/shared/config.cjs +64 -0
- package/shared/constants.cjs +8 -0
- package/shared/data/constants.json +86 -0
- package/stats.html +521 -0
- package/styles.css +90 -0
package/styles.css
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
* {
|
|
2
|
+
margin: 0;
|
|
3
|
+
padding: 0;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
html, body {
|
|
8
|
+
background: transparent;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/* Draggable title bar */
|
|
13
|
+
.title-bar {
|
|
14
|
+
-webkit-app-region: drag;
|
|
15
|
+
height: 28px;
|
|
16
|
+
background: rgba(45, 45, 45, 0.95);
|
|
17
|
+
border-radius: 12px 12px 0 0;
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
padding: 0 10px;
|
|
21
|
+
justify-content: space-between;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.title-bar-buttons {
|
|
25
|
+
-webkit-app-region: no-drag;
|
|
26
|
+
display: flex;
|
|
27
|
+
gap: 8px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.title-bar-btn {
|
|
31
|
+
width: 12px;
|
|
32
|
+
height: 12px;
|
|
33
|
+
border-radius: 50%;
|
|
34
|
+
border: none;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.btn-close {
|
|
39
|
+
background: #ff5f57;
|
|
40
|
+
position: relative;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.btn-close:hover {
|
|
44
|
+
background: #ff3b30;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.btn-close:hover::before,
|
|
48
|
+
.btn-close:hover::after {
|
|
49
|
+
content: '';
|
|
50
|
+
position: absolute;
|
|
51
|
+
top: 50%;
|
|
52
|
+
left: 50%;
|
|
53
|
+
width: 6px;
|
|
54
|
+
height: 1.5px;
|
|
55
|
+
background: rgba(0, 0, 0, 0.6);
|
|
56
|
+
border-radius: 1px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.btn-close:hover::before {
|
|
60
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.btn-close:hover::after {
|
|
64
|
+
transform: translate(-50%, -50%) rotate(-45deg);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.btn-minimize {
|
|
68
|
+
background: #febc2e;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.btn-minimize:hover {
|
|
72
|
+
background: #ff9500;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.title-text {
|
|
76
|
+
color: #888;
|
|
77
|
+
font-size: 11px;
|
|
78
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
|
79
|
+
padding-left: 6px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Device Frame */
|
|
83
|
+
.device-frame {
|
|
84
|
+
-webkit-app-region: drag;
|
|
85
|
+
background: rgba(45, 45, 45, 0.95);
|
|
86
|
+
padding: 0;
|
|
87
|
+
border-radius: 0 0 12px 12px;
|
|
88
|
+
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
|
|
89
|
+
}
|
|
90
|
+
|