like2d 2.11.0 โ 2.12.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 +36 -6
- package/assets/logo-banner-optimized.svg +15 -27
- package/assets/logo-banner.svg +76 -132
- package/assets/logo-icon.svg +33 -23
- package/assets/logo.svg +78 -123
- package/dist/audio/index.d.ts +1 -1
- package/dist/engine.d.ts +5 -8
- package/dist/engine.js +37 -22
- package/dist/events.d.ts +19 -7
- package/dist/graphics/canvas.d.ts +23 -7
- package/dist/graphics/canvas.js +69 -68
- package/dist/graphics/graphics.d.ts +83 -55
- package/dist/graphics/graphics.js +128 -129
- package/dist/graphics/image.d.ts +22 -0
- package/dist/graphics/image.js +62 -0
- package/dist/graphics/index.d.ts +6 -4
- package/dist/graphics/index.js +2 -2
- package/dist/index.d.ts +6 -4
- package/dist/index.js +9 -2
- package/dist/input/controllerdb.json +1 -1
- package/dist/input/gamepad-mapping.d.ts +4 -4
- package/dist/input/gamepad-mapping.js +6 -5
- package/dist/input/gamepad.d.ts +11 -1
- package/dist/input/gamepad.js +11 -1
- package/dist/input/index.d.ts +13 -5
- package/dist/input/index.js +5 -1
- package/dist/input/input.d.ts +58 -7
- package/dist/input/input.js +63 -9
- package/dist/input/keyboard.d.ts +26 -3
- package/dist/input/keyboard.js +24 -0
- package/dist/input/mouse.d.ts +34 -6
- package/dist/input/mouse.js +31 -3
- package/dist/like.d.ts +41 -12
- package/dist/like.js +0 -4
- package/dist/math/index.d.ts +8 -9
- package/dist/math/index.js +8 -9
- package/dist/math/vector2.d.ts +2 -1
- package/dist/prefab-scenes/index.d.ts +5 -3
- package/dist/prefab-scenes/index.js +4 -2
- package/dist/prefab-scenes/mapGamepad.d.ts +14 -2
- package/dist/prefab-scenes/mapGamepad.js +29 -22
- package/dist/prefab-scenes/startScreen.d.ts +2 -3
- package/dist/prefab-scenes/startScreen.js +41 -12
- package/dist/scene.d.ts +48 -13
- package/dist/scene.js +0 -5
- package/package.json +2 -2
- package/dist/__benchmarks__/vector2.bench.d.ts +0 -2
- package/dist/__benchmarks__/vector2.bench.d.ts.map +0 -1
- package/dist/__benchmarks__/vector2.bench.js +0 -74
- package/dist/audio/audio.d.ts.map +0 -1
- package/dist/audio/index.d.ts.map +0 -1
- package/dist/engine.d.ts.map +0 -1
- package/dist/events.d.ts.map +0 -1
- package/dist/graphics/canvas.d.ts.map +0 -1
- package/dist/graphics/graphics.d.ts.map +0 -1
- package/dist/graphics/index.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/input/gamepad-mapping.d.ts.map +0 -1
- package/dist/input/gamepad.d.ts.map +0 -1
- package/dist/input/index.d.ts.map +0 -1
- package/dist/input/input.d.ts.map +0 -1
- package/dist/input/keyboard.d.ts.map +0 -1
- package/dist/input/mouse.d.ts.map +0 -1
- package/dist/like.d.ts.map +0 -1
- package/dist/math/index.d.ts.map +0 -1
- package/dist/math/rect.d.ts.map +0 -1
- package/dist/math/vector2.d.ts.map +0 -1
- package/dist/prefab-scenes/index.d.ts.map +0 -1
- package/dist/prefab-scenes/mapGamepad.d.ts.map +0 -1
- package/dist/prefab-scenes/startScreen.d.ts.map +0 -1
- package/dist/scene.d.ts.map +0 -1
- package/dist/timer/index.d.ts.map +0 -1
- package/dist/timer/timer.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ LIKE is a cozy way to make 2d games for browser.
|
|
|
51
51
|
- **๐Consistent APIs:** Colors 0-1, not 0-255. Seconds, not milliseconds. Physical gamepad buttons, not "A" or "B".
|
|
52
52
|
- **๐ Actions System:** An input layer maps inputs to actions, which fire usable events.
|
|
53
53
|
- **๐ Global control:** Choose how to handle LIKE events, and manage resources with centralized trackers. LIKE is a great foundation for your own engine.
|
|
54
|
-
- **๐ฆ Light and Elegant:** Zero dependencies and less than 5000 lines of code
|
|
54
|
+
- **๐ฆ Light and Elegant:** Zero dependencies and less than 5000 lines of code. Size less than 100KiB compressed.
|
|
55
55
|
|
|
56
56
|
## Installation
|
|
57
57
|
|
|
@@ -75,13 +75,41 @@ npx degit 44100hertz/Like2D/examples/starter my-game
|
|
|
75
75
|
|
|
76
76
|
## Usage Example
|
|
77
77
|
|
|
78
|
+
HTML that puts LIKE in fullscreen.
|
|
79
|
+
```html
|
|
80
|
+
<!DOCTYPE html>
|
|
81
|
+
<html>
|
|
82
|
+
<head>
|
|
83
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
84
|
+
<style>
|
|
85
|
+
html {
|
|
86
|
+
margin: 0;
|
|
87
|
+
height: 100%;
|
|
88
|
+
overflow: hidden;
|
|
89
|
+
}
|
|
90
|
+
body {
|
|
91
|
+
margin: 0;
|
|
92
|
+
height: 100%;
|
|
93
|
+
display: grid;
|
|
94
|
+
place-items: center;
|
|
95
|
+
background: black;
|
|
96
|
+
}
|
|
97
|
+
</style>
|
|
98
|
+
</head>
|
|
99
|
+
<body>
|
|
100
|
+
<script type="module" src="./src/main.ts"></script>
|
|
101
|
+
</body>
|
|
102
|
+
</html>
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
TypeScript:
|
|
78
106
|
```typescript
|
|
79
107
|
import { createLike } from "like2d";
|
|
80
108
|
|
|
81
109
|
const like = createLike(document.body);
|
|
82
110
|
|
|
83
111
|
like.load = () => {
|
|
84
|
-
like.setMode([800, 600]);
|
|
112
|
+
like.canvas.setMode([800, 600]);
|
|
85
113
|
like.input.setAction("jump", ["Space", "BBottom"]);
|
|
86
114
|
};
|
|
87
115
|
|
|
@@ -110,13 +138,15 @@ LIKE's API is not the same as LOVE, but similar in spirit. Notable differences:
|
|
|
110
138
|
- Theres an actions system -- `input.setAction` / `actionpressed` and `actionreleased` callbacks.
|
|
111
139
|
- Some things are missing either due to browser limitations or smaller scope.
|
|
112
140
|
|
|
113
|
-
##
|
|
141
|
+
## Links
|
|
142
|
+
|
|
143
|
+
[NPM](https://www.npmjs.com/package/like2d)
|
|
114
144
|
|
|
115
|
-
[
|
|
145
|
+
[JSR](https://jsr.io/@like2d/like)
|
|
116
146
|
|
|
117
|
-
[
|
|
147
|
+
[GitHub](https://github.com/44100hertz/Like2D)
|
|
118
148
|
|
|
119
|
-
[
|
|
149
|
+
[Full Documentation](https://44100hertz.github.io/Like2D/api/documents/README.html)
|
|
120
150
|
|
|
121
151
|
## License
|
|
122
152
|
|
|
@@ -1,32 +1,20 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
<svg width="
|
|
4
|
-
<rect x="
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
<
|
|
3
|
+
<svg width="256mm" height="85mm" version="1.1" viewBox="0 0 256 85" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<rect x="8.4949" y="14.841" width="239.13" height="60.337" ry="14.369"/>
|
|
5
|
+
<path d="m49.519 2.1933-22.841 22.854-0.01193 0.01193a16.159 16.168 0 0 0 0 22.866 16.159 16.168 0 0 0 20.539 1.9189 16.159 16.168 0 0 1 0.0048 0.39055 16.159 16.168 0 0 1-16.159 16.169h36.935a16.159 16.168 0 0 1-16.159-16.169 16.159 16.168 0 0 1 0.0054-0.39055 16.159 16.168 0 0 0 20.539-1.9193 16.159 16.168 0 0 0-4.76e-4 -22.866z" fill="#ba2b2b" stroke="#ffcf42" stroke-linejoin="round" stroke-width=".5"/>
|
|
6
|
+
<g fill="none" stroke="#ffcf42" stroke-width=".5">
|
|
7
|
+
<circle transform="matrix(-.7069 .70731 -.7069 -.70731 0 0)" cx="-17.311" cy="-68.903" r="16.164"/>
|
|
8
|
+
<circle transform="matrix(-.7069 .70731 -.7069 -.70731 0 0)" cx="-1.147" cy="-52.739" r="16.164"/>
|
|
9
|
+
<ellipse cx="67.986" cy="50.234" rx="16.159" ry="16.168"/>
|
|
10
|
+
<ellipse cx="31.051" cy="50.234" rx="16.159" ry="16.168"/>
|
|
10
11
|
</g>
|
|
11
|
-
<g>
|
|
12
|
-
<
|
|
13
|
-
<
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
<g>
|
|
19
|
-
<path d="m237.53 38.691-17.505-9.3882 17.505-18.073z"/>
|
|
20
|
-
<rect x="202.88" y="48.079" width="16.772" height="9.3882"/>
|
|
21
|
-
<rect x="272.54" y="20.266" width="16.772" height="9.3882"/>
|
|
22
|
-
<rect x="272.54" y="38.691" width="16.772" height="9.3882"/>
|
|
23
|
-
<path d="m202.52 29.302 0.36685-18.073h17.139z"/>
|
|
24
|
-
</g>
|
|
25
|
-
<path d="m64.078 1.0042-33.375 33.375-0.01743 0.0174a23.612 23.612 0 0 0 0 33.392 23.612 23.612 0 0 0 30.012 2.8022 23.612 23.612 0 0 1 7e-3 0.57034 23.612 23.612 0 0 1-23.612 23.612h53.97a23.612 23.612 0 0 1-23.611-23.612 23.612 23.612 0 0 1 7e-3 -0.57034 23.612 23.612 0 0 0 30.012-2.8029 23.612 23.612 0 0 0-6.88e-4 -33.392z" fill="#80c3e4" stroke="#000" stroke-linejoin="round"/>
|
|
26
|
-
<g fill="none" stroke="#000" stroke-width=".5">
|
|
27
|
-
<circle transform="rotate(135)" cx="-20.988" cy="-93.243" r="23.612"/>
|
|
28
|
-
<circle transform="rotate(135)" cx="2.6238" cy="-69.632" r="23.612"/>
|
|
29
|
-
<circle cx="91.062" cy="71.161" r="23.612"/>
|
|
30
|
-
<circle cx="37.093" cy="71.161" r="23.612"/>
|
|
12
|
+
<g fill="#ffcf42" stroke="#000" stroke-width=".5">
|
|
13
|
+
<path d="m89.924 21.979v36.375h28.103v-14.771h-12.029v-21.604z"/>
|
|
14
|
+
<path d="m127.94 24.678v7.665h5.0453v11.046h-5.0453v14.966h24.748v-14.966h-5.048v-11.046h5.048v-7.665h-12.377z"/>
|
|
15
|
+
<path d="m206.89 22.088v36.375h33.739v-13.179h-10.908v-5.0678h10.908v-7.109h-10.908v-5.069h10.908v-5.9504z"/>
|
|
16
|
+
<path d="m162.76 19.77v38.693h12.281v-5.069h11.523v5.069h12.281s1.0482-15.115-2.2012-18.768c-3.4704-3.9018-6.3723-4.5209-6.3723-4.5209l8.8848-13.087h-13.615l-6.4108 13.022-4.3423 0.03698-8e-3 -15.377z"/>
|
|
17
|
+
<ellipse cx="132.99" cy="16.122" rx="6.0221" ry="6.1182"/>
|
|
18
|
+
<ellipse cx="147.49" cy="16.122" rx="6.0221" ry="6.1182"/>
|
|
31
19
|
</g>
|
|
32
20
|
</svg>
|
package/assets/logo-banner.svg
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
3
|
|
|
4
4
|
<svg
|
|
5
|
-
width="
|
|
6
|
-
height="
|
|
7
|
-
viewBox="0 0
|
|
5
|
+
width="256mm"
|
|
6
|
+
height="85mm"
|
|
7
|
+
viewBox="0 0 256 85"
|
|
8
8
|
version="1.1"
|
|
9
9
|
id="svg1"
|
|
10
10
|
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
inkscape:deskcolor="#d1d1d1"
|
|
25
25
|
inkscape:document-units="mm"
|
|
26
26
|
showgrid="false"
|
|
27
|
-
inkscape:zoom="0.
|
|
28
|
-
inkscape:cx="
|
|
29
|
-
inkscape:cy="
|
|
27
|
+
inkscape:zoom="0.78159829"
|
|
28
|
+
inkscape:cx="487.46269"
|
|
29
|
+
inkscape:cy="213.02503"
|
|
30
30
|
inkscape:window-width="1864"
|
|
31
31
|
inkscape:window-height="1163"
|
|
32
32
|
inkscape:window-x="0"
|
|
@@ -55,134 +55,78 @@
|
|
|
55
55
|
inkscape:groupmode="layer"
|
|
56
56
|
id="layer1">
|
|
57
57
|
<rect
|
|
58
|
-
style="fill:#
|
|
59
|
-
id="
|
|
60
|
-
width="
|
|
61
|
-
height="
|
|
62
|
-
x="
|
|
63
|
-
y="
|
|
64
|
-
|
|
65
|
-
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
66
|
-
id="rect7"
|
|
67
|
-
width="52.516361"
|
|
68
|
-
height="46.237232"
|
|
69
|
-
x="97.483658"
|
|
70
|
-
y="11.229642" />
|
|
71
|
-
<rect
|
|
72
|
-
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
73
|
-
id="rect7-0"
|
|
74
|
-
width="35.010902"
|
|
75
|
-
height="46.237232"
|
|
76
|
-
x="150"
|
|
77
|
-
y="11.229642" />
|
|
78
|
-
<rect
|
|
79
|
-
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
80
|
-
id="rect7-0-4"
|
|
81
|
-
width="52.516361"
|
|
82
|
-
height="46.237232"
|
|
83
|
-
x="185.01091"
|
|
84
|
-
y="11.229642" />
|
|
85
|
-
<rect
|
|
86
|
-
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
87
|
-
id="rect7-9"
|
|
88
|
-
width="52.516361"
|
|
89
|
-
height="46.237232"
|
|
90
|
-
x="237.52722"
|
|
91
|
-
y="11.229642" />
|
|
92
|
-
<rect
|
|
93
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
94
|
-
id="rect8"
|
|
95
|
-
width="17.505455"
|
|
96
|
-
height="27.460892"
|
|
97
|
-
x="132.49457"
|
|
98
|
-
y="11.229642" />
|
|
99
|
-
<rect
|
|
100
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
101
|
-
id="rect9"
|
|
102
|
-
width="8.7527285"
|
|
103
|
-
height="18.776356"
|
|
104
|
-
x="150"
|
|
105
|
-
y="29.302338" />
|
|
106
|
-
<rect
|
|
107
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
108
|
-
id="rect9-0"
|
|
109
|
-
width="8.7527285"
|
|
110
|
-
height="18.776356"
|
|
111
|
-
x="176.25818"
|
|
112
|
-
y="29.302357" />
|
|
113
|
-
<rect
|
|
114
|
-
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
115
|
-
id="rect11"
|
|
116
|
-
width="17.505453"
|
|
117
|
-
height="8.6845322"
|
|
118
|
-
x="150"
|
|
119
|
-
y="11.229642" />
|
|
120
|
-
<rect
|
|
121
|
-
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
122
|
-
id="rect11-4"
|
|
123
|
-
width="17.505453"
|
|
124
|
-
height="8.6845322"
|
|
125
|
-
x="167.50545"
|
|
126
|
-
y="11.229642" />
|
|
127
|
-
<path
|
|
128
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
129
|
-
d="m 237.52727,38.690533 -17.50544,-9.388181 v 0 l 17.50544,-18.072708 z"
|
|
130
|
-
id="path11"
|
|
131
|
-
sodipodi:nodetypes="ccccc" />
|
|
132
|
-
<rect
|
|
133
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
134
|
-
id="rect12-9"
|
|
135
|
-
width="16.771759"
|
|
136
|
-
height="9.388155"
|
|
137
|
-
x="202.88322"
|
|
138
|
-
y="48.07869" />
|
|
139
|
-
<rect
|
|
140
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
141
|
-
id="rect12-9-9"
|
|
142
|
-
width="16.771759"
|
|
143
|
-
height="9.388155"
|
|
144
|
-
x="272.53812"
|
|
145
|
-
y="20.266006" />
|
|
146
|
-
<rect
|
|
147
|
-
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
148
|
-
id="rect12-9-9-9"
|
|
149
|
-
width="16.771759"
|
|
150
|
-
height="9.388155"
|
|
151
|
-
x="272.53812"
|
|
152
|
-
y="38.69054" />
|
|
58
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999997;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
59
|
+
id="rect8-5"
|
|
60
|
+
width="239.13411"
|
|
61
|
+
height="60.33736"
|
|
62
|
+
x="8.4949369"
|
|
63
|
+
y="14.841445"
|
|
64
|
+
ry="14.368586" />
|
|
153
65
|
<path
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
<path
|
|
158
|
-
id="rect3"
|
|
159
|
-
style="fill:#80c3e4;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
160
|
-
d="m 64.077715,1.0041568 -33.374839,33.3748322 -0.01743,0.0174 a 23.611767,23.611767 0 0 0 0,33.392271 23.611767,23.611767 0 0 0 30.012041,2.802217 23.611767,23.611767 0 0 1 0.007,0.570339 23.611767,23.611767 0 0 1 -23.612067,23.612061 h 53.96995 a 23.611767,23.611767 0 0 1 -23.611369,-23.612061 23.611767,23.611767 0 0 1 0.007,-0.570339 23.611767,23.611767 0 0 0 30.012033,-2.802919 23.611767,23.611767 0 0 0 -6.88e-4,-33.392257 z" />
|
|
161
|
-
<circle
|
|
162
|
-
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
163
|
-
id="path1"
|
|
164
|
-
cx="-20.988014"
|
|
165
|
-
cy="-93.243469"
|
|
166
|
-
r="23.611769"
|
|
167
|
-
transform="rotate(135)" />
|
|
66
|
+
id="rect3-9"
|
|
67
|
+
style="fill:#ba2b2b;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
d="m 49.518518,2.1933127 -22.840652,22.8538493 -0.01193,0.01193 a 16.159129,16.168464 0 0 0 0,22.865789 16.159129,16.168464 0 0 0 20.539269,1.918855 16.159129,16.168464 0 0 1 0.0048,0.390548 A 16.159129,16.168464 0 0 1 31.05067,66.402948 H 67.986003 A 16.159129,16.168464 0 0 1 51.827137,50.23428 a 16.159129,16.168464 0 0 1 0.0054,-0.390548 16.159129,16.168464 0 0 0 20.539274,-1.919335 16.159129,16.168464 0 0 0 -4.76e-4,-22.86578 z" />
|
|
168
69
|
<circle
|
|
169
|
-
style="fill:none;stroke:#
|
|
170
|
-
id="path1-
|
|
171
|
-
cx="
|
|
172
|
-
cy="-
|
|
173
|
-
r="
|
|
174
|
-
transform="
|
|
70
|
+
style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
71
|
+
id="path1-2"
|
|
72
|
+
cx="-17.310766"
|
|
73
|
+
cy="-68.903122"
|
|
74
|
+
r="16.163797"
|
|
75
|
+
transform="matrix(-0.70690254,0.70731097,-0.70690254,-0.70731097,0,0)" />
|
|
175
76
|
<circle
|
|
176
|
-
style="fill:none;
|
|
177
|
-
id="path1-8-
|
|
178
|
-
cx="
|
|
179
|
-
cy="
|
|
180
|
-
r="
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
77
|
+
style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
78
|
+
id="path1-8-28"
|
|
79
|
+
cx="-1.1469713"
|
|
80
|
+
cy="-52.739307"
|
|
81
|
+
r="16.163797"
|
|
82
|
+
transform="matrix(-0.70690254,0.70731097,-0.70690254,-0.70731097,0,0)" />
|
|
83
|
+
<ellipse
|
|
84
|
+
style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
85
|
+
id="path1-8-2-9"
|
|
86
|
+
cx="67.986008"
|
|
87
|
+
cy="50.234245"
|
|
88
|
+
rx="16.159128"
|
|
89
|
+
ry="16.168465" />
|
|
90
|
+
<ellipse
|
|
91
|
+
style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
92
|
+
id="path1-8-2-3-7"
|
|
93
|
+
cx="31.05085"
|
|
94
|
+
cy="50.234245"
|
|
95
|
+
rx="16.159128"
|
|
96
|
+
ry="16.168465" />
|
|
97
|
+
<path
|
|
98
|
+
id="rect2"
|
|
99
|
+
style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
100
|
+
d="M 89.923728,21.978817 V 58.354299 H 118.02688 V 43.583018 H 105.99779 V 21.978817 Z"
|
|
101
|
+
sodipodi:nodetypes="ccccccc" />
|
|
102
|
+
<path
|
|
103
|
+
style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
104
|
+
d="m 127.94459,24.677958 v 7.664953 h 5.04529 v 11.045752 h -5.04529 V 58.35429 h 24.7483 V 43.388663 h -5.048 V 32.342911 h 5.048 v -7.664953 h -12.34701 -0.0298 z"
|
|
105
|
+
id="path7"
|
|
106
|
+
sodipodi:nodetypes="ccccccccccccccc" />
|
|
107
|
+
<path
|
|
108
|
+
id="rect7-9-3"
|
|
109
|
+
style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
110
|
+
d="M 206.89047,22.087627 V 58.463112 H 240.629 V 45.2838 H 229.72139 V 40.215967 H 240.629 V 33.10697 H 229.72139 V 28.038005 H 240.629 v -5.950378 z"
|
|
111
|
+
sodipodi:nodetypes="ccccccccccccc" />
|
|
112
|
+
<path
|
|
113
|
+
id="rect5"
|
|
114
|
+
style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
115
|
+
d="m 162.76418,19.770387 v 38.692731 h 12.28079 v -5.068971 h 11.52347 v 5.068971 h 12.28079 c 0,0 1.04819,-15.114917 -2.20115,-18.768104 -3.47042,-3.901752 -6.37234,-4.520882 -6.37234,-4.520882 l 8.88476,-13.086505 h -13.61518 l -6.41083,13.0224 -4.34233,0.03698 -0.008,-15.376624 z"
|
|
116
|
+
sodipodi:nodetypes="cccccccsccccccc" />
|
|
117
|
+
<ellipse
|
|
118
|
+
style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
119
|
+
id="path8"
|
|
120
|
+
cx="132.98988"
|
|
121
|
+
cy="16.122232"
|
|
122
|
+
rx="6.0221214"
|
|
123
|
+
ry="6.1181746" />
|
|
124
|
+
<ellipse
|
|
125
|
+
style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
126
|
+
id="path8-6"
|
|
127
|
+
cx="147.49484"
|
|
128
|
+
cy="16.122232"
|
|
129
|
+
rx="6.0221214"
|
|
130
|
+
ry="6.1181746" />
|
|
187
131
|
</g>
|
|
188
132
|
</svg>
|
package/assets/logo-icon.svg
CHANGED
|
@@ -9,13 +9,16 @@
|
|
|
9
9
|
id="svg1"
|
|
10
10
|
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
|
11
11
|
sodipodi:docname="logo-icon.svg"
|
|
12
|
+
inkscape:export-filename="logo.png"
|
|
13
|
+
inkscape:export-xdpi="203.2"
|
|
14
|
+
inkscape:export-ydpi="203.2"
|
|
12
15
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
16
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
17
|
xmlns="http://www.w3.org/2000/svg"
|
|
15
18
|
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
19
|
<sodipodi:namedview
|
|
17
20
|
id="namedview1"
|
|
18
|
-
pagecolor="#
|
|
21
|
+
pagecolor="#ffffff"
|
|
19
22
|
bordercolor="#000000"
|
|
20
23
|
borderopacity="0.25"
|
|
21
24
|
inkscape:showpageshadow="2"
|
|
@@ -24,15 +27,16 @@
|
|
|
24
27
|
inkscape:deskcolor="#d1d1d1"
|
|
25
28
|
inkscape:document-units="mm"
|
|
26
29
|
showgrid="false"
|
|
27
|
-
inkscape:zoom="1.
|
|
28
|
-
inkscape:cx="
|
|
29
|
-
inkscape:cy="
|
|
30
|
+
inkscape:zoom="1.7263173"
|
|
31
|
+
inkscape:cx="202.16446"
|
|
32
|
+
inkscape:cy="214.03944"
|
|
30
33
|
inkscape:window-width="1864"
|
|
31
34
|
inkscape:window-height="1163"
|
|
32
35
|
inkscape:window-x="0"
|
|
33
36
|
inkscape:window-y="0"
|
|
34
37
|
inkscape:window-maximized="1"
|
|
35
|
-
inkscape:current-layer="layer1"
|
|
38
|
+
inkscape:current-layer="layer1"
|
|
39
|
+
showguides="true">
|
|
36
40
|
<inkscape:grid
|
|
37
41
|
id="grid1"
|
|
38
42
|
units="mm"
|
|
@@ -54,35 +58,41 @@
|
|
|
54
58
|
inkscape:label="Layer 1"
|
|
55
59
|
inkscape:groupmode="layer"
|
|
56
60
|
id="layer1">
|
|
61
|
+
<circle
|
|
62
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
63
|
+
id="path9"
|
|
64
|
+
cx="49.649231"
|
|
65
|
+
cy="57.549129"
|
|
66
|
+
r="46.83905" />
|
|
57
67
|
<path
|
|
58
68
|
id="rect3"
|
|
59
|
-
style="fill:#
|
|
60
|
-
d="m
|
|
69
|
+
style="fill:#ba2b2b;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
70
|
+
d="m 50.096665,3.6819263 -27.292571,27.2925677 -0.01425,0.01424 a 19.308733,19.308733 0 0 0 0,27.306826 19.308733,19.308733 0 0 0 24.542615,2.291539 19.308733,19.308733 0 0 1 0.0057,0.4664 19.308733,19.308733 0 0 1 -19.308978,19.308973 h 44.134415 a 19.308733,19.308733 0 0 1 -19.308408,-19.308979 19.308733,19.308733 0 0 1 0.0058,-0.4664 19.308733,19.308733 0 0 0 24.542608,-2.292111 19.308733,19.308733 0 0 0 -5.64e-4,-27.306815 z" />
|
|
61
71
|
<circle
|
|
62
|
-
style="fill:none;stroke:#
|
|
72
|
+
style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
63
73
|
id="path1"
|
|
64
|
-
cx="-
|
|
65
|
-
cy="-
|
|
66
|
-
r="
|
|
74
|
+
cx="-13.51147"
|
|
75
|
+
cy="-76.644737"
|
|
76
|
+
r="19.308733"
|
|
67
77
|
transform="rotate(135)" />
|
|
68
78
|
<circle
|
|
69
|
-
style="fill:none;stroke:#
|
|
79
|
+
style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
70
80
|
id="path1-8"
|
|
71
|
-
cx="
|
|
72
|
-
cy="-
|
|
73
|
-
r="
|
|
81
|
+
cx="5.7972598"
|
|
82
|
+
cy="-57.335995"
|
|
83
|
+
r="19.308733"
|
|
74
84
|
transform="rotate(135)" />
|
|
75
85
|
<circle
|
|
76
|
-
style="fill:none;fill-opacity:1;stroke:#
|
|
86
|
+
style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
77
87
|
id="path1-8-2"
|
|
78
|
-
cx="
|
|
79
|
-
cy="
|
|
80
|
-
r="
|
|
88
|
+
cx="72.163673"
|
|
89
|
+
cy="61.053471"
|
|
90
|
+
r="19.308733" />
|
|
81
91
|
<circle
|
|
82
|
-
style="fill:none;fill-opacity:1;stroke:#
|
|
92
|
+
style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
|
|
83
93
|
id="path1-8-2-3"
|
|
84
|
-
cx="
|
|
85
|
-
cy="
|
|
86
|
-
r="
|
|
94
|
+
cx="28.02943"
|
|
95
|
+
cy="61.053471"
|
|
96
|
+
r="19.308733" />
|
|
87
97
|
</g>
|
|
88
98
|
</svg>
|