muon-ui 0.6.0 → 0.7.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.
Files changed (56) hide show
  1. package/dist/cli.cjs +368 -15
  2. package/dist/cli.cjs.map +1 -1
  3. package/dist/index.cjs +2 -2
  4. package/dist/index.mjs +2 -2
  5. package/dist/native/{linux64 → linux-amd64}/muon-bootstrap +0 -0
  6. package/dist/native/{linux64 → linux-amd64}/muon-prepare +0 -0
  7. package/dist/native/{linuxarm64 → linux-arm64}/muon-bootstrap +0 -0
  8. package/dist/native/{linuxarm64 → linux-arm64}/muon-prepare +0 -0
  9. package/dist/native/{linuxarm → linux-armhf}/muon-bootstrap +0 -0
  10. package/dist/native/{linuxarm → linux-armhf}/muon-prepare +0 -0
  11. package/dist/native/{windows64 → windows-amd64}/muon-bootstrap.exe +0 -0
  12. package/dist/native/{windows64 → windows-amd64}/muon-prepare.exe +0 -0
  13. package/dist/native/{windows32/muon-prepare.exe → windows-i686/muon-bootstrap.exe} +0 -0
  14. package/dist/native/{windows32/muon-bootstrap.exe → windows-i686/muon-prepare.exe} +0 -0
  15. package/dist/runtime/{linux64 → linux-amd64}/CREDITS.md +0 -97
  16. package/dist/runtime/{linux64 → linux-amd64}/libmuon-ui.so +0 -0
  17. package/dist/runtime/linux-amd64/muon-core +0 -0
  18. package/dist/runtime/{linuxarm → linux-arm64}/CREDITS.md +0 -97
  19. package/dist/runtime/linux-arm64/libmuon-ui.so +0 -0
  20. package/dist/runtime/linux-arm64/muon-core +0 -0
  21. package/dist/runtime/{windows32 → linux-armhf}/CREDITS.md +0 -97
  22. package/dist/runtime/{linuxarm → linux-armhf}/libmuon-ui.so +0 -0
  23. package/dist/runtime/linux-armhf/muon-core +0 -0
  24. package/dist/runtime/{linuxarm64 → windows-amd64}/CREDITS.md +0 -97
  25. package/dist/runtime/{windows64 → windows-amd64}/libcardio.dll +0 -0
  26. package/dist/runtime/windows-amd64/libmuon-ui.dll +0 -0
  27. package/dist/runtime/{windows64 → windows-amd64}/muon-core.exe +0 -0
  28. package/dist/runtime/windows-i686/CREDITS.md +266 -0
  29. package/dist/runtime/{windows32 → windows-i686}/libcardio.dll +0 -0
  30. package/dist/runtime/windows-i686/libmuon-ui.dll +0 -0
  31. package/dist/runtime/{windows32 → windows-i686}/muon-core.exe +0 -0
  32. package/dist/{vite-options-KNDVcH-e.cjs → vite-options-FFh0NWUa.cjs} +227 -136
  33. package/dist/vite-options-FFh0NWUa.cjs.map +1 -0
  34. package/dist/vite.cjs +23 -3
  35. package/dist/vite.cjs.map +1 -1
  36. package/dist/vite.mjs +233 -134
  37. package/dist/vite.mjs.map +1 -1
  38. package/images/muon-120.png +0 -0
  39. package/muon.d.ts +33 -0
  40. package/package.json +7 -7
  41. package/vite.d.ts +9 -4
  42. package/dist/runtime/linux64/muon-core +0 -0
  43. package/dist/runtime/linuxarm/muon-core +0 -0
  44. package/dist/runtime/linuxarm64/libmuon-ui.so +0 -0
  45. package/dist/runtime/linuxarm64/muon-core +0 -0
  46. package/dist/runtime/windows32/libmuon-ui.dll +0 -0
  47. package/dist/runtime/windows64/CREDITS.md +0 -363
  48. package/dist/runtime/windows64/libmuon-ui.dll +0 -0
  49. package/dist/vite-options-KNDVcH-e.cjs.map +0 -1
  50. /package/dist/runtime/{linux64 → linux-amd64}/libcardio.so +0 -0
  51. /package/dist/runtime/{linuxarm64 → linux-arm64}/libcardio.so +0 -0
  52. /package/dist/runtime/{linuxarm → linux-armhf}/libcardio.so +0 -0
  53. /package/dist/runtime/{windows64 → windows-amd64}/libgcc_s_seh-1.dll +0 -0
  54. /package/dist/runtime/{windows64 → windows-amd64}/libstdc++-6.dll +0 -0
  55. /package/dist/runtime/{windows32 → windows-i686}/libgcc_s_dw2-1.dll +0 -0
  56. /package/dist/runtime/{windows32 → windows-i686}/libstdc++-6.dll +0 -0
Binary file
package/muon.d.ts CHANGED
@@ -78,6 +78,18 @@ declare global {
78
78
  readonly triggerUpdate: () => Promise<void>;
79
79
  }
80
80
 
81
+ /** Top-level Muon window bounds in DIP screen coordinates. */
82
+ interface MuonWindowBounds {
83
+ /** Left edge of the window in screen coordinates. */
84
+ readonly x: number;
85
+ /** Top edge of the window in screen coordinates. */
86
+ readonly y: number;
87
+ /** Width of the top-level window. */
88
+ readonly width: number;
89
+ /** Height of the top-level window. */
90
+ readonly height: number;
91
+ }
92
+
81
93
  /** Browser and native window operations for the current Muon window. */
82
94
  interface MuonBrowserApi {
83
95
  /**
@@ -174,6 +186,25 @@ declare global {
174
186
  * @returns A promise that resolves when restoring the window is requested.
175
187
  */
176
188
  readonly restore: () => Promise<void>;
189
+ /**
190
+ * Return bounds for the current top-level Muon window.
191
+ *
192
+ * @returns A promise for window bounds in DIP screen coordinates.
193
+ * @remarks The bounds describe the top-level window, not just the browser
194
+ * content area, and therefore include Muon custom title bars or native
195
+ * window frames when present.
196
+ */
197
+ readonly getWindowBounds: () => Promise<MuonWindowBounds>;
198
+ /**
199
+ * Request new bounds for the current top-level Muon window.
200
+ *
201
+ * @param bounds - New window bounds in DIP screen coordinates.
202
+ * @returns A promise that resolves when the bounds change is requested.
203
+ * @remarks `x`, `y`, `width`, and `height` must be safe integers in the
204
+ * signed 32-bit range. `width` and `height` must be greater than zero.
205
+ * Wayland compositors may ignore or adjust requested position and size.
206
+ */
207
+ readonly setWindowBounds: (bounds: MuonWindowBounds) => Promise<void>;
177
208
  /**
178
209
  * Show or hide the current Muon custom title bar.
179
210
  *
@@ -901,6 +932,8 @@ declare global {
901
932
  readonly executableName: string;
902
933
  /** Muon runtime target name. */
903
934
  readonly target: string;
935
+ /** Internal CEF target name used for catalog lookup. */
936
+ readonly cefTarget: string;
904
937
  /** muon-core build identity. */
905
938
  readonly muonCore: MuonCoreRuntimeInfo;
906
939
  /** CEF build selected when muon-core was built. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muon-ui",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
5
  "types": "./muon.d.ts",
6
6
  "bin": {
@@ -61,18 +61,18 @@
61
61
  },
62
62
  "git": {
63
63
  "tags": [
64
- "0.6.0"
64
+ "0.7.0"
65
65
  ],
66
66
  "branches": [
67
67
  "main"
68
68
  ],
69
69
  "commit": {
70
- "hash": "44340328835f0d4ee860b444916971dfa03486ef",
71
- "shortHash": "4434032",
72
- "date": "2026-06-23T18:47:32+09:00",
70
+ "hash": "fe80718aaa617c0c0ea5c816bbe38d22bf2e8402",
71
+ "shortHash": "fe80718",
72
+ "date": "2026-06-29T00:06:46+09:00",
73
73
  "message": "Merge branch 'develop'"
74
74
  },
75
- "version": "0.6.0"
75
+ "version": "0.7.0"
76
76
  },
77
77
  "description": "A multi-platform GUI application framework that uses CEF as its backend",
78
78
  "keywords": [
@@ -88,5 +88,5 @@
88
88
  "url": "https://github.com/kekyo/muon-ui.git"
89
89
  },
90
90
  "homepage": "https://github.com/kekyo/muon-ui#readme",
91
- "buildDate": "2026-06-23T19:18:37+09:00"
91
+ "buildDate": "2026-06-29T00:42:31+09:00"
92
92
  }
package/vite.d.ts CHANGED
@@ -10,7 +10,7 @@ import type { Plugin } from "vite";
10
10
  */
11
11
  export interface MuonViteBuildOptions {
12
12
  /**
13
- * Target aliases or internal target names to build.
13
+ * Public target identifiers to build.
14
14
  */
15
15
  targets?: readonly string[];
16
16
 
@@ -30,7 +30,12 @@ export interface MuonViteBuildOptions {
30
30
  appName?: string;
31
31
 
32
32
  /**
33
- * Parent directory that receives dist-linux-amd64/ style outputs.
33
+ * Stable application identifier used for portable runtime state.
34
+ */
35
+ appId?: string;
36
+
37
+ /**
38
+ * Parent directory that receives dist-muon-linux-amd64/ style outputs.
34
39
  */
35
40
  outputRoot?: string;
36
41
 
@@ -62,7 +67,7 @@ export interface MuonVitePluginOptions {
62
67
  * Directory containing muon-core runtime files such as muon-core and plugins.
63
68
  *
64
69
  * @remarks Relative paths are resolved from the Vite project root. When omitted,
65
- * the packaged runtime at dist/runtime/<target> is used.
70
+ * the packaged runtime at dist/runtime/<public-target> is used.
66
71
  */
67
72
  muonPath?: string;
68
73
 
@@ -78,7 +83,7 @@ export interface MuonVitePluginOptions {
78
83
  * Runtime staging directory used for development startup.
79
84
  *
80
85
  * @remarks Relative paths are resolved from the Vite project root. Defaults to
81
- * .muon/<target>.
86
+ * .muon/<public-target>.
82
87
  */
83
88
  stagePath?: string;
84
89
 
Binary file
Binary file
Binary file
@@ -1,363 +0,0 @@
1
- # muon license
2
-
3
- ## muon
4
-
5
- Source: https://github.com/kekyo/muon-ui/
6
-
7
- Copyright (c) Kouji Matsui (@kekyo@mi.kekyo.net)
8
-
9
- Permission is hereby granted, free of charge, to any person obtaining a copy
10
- of this software and associated documentation files (the "Software"), to deal
11
- in the Software without restriction, including without limitation the rights
12
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
- copies of the Software, and to permit persons to whom the Software is
14
- furnished to do so, subject to the following conditions:
15
-
16
- The above copyright notice and this permission notice shall be included in all
17
- copies or substantial portions of the Software.
18
-
19
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
- SOFTWARE.
26
-
27
- ## Chromium Embedded Framework (CEF)
28
-
29
- Source: https://github.com/chromiumembedded/cef/
30
-
31
- Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c)
32
- 2006-2009 Google Inc. All rights reserved.
33
-
34
- Redistribution and use in source and binary forms, with or without
35
- modification, are permitted provided that the following conditions are
36
- met:
37
-
38
- * Redistributions of source code must retain the above copyright
39
- notice, this list of conditions and the following disclaimer.
40
- * Redistributions in binary form must reproduce the above
41
- copyright notice, this list of conditions and the following disclaimer
42
- in the documentation and/or other materials provided with the
43
- distribution.
44
- * Neither the name of Google Inc. nor the name Chromium Embedded
45
- Framework nor the names of its contributors may be used to endorse
46
- or promote products derived from this software without specific prior
47
- written permission.
48
-
49
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
53
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60
-
61
- ## libffi 3.4.6
62
-
63
- Source: https://github.com/libffi/libffi/releases/tag/v3.4.6
64
-
65
- libffi - Copyright (c) 1996-2024 Anthony Green, Red Hat, Inc and others.
66
- See source files for details.
67
-
68
- Permission is hereby granted, free of charge, to any person obtaining
69
- a copy of this software and associated documentation files (the
70
- ``Software''), to deal in the Software without restriction, including
71
- without limitation the rights to use, copy, modify, merge, publish,
72
- distribute, sublicense, and/or sell copies of the Software, and to
73
- permit persons to whom the Software is furnished to do so, subject to
74
- the following conditions:
75
-
76
- The above copyright notice and this permission notice shall be
77
- included in all copies or substantial portions of the Software.
78
-
79
- THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
80
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
81
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
82
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
83
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
84
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
85
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
86
-
87
- ## yyjson 0.12.0
88
-
89
- Source: https://github.com/ibireme/yyjson/tree/0.12.0
90
-
91
- Copyright (c) 2020 YaoYuan <ibireme@gmail.com>
92
-
93
- Permission is hereby granted, free of charge, to any person obtaining a copy
94
- of this software and associated documentation files (the "Software"), to deal
95
- in the Software without restriction, including without limitation the rights
96
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
97
- copies of the Software, and to permit persons to whom the Software is
98
- furnished to do so, subject to the following conditions:
99
-
100
- The above copyright notice and this permission notice shall be included in all
101
- copies or substantial portions of the Software.
102
-
103
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
104
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
105
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
106
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
107
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
108
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
109
- SOFTWARE.
110
-
111
- ## NetBSD SHA1
112
-
113
- Source:
114
- https://github.com/NetBSD/src/tree/trunk/common/lib/libc/hash/sha1
115
-
116
- SHA-1 in C
117
- By Steve Reid <steve@edmweb.com>
118
- 100% Public Domain
119
-
120
- ## libarchive 3.8.7
121
-
122
- Source: https://github.com/libarchive/libarchive/releases/tag/v3.8.7
123
-
124
- The libarchive distribution as a whole is Copyright by Tim Kientzle
125
- and is subject to the copyright notice reproduced below.
126
-
127
- Copyright (c) 2003-2018 <author(s)>
128
- All rights reserved.
129
-
130
- Redistribution and use in source and binary forms, with or without
131
- modification, are permitted provided that the following conditions
132
- are met:
133
- 1. Redistributions of source code must retain the above copyright
134
- notice, this list of conditions and the following disclaimer
135
- in this position and unchanged.
136
- 2. Redistributions in binary form must reproduce the above copyright
137
- notice, this list of conditions and the following disclaimer in the
138
- documentation and/or other materials provided with the distribution.
139
-
140
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
141
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
142
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
143
- IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
144
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
145
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
146
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
147
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
148
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
149
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
150
-
151
- ## bzip2/libbzip2 1.0.8
152
-
153
- Source: https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz
154
-
155
- License: bzip2/libbzip2 license
156
-
157
- This program, "bzip2", the associated library "libbzip2", and all
158
- documentation, are copyright (C) 1996-2019 Julian R Seward. All
159
- rights reserved.
160
-
161
- Redistribution and use in source and binary forms, with or without
162
- modification, are permitted provided that the following conditions
163
- are met:
164
-
165
- 1. Redistributions of source code must retain the above copyright
166
- notice, this list of conditions and the following disclaimer.
167
-
168
- 2. The origin of this software must not be misrepresented; you must
169
- not claim that you wrote the original software. If you use this
170
- software in a product, an acknowledgment in the product
171
- documentation would be appreciated but is not required.
172
-
173
- 3. Altered source versions must be plainly marked as such, and must
174
- not be misrepresented as being the original software.
175
-
176
- 4. The name of the author may not be used to endorse or promote
177
- products derived from this software without specific prior written
178
- permission.
179
-
180
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
181
- OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
182
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
183
- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
184
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
185
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
186
- GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
187
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
188
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
189
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
190
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
191
-
192
- Julian Seward, jseward@acm.org
193
- bzip2/libbzip2 version 1.0.8 of 13 July 2019
194
-
195
- ## miniz 3.1.1
196
-
197
- Source: https://github.com/richgel999/miniz/tree/3.1.1
198
-
199
- Copyright 2013-2014 RAD Game Tools and Valve Software
200
- Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
201
-
202
- Permission is hereby granted, free of charge, to any person obtaining a copy
203
- of this software and associated documentation files (the "Software"), to deal
204
- in the Software without restriction, including without limitation the rights
205
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
206
- copies of the Software, and to permit persons to whom the Software is
207
- furnished to do so, subject to the following conditions:
208
-
209
- The above copyright notice and this permission notice shall be included in all
210
- copies or substantial portions of the Software.
211
-
212
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
213
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
214
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
215
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
216
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
217
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
218
- SOFTWARE.
219
-
220
- ## cardio
221
-
222
- Source: https://github.com/kekyo/cardio/
223
-
224
- Copyright (c) Kouji Matsui (@kekyo@mi.kekyo.net)
225
-
226
- Permission is hereby granted, free of charge, to any person obtaining a copy
227
- of this software and associated documentation files (the "Software"), to deal
228
- in the Software without restriction, including without limitation the rights
229
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
230
- copies of the Software, and to permit persons to whom the Software is
231
- furnished to do so, subject to the following conditions:
232
-
233
- The above copyright notice and this permission notice shall be included in all
234
- copies or substantial portions of the Software.
235
-
236
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
237
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
238
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
239
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
240
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
241
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
242
- SOFTWARE.
243
-
244
- ## tra-ffic
245
-
246
- Source: https://github.com/kekyo/tra-ffic/
247
-
248
- Copyright (c) Kouji Matsui (@kekyo@mi.kekyo.net)
249
-
250
- Permission is hereby granted, free of charge, to any person obtaining a copy
251
- of this software and associated documentation files (the "Software"), to deal
252
- in the Software without restriction, including without limitation the rights
253
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
254
- copies of the Software, and to permit persons to whom the Software is
255
- furnished to do so, subject to the following conditions:
256
-
257
- The above copyright notice and this permission notice shall be included in all
258
- copies or substantial portions of the Software.
259
-
260
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
261
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
262
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
263
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
264
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
265
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
266
- SOFTWARE.
267
-
268
- ## Noto color emoji
269
-
270
- Source: https://github.com/googlefonts/noto-emoji/
271
-
272
- Copyright 2013 Google LLC
273
-
274
- This Font Software is licensed under the SIL Open Font License, Version 1.1.
275
- This license is copied below, and is also available with a FAQ at:
276
- https://scripts.sil.org/OFL
277
-
278
- -----------------------------------------------------------
279
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
280
- -----------------------------------------------------------
281
-
282
- PREAMBLE
283
- The goals of the Open Font License (OFL) are to stimulate worldwide
284
- development of collaborative font projects, to support the font creation
285
- efforts of academic and linguistic communities, and to provide a free and
286
- open framework in which fonts may be shared and improved in partnership
287
- with others.
288
-
289
- The OFL allows the licensed fonts to be used, studied, modified and
290
- redistributed freely as long as they are not sold by themselves. The
291
- fonts, including any derivative works, can be bundled, embedded,
292
- redistributed and/or sold with any software provided that any reserved
293
- names are not used by derivative works. The fonts and derivatives,
294
- however, cannot be released under any other type of license. The
295
- requirement for fonts to remain under this license does not apply
296
- to any document created using the fonts or their derivatives.
297
-
298
- DEFINITIONS
299
- "Font Software" refers to the set of files released by the Copyright
300
- Holder(s) under this license and clearly marked as such. This may
301
- include source files, build scripts and documentation.
302
-
303
- "Reserved Font Name" refers to any names specified as such after the
304
- copyright statement(s).
305
-
306
- "Original Version" refers to the collection of Font Software components as
307
- distributed by the Copyright Holder(s).
308
-
309
- "Modified Version" refers to any derivative made by adding to, deleting,
310
- or substituting -- in part or in whole -- any of the components of the
311
- Original Version, by changing formats or by porting the Font Software to a
312
- new environment.
313
-
314
- "Author" refers to any designer, engineer, programmer, technical
315
- writer or other person who contributed to the Font Software.
316
-
317
- PERMISSION & CONDITIONS
318
- Permission is hereby granted, free of charge, to any person obtaining
319
- a copy of the Font Software, to use, study, copy, merge, embed, modify,
320
- redistribute, and sell modified and unmodified copies of the Font
321
- Software, subject to the following conditions:
322
-
323
- 1) Neither the Font Software nor any of its individual components,
324
- in Original or Modified Versions, may be sold by itself.
325
-
326
- 2) Original or Modified Versions of the Font Software may be bundled,
327
- redistributed and/or sold with any software, provided that each copy
328
- contains the above copyright notice and this license. These can be
329
- included either as stand-alone text files, human-readable headers or
330
- in the appropriate machine-readable metadata fields within text or
331
- binary files as long as those fields can be easily viewed by the user.
332
-
333
- 3) No Modified Version of the Font Software may use the Reserved Font
334
- Name(s) unless explicit written permission is granted by the corresponding
335
- Copyright Holder. This restriction only applies to the primary font name as
336
- presented to the users.
337
-
338
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
339
- Software shall not be used to promote, endorse or advertise any
340
- Modified Version, except to acknowledge the contribution(s) of the
341
- Copyright Holder(s) and the Author(s) or with their explicit written
342
- permission.
343
-
344
- 5) The Font Software, modified or unmodified, in part or in whole,
345
- must be distributed entirely under this license, and must not be
346
- distributed under any other license. The requirement for fonts to
347
- remain under this license does not apply to any document created
348
- using the Font Software.
349
-
350
- TERMINATION
351
- This license becomes null and void if any of the above conditions are
352
- not met.
353
-
354
- DISCLAIMER
355
- THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
356
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
357
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
358
- OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
359
- COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
360
- INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
361
- DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
362
- FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
363
- OTHER DEALINGS IN THE FONT SOFTWARE.