Skip to content

Commit e986c37

Browse files
committed
chore: release v3.5.0
1 parent f0b9fc2 commit e986c37

3 files changed

Lines changed: 21 additions & 4 deletions

File tree

.agents/skills/wxt-extension-publishing/SKILL.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ To use the automated submission API, you must have an OAuth Client ID configured
1717
## 2. Initialize Submission Configuration
1818
Run the initialization command interactively:
1919
```bash
20-
pnpx wxt submit init
20+
pnpm wxt submit init
2121
```
22+
> **⚠️ Always use `pnpm`, never `pnpx`:** `pnpx` (i.e., `pnpm dlx`) fetches the **latest** `wxt` and `publish-browser-extension` from the npm registry, ignoring the project's pinned versions. The latest CLI can be incompatible — e.g., `pnpx wxt submit init` silently exits with no output. `pnpm wxt ...` runs the project-local binary and is the only reliable way to run these commands.
23+
2224
During the prompt:
2325
1. Select the stores you want to configure (e.g., `Chrome Web Store`).
2426
2. Enter your extension ID (found on the Chrome Developer Dashboard).
@@ -51,10 +53,10 @@ Finally, use the `wxt submit` CLI (which utilizes `publish-browser-extension` un
5153

5254
```bash
5355
# Submit only to Chrome:
54-
pnpx wxt submit --chrome-zip .output/<YOUR_EXTENSION_ZIP_FILE_NAME>-chrome.zip
56+
pnpm wxt submit --chrome-zip .output/<YOUR_EXTENSION_ZIP_FILE_NAME>-chrome.zip
5557

5658
# Submit to Chrome and Edge:
57-
pnpx wxt submit \
59+
pnpm wxt submit \
5860
--chrome-zip .output/<YOUR_EXTENSION_ZIP_FILE_NAME>-chrome.zip \
5961
--edge-zip .output/<YOUR_EXTENSION_ZIP_FILE_NAME>-chrome.zip
6062
```

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [3.5.0] - 2026-08-03
6+
7+
### Added
8+
- **Copy Mindmap**: Added a copy button in the mindmap tab that exports the mindmap as JSON or plaintext (Mind Elixir format) to the clipboard, with localized tooltips and messages across all supported languages.
9+
- **Mind Elixir Dependency Update**: Upgraded `mind-elixir` to v5.15.0 and `@mind-elixir/open-desktop` to v0.0.4.
10+
11+
### Changed
12+
- **Default AI Temperature**: Removed the hardcoded `temperature: 0.3` parameter from OpenAI and Gemini provider requests, letting the models use their default temperature.
13+
14+
### Fixed
15+
- **Generate Button State**: The generate button in the popup is now disabled when no AI configuration is present, preventing confusing empty generations.
16+
- **Mind Elixir Config on Login**: The default Mind Elixir provider configuration is now auto-saved after login, so the popup immediately recognizes the extension as configured.
17+
18+
---
19+
520
## [3.4.0] - 2026-06-14
621

722
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "m10c-video-summary-extension",
33
"description": "Video Summary with AI",
44
"private": true,
5-
"version": "3.4.0",
5+
"version": "3.5.0",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt",

0 commit comments

Comments
 (0)