create-asciitorium 0.1.9 → 0.1.10
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/dist/templates/base/public/fonts/FreeLicense.txt +20 -0
- package/dist/templates/base/public/fonts/PRNumber3.ttf +0 -0
- package/dist/templates/base/public/fonts/PRNumber3.woff +0 -0
- package/dist/templates/base/public/fonts/PRNumber3.woff2 +0 -0
- package/dist/templates/base/public/fonts/PrintChar21.ttf +0 -0
- package/dist/templates/base/public/fonts/PrintChar21.woff +0 -0
- package/dist/templates/base/public/fonts/PrintChar21.woff2 +0 -0
- package/package.json +1 -1
- package/dist/templates/base/main.tsx +0 -33
- package/dist/templates/base/vite-env.d.ts +0 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
KREATIVE SOFTWARE RELAY FONTS FREE USE LICENSE
|
|
2
|
+
version 1.2f
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person or entity (the "User") obtaining a copy of the included font files (the "Software") produced by Kreative Software, to utilize, display, embed, or redistribute the Software, subject to the following conditions:
|
|
5
|
+
|
|
6
|
+
1. The User may not sell copies of the Software for a fee.
|
|
7
|
+
|
|
8
|
+
1a. The User may give away copies of the Software free of charge provided this license and any documentation is included verbatim and credit is given to Kreative Korporation or Kreative Software.
|
|
9
|
+
|
|
10
|
+
2. The User may not modify, reverse-engineer, or create any derivative works of the Software.
|
|
11
|
+
|
|
12
|
+
3. Any Software carrying the following font names or variations thereof is not covered by this license and may not be used under the terms of this license: Jewel Hill, Miss Diode n Friends, This is Beckie's font!
|
|
13
|
+
|
|
14
|
+
3a. Any Software carrying a font name ending with the string "Pro CE" is not covered by this license and may not be used under the terms of this license.
|
|
15
|
+
|
|
16
|
+
4. This license becomes null and void if any of the above conditions are not met.
|
|
17
|
+
|
|
18
|
+
5. Kreative Software reserves the right to change this license at any time without notice.
|
|
19
|
+
|
|
20
|
+
THE 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 THE COPYRIGHT HOLDER 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 SOFTWARE OR FROM OTHER DEALINGS IN THE SOFTWARE.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/** Single entry that runs on Web (DOM) and CLI (Terminal) */
|
|
2
|
-
import {
|
|
3
|
-
Asciitorium,
|
|
4
|
-
Text,
|
|
5
|
-
HorizontalLine,
|
|
6
|
-
ProgressBar,
|
|
7
|
-
State,
|
|
8
|
-
bootstrap,
|
|
9
|
-
} from 'asciitorium';
|
|
10
|
-
|
|
11
|
-
// --- Simple stateful demo ---
|
|
12
|
-
const message = new State('Hello asciitorium!');
|
|
13
|
-
const loading = new State(0);
|
|
14
|
-
|
|
15
|
-
const app = (
|
|
16
|
-
<Asciitorium width={64} height={24} padding={1}>
|
|
17
|
-
<Text text="asciitorium starter" />
|
|
18
|
-
<HorizontalLine />
|
|
19
|
-
<Text text={message} />
|
|
20
|
-
<ProgressBar value={loading} width={40} />
|
|
21
|
-
</Asciitorium>
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
// Auto-detect renderer inside bootstrap(): DOM in browser, Terminal in Node
|
|
25
|
-
bootstrap(app);
|
|
26
|
-
|
|
27
|
-
// Tiny fake loader so something moves
|
|
28
|
-
let t = 0;
|
|
29
|
-
setInterval(() => {
|
|
30
|
-
t = (t + 1) % 101;
|
|
31
|
-
loading.value = t;
|
|
32
|
-
if (t === 100) message.value = 'Loaded!';
|
|
33
|
-
}, 60);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="vite/client" />
|