promptarchitect 0.6.0 → 0.6.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 +10 -0
- package/images/prompt-lab-icon.svg +2 -9
- package/package.json +3 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "promptarchitect" extension will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.6.3] - 2025-12-22
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Updated Activity Bar icon to lightning bolt (⚡) to match documentation and better represent Prompt Lab branding
|
|
9
|
+
|
|
10
|
+
## [0.6.1] - 2025-12-22
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fixed npm publish configuration
|
|
14
|
+
|
|
5
15
|
## [0.6.0] - 2025-12-22
|
|
6
16
|
|
|
7
17
|
### Added
|
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
|
2
|
-
<!--
|
|
3
|
-
<
|
|
4
|
-
<polyline points="14 2 14 8 20 8"/>
|
|
5
|
-
<!-- Prompt lines -->
|
|
6
|
-
<line x1="8" y1="13" x2="16" y2="13"/>
|
|
7
|
-
<line x1="8" y1="17" x2="12" y2="17"/>
|
|
8
|
-
<!-- Magic sparkles -->
|
|
9
|
-
<path d="M18 3l1 2 2 1-2 1-1 2-1-2-2-1 2-1z" fill="currentColor" stroke="none"/>
|
|
10
|
-
<circle cx="20" cy="13" r="1" fill="currentColor" stroke="none"/>
|
|
2
|
+
<!-- Lightning bolt / Zap - represents "Prompt Lab" power -->
|
|
3
|
+
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" fill="currentColor" stroke="currentColor"/>
|
|
11
4
|
</svg>
|
package/package.json
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"name": "promptarchitect",
|
|
3
3
|
"displayName": "PromptArchitect - AI Prompt Engineering",
|
|
4
4
|
"description": "Prompt Lab: Craft, Polish, Execute. Transform ideas into perfect AI prompts with our 3-step workflow. No API key needed.",
|
|
5
|
-
"version": "0.6.
|
|
5
|
+
"version": "0.6.3",
|
|
6
6
|
"publisher": "merabylabs",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/merabylabs/promptarchitect"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://
|
|
11
|
+
"homepage": "https://promptarchitectlabs.com",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://
|
|
13
|
+
"url": "https://promptarchitectlabs.com/support"
|
|
14
14
|
},
|
|
15
15
|
"galleryBanner": {
|
|
16
16
|
"color": "#1a1a2e",
|
|
@@ -511,9 +511,5 @@
|
|
|
511
511
|
"dependencies": {
|
|
512
512
|
"node-fetch": "^3.3.2"
|
|
513
513
|
},
|
|
514
|
-
"homepage": "https://promptarchitectlabs.com",
|
|
515
|
-
"bugs": {
|
|
516
|
-
"url": "https://promptarchitectlabs.com/support"
|
|
517
|
-
},
|
|
518
514
|
"license": "SEE LICENSE IN LICENSE"
|
|
519
515
|
}
|