@aiwayds/dsh-tui-pi 0.8.2 → 0.9.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 +44 -3
- package/README.zh.md +36 -3
- package/assets/fonts/LICENSE-Hack.txt +45 -0
- package/assets/fonts/LICENSE-NerdFonts.txt +126 -0
- package/assets/fonts/LICENSE-NotoSansSymbols.txt +93 -0
- package/assets/fonts/LICENSE-NotoSansSymbols2.txt +93 -0
- package/assets/fonts/dsh-tui-pi-nerd.ttf +0 -0
- package/assets/fonts-gen.mjs +219 -0
- package/assets/whale-gen.mjs +169 -0
- package/assets/whale-source.png +0 -0
- package/lib/agents.js +1 -1
- package/lib/agents.js.map +1 -1
- package/lib/canvas-terminal.d.ts +17 -11
- package/lib/canvas-terminal.js +62 -24
- package/lib/canvas-terminal.js.map +1 -1
- package/lib/dsh-events.d.ts +32 -3
- package/lib/dsh-events.js +14 -0
- package/lib/dsh-events.js.map +1 -1
- package/lib/font-detect.d.ts +66 -0
- package/lib/font-detect.js +124 -0
- package/lib/font-detect.js.map +1 -0
- package/lib/footer.d.ts +3 -2
- package/lib/footer.js +16 -8
- package/lib/footer.js.map +1 -1
- package/lib/icons.d.ts +53 -0
- package/lib/icons.js +78 -0
- package/lib/icons.js.map +1 -0
- package/lib/index.js +44 -13
- package/lib/index.js.map +1 -1
- package/lib/live-widgets.d.ts +16 -5
- package/lib/live-widgets.js +29 -8
- package/lib/live-widgets.js.map +1 -1
- package/lib/messages.js +2 -1
- package/lib/messages.js.map +1 -1
- package/lib/session.d.ts +99 -16
- package/lib/session.js +322 -64
- package/lib/session.js.map +1 -1
- package/lib/sessions.d.ts +15 -0
- package/lib/sessions.js +18 -3
- package/lib/sessions.js.map +1 -1
- package/lib/settings.js +2 -2
- package/lib/skills.d.ts +19 -3
- package/lib/skills.js +43 -10
- package/lib/skills.js.map +1 -1
- package/lib/subagent-policy.d.ts +11 -11
- package/lib/subagent-policy.js +17 -15
- package/lib/subagent-policy.js.map +1 -1
- package/lib/subagent-viewer.d.ts +20 -5
- package/lib/subagent-viewer.js +29 -15
- package/lib/subagent-viewer.js.map +1 -1
- package/lib/theme-settings.d.ts +25 -10
- package/lib/theme-settings.js +40 -14
- package/lib/theme-settings.js.map +1 -1
- package/lib/tokens.d.ts +38 -0
- package/lib/tokens.js +68 -0
- package/lib/tokens.js.map +1 -0
- package/lib/tui.js +15 -6
- package/lib/tui.js.map +1 -1
- package/package.json +2 -1
- package/scripts/install-font.mjs +329 -0
package/README.md
CHANGED
|
@@ -109,7 +109,9 @@ Running subagent activity is shown in the **last-request area below the editor**
|
|
|
109
109
|
↳ ⠼ Subagent B 10s 任务 · 562 token · 6.0s
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
Each line shows: spinner + agent **name**, retries (`↻N≤M`),
|
|
112
|
+
Each line shows: spinner + agent **name**, retries (`↻N≤M`), compact **current-context usage** (`X/Y` — the child's latest request's billed input+output plus a CJK estimate of messages after it, over its context window; NOT the cumulative token spend, which only grows), rounds (`round N/M` — the assistant-message count against the cap, `M` only when `maxRounds > 0`), elapsed. No provider shown, no box, no header — just one line per running child.
|
|
113
|
+
|
|
114
|
+
Both **spawn-driven** and **fork-driven** children are tracked — dsh creates both through `childSessionMeta`, which writes `origin: 'subagent'` + a `delegationDepth` budget together, so header discovery recognises either marker (a budget-without-origin header is admitted as a defensive fallback and labelled `fork <id8>`; current dsh does not produce that shape). Non-children stay off the board by **value**, not by field presence: the jsonl persistence backend materialises `delegationDepth: 0` on every restored header, so the gate requires a budget `> 0`. User-facing session forks (a forked *conversation*: `Session.fork` sets `parentSession` + `seedLength`, no budget) are deliberately kept off the subagent board and stay resumable via `/resume` — whose filter (`isResumableSessionHeader`) excludes exactly the delegated children (`origin: 'subagent'` or budget > 0).
|
|
113
115
|
|
|
114
116
|
#### Todos
|
|
115
117
|
|
|
@@ -132,7 +134,7 @@ Icons: `☑` completed, `◐` in-progress, `☐` pending. A settled child drops
|
|
|
132
134
|
Two caps (`/agents` → `l` to configure):
|
|
133
135
|
|
|
134
136
|
- **`maxAgents`** (default 4, `0` = unlimited) — spawns are denied when the cap is hit.
|
|
135
|
-
- **`maxRounds`** (default
|
|
137
|
+
- **`maxRounds`** (default 75, `0` = unlimited) — after a child's assistant messages (one per LLM round-trip — the "rounds") reach the cap, the TUI queues one wrap-up request and never force-stops.
|
|
136
138
|
|
|
137
139
|
---
|
|
138
140
|
|
|
@@ -146,7 +148,9 @@ Two caps (`/agents` → `l` to configure):
|
|
|
146
148
|
dsh plugin --profile tui add @aiwayds/dsh-dcp
|
|
147
149
|
```
|
|
148
150
|
|
|
149
|
-
Once mounted, DCP runs transparently in the background. The footer's **context** and **cache-hit**
|
|
151
|
+
Once mounted, DCP runs transparently in the background. The footer's **context** segment prices the current occupancy — the latest request's billed context plus a CJK estimate of messages after it — so after a compaction the next request lands smaller and the display follows it down (the percent is capped at 100, the window being a hard ceiling). The **cache-hit** segment reflects the session's cumulative cache reuse.
|
|
152
|
+
|
|
153
|
+
Inside a subagent, a committed compaction is visible too: DCP appends one `user/message` **notice** row per compaction on the child's own log, and the Ctrl+G transcript renders it with a `🧹` marker (distinct from the generic `ⓘ`), with the picker rows carrying the per-child compaction count (`🧹 N×` in the description). Both DCP's `roundInterval` and the TUI's `maxRounds` count the **same** thing — `assistant/message` events, one per LLM round-trip — but act differently: the TUI queues one wrap-up request once a child's count reaches `maxRounds`, while DCP compacts (prunes context) at the next idle boundary once a session's count reaches `roundInterval`. One triggers work, the other frees context.
|
|
150
154
|
|
|
151
155
|
---
|
|
152
156
|
|
|
@@ -206,6 +210,43 @@ theme color via BCE, no patched dependencies.
|
|
|
206
210
|
|
|
207
211
|
---
|
|
208
212
|
|
|
213
|
+
## Fonts
|
|
214
|
+
|
|
215
|
+
The TUI's only Private-Use-Area glyph is the powerline segment separator
|
|
216
|
+
(U+E0B0) in the footer — no default terminal font ships it, so a terminal
|
|
217
|
+
without a Nerd/Powerline font shows a tofu box. The `dsh-tui.iconSet`
|
|
218
|
+
setting (`auto` | `nerdfont` | `plain`, default `auto`) adapts the risky
|
|
219
|
+
glyphs (U+E0B0, ⏹, ⭘) to the terminal:
|
|
220
|
+
|
|
221
|
+
- `auto` — powerline glyphs when a Nerd/Powerline font is detected at
|
|
222
|
+
startup, safe Unicode stand-ins (`▸ ■ ●`) otherwise.
|
|
223
|
+
- `nerdfont` — always the powerline glyphs (you already set the font).
|
|
224
|
+
- `plain` — always the safe stand-ins, no font required.
|
|
225
|
+
|
|
226
|
+
**Install the bundled font in one shot** (install + point the terminal at
|
|
227
|
+
it, preserving your font size):
|
|
228
|
+
|
|
229
|
+
```sh
|
|
230
|
+
node scripts/install-font.mjs
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
It copies `assets/fonts/dsh-tui-pi-nerd.ttf` (a ~170KB subset: ASCII +
|
|
234
|
+
U+E0B0 + every symbol the TUI renders) into the user font directory and
|
|
235
|
+
best-effort flips the terminal: macOS iTerm2 (PlistBuddy, default bookmark),
|
|
236
|
+
Linux GNOME Terminal (`gsettings`) and kitty/alacritty/wezterm (config
|
|
237
|
+
file, backed up first). Terminal.app is intentionally skipped (its font is
|
|
238
|
+
a binary blob) — set it by hand. Every step is wrapped: a failure logs a
|
|
239
|
+
warning and moves on, never touching your config destructively.
|
|
240
|
+
|
|
241
|
+
**Or set the font by hand** — any Nerd Font family as the terminal's main
|
|
242
|
+
font (e.g. JetBrainsMono Nerd Font, Hack Nerd Font, or the bundled `DSH TUI
|
|
243
|
+
Nerd` after installing it): iTerm2 → Settings → Profiles → Text → Font;
|
|
244
|
+
Terminal.app → Settings → Profiles → Text; kitty → `font_family`; alacritty
|
|
245
|
+
→ `[font] family`; wezterm → `wezterm.font("…")`. Then `auto` resolves to
|
|
246
|
+
the powerline glyphs on the next start.
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
209
250
|
## Install (local)
|
|
210
251
|
|
|
211
252
|
```sh
|
package/README.zh.md
CHANGED
|
@@ -107,7 +107,7 @@ dsh ▸ volc-ark-plan ▸ deepseek-v4-flash ▸ high ▸ 48.7k/1.0M(4.6%) ▸
|
|
|
107
107
|
↳ ⠼ Subagent B 10s 任务 · 562 token · 6.0s
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
每行显示:spinner + 代理**名称**,重试次数(`↻N≤M
|
|
110
|
+
每行显示:spinner + 代理**名称**,重试次数(`↻N≤M`),当前上下文占用(`X/Y` —— 子代理最近一次请求的 billed input+output 加上其后消息的 CJK 估算,除以它的上下文窗口;**不是**只增不减的累计 token 消耗),rounds(`round N/M` —— assistant 消息数对上限,`maxRounds > 0` 时才显示 `/M`),耗时。不显示 provider,无边框,无标题。
|
|
111
111
|
|
|
112
112
|
#### Todos 待办面板
|
|
113
113
|
|
|
@@ -130,7 +130,7 @@ dsh ▸ volc-ark-plan ▸ deepseek-v4-flash ▸ high ▸ 48.7k/1.0M(4.6%) ▸
|
|
|
130
130
|
两个限制项(通过 `/agents` → `l` 配置):
|
|
131
131
|
|
|
132
132
|
- **`maxAgents`**(默认 4,`0` = 无限制)—— 超过上限时拒绝新的子代理创建。
|
|
133
|
-
- **`maxRounds`**(默认
|
|
133
|
+
- **`maxRounds`**(默认 75,`0` = 无限制)—— 子代理的 assistant 消息数(每次 LLM 往返计 1 round)达到上限后,TUI 排队发送一个收尾请求,从不强制终止。
|
|
134
134
|
|
|
135
135
|
---
|
|
136
136
|
|
|
@@ -144,7 +144,7 @@ dsh ▸ volc-ark-plan ▸ deepseek-v4-flash ▸ high ▸ 48.7k/1.0M(4.6%) ▸
|
|
|
144
144
|
dsh plugin --profile tui add @aiwayds/dsh-dcp
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
-
挂载后 DCP 在后台透明运行。Footer
|
|
147
|
+
挂载后 DCP 在后台透明运行。Footer 的 **Context** 分段计算的是当前上下文占用 —— 最近一次请求的 billed context 加上其后消息的 CJK 估算 —— 所以裁剪后下一次请求会变小,显示随之回落(百分比封顶 100,窗口是硬上限)。**Cache-hit** 分段反映会话累计的缓存复用。
|
|
148
148
|
|
|
149
149
|
---
|
|
150
150
|
|
|
@@ -200,6 +200,39 @@ GitHub light / GitHub dark 配色方案,运行时热切换:
|
|
|
200
200
|
|
|
201
201
|
---
|
|
202
202
|
|
|
203
|
+
## 字体
|
|
204
|
+
|
|
205
|
+
TUI 中唯一的私有区(PUA)字形是 footer 的 Powerline 分隔箭头(U+E0B0)——
|
|
206
|
+
默认终端字体都不含它,不装字体就会显示豆腐块。`dsh-tui.iconSet` 设置
|
|
207
|
+
(`auto` | `nerdfont` | `plain`,默认 `auto`)让危险字形(U+E0B0、⏹、⭘)
|
|
208
|
+
自适应终端:
|
|
209
|
+
|
|
210
|
+
- `auto` —— 启动时探测到 Nerd/Powerline 字体就用 Powerline 字形,否则用
|
|
211
|
+
安全 Unicode 替代(`▸ ■ ●`)。
|
|
212
|
+
- `nerdfont` —— 始终用 Powerline 字形(你已经自己设好字体)。
|
|
213
|
+
- `plain` —— 始终用安全替代,无需任何字体。
|
|
214
|
+
|
|
215
|
+
**一键安装内置字体**(拷贝字体 + 尽量把终端切过去,保留原字号):
|
|
216
|
+
|
|
217
|
+
```sh
|
|
218
|
+
node scripts/install-font.mjs
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
脚本把 `assets/fonts/dsh-tui-pi-nerd.ttf`(约 170KB 子集:ASCII + U+E0B0 +
|
|
222
|
+
本项目渲染的全部符号)拷进用户字体目录,并尽力改终端:macOS iTerm2
|
|
223
|
+
(PlistBuddy,定点改默认 bookmark)、Linux GNOME Terminal(gsettings)与
|
|
224
|
+
kitty/alacritty/wezterm(改配置文件,先备份)。Terminal.app 明确跳过(其
|
|
225
|
+
字体是二进制 blob)——请手动设置。每一步都带防护:失败只打警告并继续,
|
|
226
|
+
绝不动坏你的配置。
|
|
227
|
+
|
|
228
|
+
**或手动设终端字体**——任意 Nerd Font 家族作为终端主字体即可(如
|
|
229
|
+
JetBrainsMono Nerd Font、Hack Nerd Font,或安装后的内置 `DSH TUI Nerd`):
|
|
230
|
+
iTerm2 → Settings → Profiles → Text → Font;Terminal.app → 设置 →
|
|
231
|
+
描述文件 → 文本;kitty → `font_family`;alacritty → `[font] family`;
|
|
232
|
+
wezterm → `wezterm.font("…")`。下次启动时 `auto` 就会解析成 Powerline 字形。
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
203
236
|
## 安装(本地)
|
|
204
237
|
|
|
205
238
|
```sh
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License
|
|
2
|
+
|
|
3
|
+
The work in the DejaVu project was committed to the public domain.
|
|
4
|
+
|
|
5
|
+
Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera"
|
|
6
|
+
|
|
7
|
+
### MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2018 Source Foundry Authors
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
### BITSTREAM VERA LICENSE
|
|
30
|
+
|
|
31
|
+
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
|
|
32
|
+
|
|
33
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
|
|
34
|
+
|
|
35
|
+
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
|
|
36
|
+
|
|
37
|
+
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".
|
|
38
|
+
|
|
39
|
+
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names.
|
|
40
|
+
|
|
41
|
+
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
|
|
42
|
+
|
|
43
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
44
|
+
|
|
45
|
+
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# Nerd Fonts Licensing
|
|
2
|
+
|
|
3
|
+
There are various sources used under various licenses:
|
|
4
|
+
|
|
5
|
+
* Nerd Fonts source fonts, patched fonts, and folders with explict OFL SIL files are licensed under SIL OPEN FONT LICENSE Version 1.1 (see below).
|
|
6
|
+
* Nerd Fonts original source code files (such as `.sh`, `.py`, `font-patcher` and others) are licensed under the MIT License (MIT) (see below).
|
|
7
|
+
* Many other licenses are present in this project for even more detailed breakdown see: [License Audit](https://github.com/ryanoasis/nerd-fonts/blob/-/license-audit.md).
|
|
8
|
+
|
|
9
|
+
## Source files not in folders containing an explicit license are using the MIT License (MIT)
|
|
10
|
+
|
|
11
|
+
The MIT License (MIT)
|
|
12
|
+
|
|
13
|
+
Copyright (c) 2014 Ryan L McIntyre
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
17
|
+
in the Software without restriction, including without limitation the rights
|
|
18
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
19
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
20
|
+
furnished to do so, subject to the following conditions:
|
|
21
|
+
|
|
22
|
+
The above copyright notice and this permission notice shall be included in all
|
|
23
|
+
copies or substantial portions of the Software.
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
29
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
30
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31
|
+
SOFTWARE.
|
|
32
|
+
|
|
33
|
+
## Various Fonts, Patched Fonts, SVGs, Glyph Fonts, and any files in a folder with explicit SIL OFL 1.1 License
|
|
34
|
+
|
|
35
|
+
Copyright (c) 2014, Ryan L McIntyre (https://ryanlmcintyre.com).
|
|
36
|
+
|
|
37
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
38
|
+
This license is copied below, and is also available with a FAQ at:
|
|
39
|
+
http://scripts.sil.org/OFL
|
|
40
|
+
|
|
41
|
+
-----------------------------------------------------------
|
|
42
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
43
|
+
-----------------------------------------------------------
|
|
44
|
+
|
|
45
|
+
PREAMBLE
|
|
46
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
47
|
+
development of collaborative font projects, to support the font creation
|
|
48
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
49
|
+
open framework in which fonts may be shared and improved in partnership
|
|
50
|
+
with others.
|
|
51
|
+
|
|
52
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
53
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
54
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
55
|
+
redistributed and/or sold with any software provided that any reserved
|
|
56
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
57
|
+
however, cannot be released under any other type of license. The
|
|
58
|
+
requirement for fonts to remain under this license does not apply
|
|
59
|
+
to any document created using the fonts or their derivatives.
|
|
60
|
+
|
|
61
|
+
DEFINITIONS
|
|
62
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
63
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
64
|
+
include source files, build scripts and documentation.
|
|
65
|
+
|
|
66
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
67
|
+
copyright statement(s).
|
|
68
|
+
|
|
69
|
+
"Original Version" refers to the collection of Font Software components as
|
|
70
|
+
distributed by the Copyright Holder(s).
|
|
71
|
+
|
|
72
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
73
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
74
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
75
|
+
new environment.
|
|
76
|
+
|
|
77
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
78
|
+
writer or other person who contributed to the Font Software.
|
|
79
|
+
|
|
80
|
+
PERMISSION & CONDITIONS
|
|
81
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
82
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
83
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
84
|
+
Software, subject to the following conditions:
|
|
85
|
+
|
|
86
|
+
1) Neither the Font Software nor any of its individual components,
|
|
87
|
+
in Original or Modified Versions, may be sold by itself.
|
|
88
|
+
|
|
89
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
90
|
+
redistributed and/or sold with any software, provided that each copy
|
|
91
|
+
contains the above copyright notice and this license. These can be
|
|
92
|
+
included either as stand-alone text files, human-readable headers or
|
|
93
|
+
in the appropriate machine-readable metadata fields within text or
|
|
94
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
95
|
+
|
|
96
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
97
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
98
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
99
|
+
presented to the users.
|
|
100
|
+
|
|
101
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
102
|
+
Software shall not be used to promote, endorse or advertise any
|
|
103
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
104
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
105
|
+
permission.
|
|
106
|
+
|
|
107
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
108
|
+
must be distributed entirely under this license, and must not be
|
|
109
|
+
distributed under any other license. The requirement for fonts to
|
|
110
|
+
remain under this license does not apply to any document created
|
|
111
|
+
using the Font Software.
|
|
112
|
+
|
|
113
|
+
TERMINATION
|
|
114
|
+
This license becomes null and void if any of the above conditions are
|
|
115
|
+
not met.
|
|
116
|
+
|
|
117
|
+
DISCLAIMER
|
|
118
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
119
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
120
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
121
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
122
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
123
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
124
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
125
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
126
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright 2022 The Noto Project Authors (https://github.com/notofonts/symbols)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
https://scripts.sil.org/OFL
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright 2022 The Noto Project Authors (https://github.com/notofonts/symbols)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
https://scripts.sil.org/OFL
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
Binary file
|