@imgly/plugin-ai-apps-web 0.2.2 → 0.2.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 +6 -0
- package/README.md +10 -2
- package/dist/index.mjs +34 -34
- package/dist/index.mjs.map +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.2.3] - 2025-07-23
|
|
6
|
+
|
|
7
|
+
- [all] **Automatic History Asset Library Entries**: Composite history asset sources now automatically have corresponding asset library entries created with the same IDs (e.g., `ly.img.ai.image-generation.history`)
|
|
8
|
+
- [all] **Provider Selection in Expanded Quick Actions**: When a quick action is expanded, users can now switch between all providers that support that specific quick action, enhancing flexibility in provider selection
|
|
9
|
+
- [all] **Quick Action Can Disable Lock**: Some quick actions can now decide to not lock the block when operating on a block. Examples are `CreateVariant` and `CombineImages`.
|
|
10
|
+
|
|
5
11
|
## [0.2.2] - 2025-07-16
|
|
6
12
|
|
|
7
13
|
- [ai-apps] Fix issue with undefined `cesdk` instance
|
package/README.md
CHANGED
|
@@ -218,14 +218,22 @@ cesdk.ui.setDockOrder(currentOrder);
|
|
|
218
218
|
|
|
219
219
|
## Asset History Integration
|
|
220
220
|
|
|
221
|
-
The plugin automatically integrates generated assets into the appropriate asset libraries
|
|
221
|
+
The plugin automatically integrates generated assets into the appropriate asset libraries. For each generation type, both a history asset source and a corresponding asset library entry are automatically created with the same ID:
|
|
222
222
|
|
|
223
223
|
- **Image Generation History**: `ly.img.ai.image-generation.history`
|
|
224
224
|
- **Video Generation History**: `ly.img.ai.video-generation.history`
|
|
225
225
|
- **Audio Generation History**: `ly.img.ai.audio-generation.history`
|
|
226
226
|
- **Sticker Generation History**: `ly.img.ai.sticker-generation.history`
|
|
227
227
|
|
|
228
|
-
|
|
228
|
+
These asset library entries are automatically configured with:
|
|
229
|
+
- Sorted by insertion date (newest first)
|
|
230
|
+
- Square grid item height
|
|
231
|
+
- Cover background type
|
|
232
|
+
- Removable items
|
|
233
|
+
|
|
234
|
+
### Integrating with Default Asset Libraries
|
|
235
|
+
|
|
236
|
+
To add these history sources to CE.SDK's default asset library entries, use the following approach:
|
|
229
237
|
|
|
230
238
|
```typescript
|
|
231
239
|
// Add AI image history to the default image asset library
|