Skip to content

Commit 81ee183

Browse files
authored
Merge pull request #3 from goxia/fix/voice-list-packaging-2025-voices
fix(v2.0.2): Resolve voice-list.json packaging and add 2025 Azure Speech Services voices
2 parents c735b4d + 652f52c commit 81ee183

15 files changed

+24910
-11868
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Preparation for future enhancements
1212

13+
## [2.0.2] - 2025-09-18
14+
15+
### � Bug Fixes
16+
- **Voice List Packaging**: Fixed voice-list.json packaging issue that prevented proper loading in installed extensions
17+
- **File Path Resolution**: Implemented robust multi-path fallback mechanism for voice configuration file access
18+
- **Webpack Configuration**: Added copy-webpack-plugin to ensure voice-list.json is properly included in extension bundle
19+
20+
### 🎵 Voice Updates
21+
- **Latest Azure Voices**: Updated voice library with 14 new Azure Speech Services voices from 2025
22+
- **DragonHD Voices**: Added new DragonHD Latest Neural voices (Ava3, Andrew3) optimized for podcast content
23+
- **MultiTalker Support**: Added MultiTalker voices for enhanced conversation scenarios
24+
- **Yunxiao/Yunfan Multilingual**: Added new multilingual voices with extensive language support
25+
26+
### 📝 Documentation
27+
- **Version Synchronization**: Updated all documentation and configuration files to reflect version 2.0.2
28+
- **Consistency Improvements**: Ensured version consistency across package.json, README files, and website documentation
29+
1330
## [2.0.1] - 2025-07-13
1431

1532
### 🎨 Visual Improvements

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
<div align="center">
99
<img src="./images/icon-128.png" alt="Speechify Icon" width="128" height="128">
10-
<h3>🎉 Version 2.0.1 Released!</h3>
11-
<p><strong>New Professional Icon Design</strong> | Updated Visual Identity | Enhanced User Experience</p>
10+
<h3>🎉 Version 2.0.2 Released!</h3>
11+
<p><strong>Voice Packaging Fix</strong> | 14 New Azure 2025 Voices | Enhanced Path Resolution</p>
1212
</div>
1313

1414
📖 **[中文文档](README.zh-CN.md)** | **[English Documentation](README.md)** | **[Live Demo](https://hddevteam.github.io/speechify/)**

README.zh-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
<div align="center">
99
<img src="./images/icon-128.png" alt="Speechify 图标" width="128" height="128">
10-
<h3>🎉 版本 2.0.1 发布!</h3>
11-
<p><strong>全新专业图标设计</strong> | 视觉识别升级 | 用户体验优化</p>
10+
<h3>🎉 版本 2.0.2 发布!</h3>
11+
<p><strong>语音打包修复</strong> | 14个新增Azure 2025语音 | 路径解析增强</p>
1212
</div>
1313

1414
📖 **[中文文档](README.zh-CN.md)** | **[English Documentation](README.md)** | **[在线演示](https://hddevteam.github.io/speechify/zh-cn.html)**

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@context": "https://schema.org",
3333
"@type": "SoftwareApplication",
3434
"name": "Speechify",
35-
"version": "2.0.1",
35+
"version": "2.0.2",
3636
"description": "Text-to-speech extension for VS Code with Azure Speech Services integration",
3737
"url": "https://hddevteam.github.io/speechify/",
3838
"downloadUrl": "https://marketplace.visualstudio.com/items?itemName=luckyXmobile.speechify",
@@ -99,7 +99,7 @@
9999
<div class="hero-content">
100100
<div class="hero-badge">
101101
<i class="fas fa-microphone"></i>
102-
Latest v2.0.1 - Updated Icon & CI Fixes!
102+
Latest v2.0.2 - Voice Packaging Fix & 14 New Azure 2025 Voices!
103103
</div>
104104
<h1 class="hero-title">
105105
Transform Text into <span class="highlight">High-Quality Speech</span>

docs/zh-cn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<div class="hero-content">
7474
<div class="hero-badge">
7575
<i class="fas fa-microphone"></i>
76-
最新版本 v2.0.1 - 图标更新与CI修复
76+
最新版本 v2.0.2 - 语音打包修复与14个新增Azure 2025语音
7777
</div>
7878
<h1 class="hero-title">
7979
将文本转换为<span class="highlight">高质量语音</span>

package-lock.json

Lines changed: 75 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%speechify.displayName%",
44
"description": "%speechify.description%",
55
"icon": "images/icon-128.png",
6-
"version": "2.0.1",
6+
"version": "2.0.2",
77
"engines": {
88
"vscode": "^1.82.0"
99
},
@@ -159,6 +159,7 @@
159159
"@typescript-eslint/parser": "^6.21.0",
160160
"@vscode/test-electron": "^2.3.4",
161161
"@vscode/vsce": "^2.19.0",
162+
"copy-webpack-plugin": "^13.0.1",
162163
"eslint": "^8.47.0",
163164
"glob": "^10.3.3",
164165
"mocha": "^10.2.0",

0 commit comments

Comments
 (0)