glance-cli 0.12.0 → 0.13.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/CHANGELOG.md +36 -0
- package/dist/cli.js +570 -566
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,42 @@ All notable changes to glance-cli will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.13.0] - 2026-01-05
|
|
9
|
+
|
|
10
|
+
### 🌍 Enhanced: Multilingual Support
|
|
11
|
+
- **Automatic Language-Aware Voice Selection**: System now automatically selects appropriate voice based on detected or specified language
|
|
12
|
+
- French content → French voices (Charlotte, Antoine, etc.)
|
|
13
|
+
- Spanish content → Spanish voices (Isabella, Antonio, etc.)
|
|
14
|
+
- English content → English voices (Nova, Echo, etc.)
|
|
15
|
+
- **Fixed Language Translation**: The `-l` option now properly translates content to the specified language (e.g., `-l es` for Spanish, `-l fr` for French)
|
|
16
|
+
- **Enhanced Language Instructions**: Added explicit language requirements in AI prompts for better multilingual output
|
|
17
|
+
|
|
18
|
+
### 📦 Updated: All Dependencies to Latest Versions
|
|
19
|
+
- **Migrated from deprecated packages**:
|
|
20
|
+
- `elevenlabs` → `@elevenlabs/elevenlabs-js` v2.29.0 (official package)
|
|
21
|
+
- `puppeteer` v22.6.0 → v24.34.0 (latest stable)
|
|
22
|
+
- **Updated all other dependencies**:
|
|
23
|
+
- `@google/genai` → v1.34.0
|
|
24
|
+
- `openai` → v6.15.0
|
|
25
|
+
- `chalk` → v5.6.2
|
|
26
|
+
- `cheerio` → v1.1.2
|
|
27
|
+
- `ora` → v9.0.0
|
|
28
|
+
- **Updated dev dependencies**:
|
|
29
|
+
- `@biomejs/biome` → v2.3.11
|
|
30
|
+
- `@types/node` → v25.0.3
|
|
31
|
+
- `typescript` → v5.9.3
|
|
32
|
+
|
|
33
|
+
### 🔧 Fixed: API Compatibility
|
|
34
|
+
- Updated ElevenLabs API calls to use v2 format (`textToSpeech.convert()` method)
|
|
35
|
+
- Fixed TypeScript errors in voice synthesis module
|
|
36
|
+
- Removed constant condition linting error
|
|
37
|
+
- Fixed voice parameter handling to prevent undefined errors
|
|
38
|
+
|
|
39
|
+
### ✨ Improved: User Experience
|
|
40
|
+
- No more deprecation warnings during installation
|
|
41
|
+
- Automatic voice matching for detected content language
|
|
42
|
+
- Better language output consistency across all AI models
|
|
43
|
+
|
|
8
44
|
## [0.10.2] - 2026-01-03
|
|
9
45
|
|
|
10
46
|
### 🗑️ Removed: Cache System (Temporary)
|