typerlude 1.0.1 → 1.0.2
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.ko.md +5 -1
- package/README.md +5 -1
- package/package.json +7 -7
package/README.ko.md
CHANGED
|
@@ -32,7 +32,9 @@ UTF-8 대화형 터미널을 사용하세요. 권장 최소 크기는 80×24입
|
|
|
32
32
|
## 바로 시작하기
|
|
33
33
|
|
|
34
34
|
모드를 고르고 옵션을 조정한 뒤 `Enter`를 누르세요. `Tab`, 화살표 키, `j`, `k`로 이동하고,
|
|
35
|
-
`Esc
|
|
35
|
+
`Esc`, `q`, `ㅂ`으로 뒤로 가며 홈에서는 같은 키로 종료합니다. 연습 중에는 `Esc`로
|
|
36
|
+
일시 정지하거나 나가기 확인을 열고, 입력 중인 `q`와 `ㅂ`은 연습 글자로 처리합니다. 단어 연습은
|
|
37
|
+
`Space` 또는 `Enter`로 현재 단어를 제출합니다.
|
|
36
38
|
|
|
37
39
|
내 파일이나 표준 입력으로도 연습할 수 있습니다.
|
|
38
40
|
|
|
@@ -41,6 +43,8 @@ typerlude notes.txt
|
|
|
41
43
|
cat notes.txt | typerlude
|
|
42
44
|
```
|
|
43
45
|
|
|
46
|
+
파일과 표준 입력의 연속 빈 줄은 연습 전에 한 줄로 축약됩니다.
|
|
47
|
+
|
|
44
48
|
점수 연습 중 붙여넣기는 무시됩니다.
|
|
45
49
|
|
|
46
50
|
## 주요 기능
|
package/README.md
CHANGED
|
@@ -32,7 +32,9 @@ Use a UTF-8 interactive terminal. The recommended minimum size is 80×24.
|
|
|
32
32
|
## Quick start
|
|
33
33
|
|
|
34
34
|
Pick a mode, adjust its options, and press `Enter`. Use `Tab`, arrow keys, `j`, or `k` to move;
|
|
35
|
-
`Esc`
|
|
35
|
+
`Esc`, `q`, or `ㅂ` go back, and the same keys quit from Home. During active practice, `Esc`
|
|
36
|
+
pauses or opens leave confirmation while `q` and `ㅂ` remain typing input. In Word practice,
|
|
37
|
+
`Space` or `Enter` submits the current word.
|
|
36
38
|
|
|
37
39
|
Practice your own text from a file or standard input:
|
|
38
40
|
|
|
@@ -41,6 +43,8 @@ typerlude notes.txt
|
|
|
41
43
|
cat notes.txt | typerlude
|
|
42
44
|
```
|
|
43
45
|
|
|
46
|
+
Consecutive blank lines in file and stdin text are collapsed before practice.
|
|
47
|
+
|
|
44
48
|
Paste is ignored during scored practice.
|
|
45
49
|
|
|
46
50
|
## What you get
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typerlude",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Offline-first Korean and English terminal typing tutor",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"package-check": "node scripts/verify-package.mjs"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"typerlude-darwin-arm64": "1.0.
|
|
35
|
-
"typerlude-darwin-x64": "1.0.
|
|
36
|
-
"typerlude-linux-arm64": "1.0.
|
|
37
|
-
"typerlude-linux-x64": "1.0.
|
|
38
|
-
"typerlude-win32-arm64-msvc": "1.0.
|
|
39
|
-
"typerlude-win32-x64-msvc": "1.0.
|
|
34
|
+
"typerlude-darwin-arm64": "1.0.2",
|
|
35
|
+
"typerlude-darwin-x64": "1.0.2",
|
|
36
|
+
"typerlude-linux-arm64": "1.0.2",
|
|
37
|
+
"typerlude-linux-x64": "1.0.2",
|
|
38
|
+
"typerlude-win32-arm64-msvc": "1.0.2",
|
|
39
|
+
"typerlude-win32-x64-msvc": "1.0.2"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|