izteamslots 1.3.1 → 1.3.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.3.3](https://github.com/izzzzzi/izTeamSlots/compare/v1.3.2...v1.3.3) (2026-03-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * quick start recommends configuring mail API key first ([c852b9d](https://github.com/izzzzzi/izTeamSlots/commit/c852b9d63d9e5867b897791e8fd11e712e1a515f))
7
+ * remove extra leading spaces from hero logo ([ddb43bb](https://github.com/izzzzzi/izTeamSlots/commit/ddb43bbc6ba0075736ac7acba433032b45dbfc37))
8
+
9
+ ## [1.3.2](https://github.com/izzzzzi/izTeamSlots/compare/v1.3.1...v1.3.2) (2026-03-06)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * force UTF-8 encoding for Python subprocess on Windows ([a31f376](https://github.com/izzzzzi/izTeamSlots/commit/a31f3764a9487a21718e93bddc22f9831179eed4))
15
+
1
16
  ## [1.3.1](https://github.com/izzzzzi/izTeamSlots/compare/v1.3.0...v1.3.1) (2026-03-06)
2
17
 
3
18
 
package/README.md CHANGED
@@ -83,7 +83,7 @@ izTeamSlots/
83
83
  ### npm (рекомендуется)
84
84
 
85
85
  ```bash
86
- npm install -g izteamslots@latest
86
+ npm cache clean --force && npm install -g izteamslots@latest
87
87
  ```
88
88
 
89
89
  Установщик автоматически поставит Python-зависимости (через [uv](https://docs.astral.sh/uv/)), [Bun](https://bun.sh) и всё остальное.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "izteamslots",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "ChatGPT Team slot management — automated invite, register, OAuth login & codex token pipeline",
5
5
  "bin": {
6
6
  "izteamslots": "bin/izteamslots.mjs"
@@ -14,8 +14,8 @@ const EMPTY_STATE: AppState = {
14
14
  }
15
15
 
16
16
  const HERO_LOGO = [
17
- " izTeamSlots",
18
- " Локальный центр управления слотами",
17
+ "izTeamSlots",
18
+ "Локальный центр управления слотами",
19
19
  ].join("\n")
20
20
 
21
21
  type RpcJobResult = { job_id: string }
@@ -578,6 +578,7 @@ export class MainScreen {
578
578
  private getRecommendedSteps(): string[] {
579
579
  if (this.state.admins.length === 0) {
580
580
  return [
581
+ "Откройте «Настройки» и укажите API-ключ временной почты.",
581
582
  "Добавьте первого админа через раздел «Админы».",
582
583
  "После добавления выполните логин, чтобы сохранить токен и профиль браузера.",
583
584
  "Затем создайте слоты и проверьте входящие письма.",
@@ -57,6 +57,8 @@ export class StdioRpcClient {
57
57
  PYTHONPATH: process.env.PYTHONPATH
58
58
  ? `${this.projectRoot}${delimiter}${process.env.PYTHONPATH}`
59
59
  : this.projectRoot,
60
+ PYTHONIOENCODING: "utf-8",
61
+ PYTHONUTF8: "1",
60
62
  },
61
63
  })
62
64