@sveltia/cms 0.13.1 → 0.14.1
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/README.md +19 -6
- package/dist/sveltia-cms.js +211 -209
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ We are working hard to create a **much better alternative to Netlify/Decap CMS**
|
|
|
70
70
|
|
|
71
71
|
### Better security
|
|
72
72
|
|
|
73
|
-
- Avoids high/critical severity vulnerabilities through constant dependency updates[^34].
|
|
73
|
+
- Avoids high/critical severity vulnerabilities through constant dependency updates and frequent releases[^34].
|
|
74
74
|
- We have documented how to [set up a Content Security Policy](#set-up-content-security-policy) for the CMS.
|
|
75
75
|
- The `unsafe-eval` or `unsafe-inline` keywords are not needed in the `script-src` CSP directive[^33].
|
|
76
76
|
|
|
@@ -120,9 +120,15 @@ We are working hard to create a **much better alternative to Netlify/Decap CMS**
|
|
|
120
120
|
### Better asset management
|
|
121
121
|
|
|
122
122
|
- A completely new Asset Library, built separately from the image selection dialog, makes it easy to manage all of your files, including images, videos and documents.
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
123
|
+
- Navigate between the global media folder and per-collection media folders[^6].
|
|
124
|
+
- Preview image, audio, video, text and PDF files. Check your site’s [CSP](#set-up-content-security-policy) if the preview doesn’t work.
|
|
125
|
+
- Copy the public URL or file path of one or more selected assets to clipboard.
|
|
126
|
+
- Copy the text or image data of of a selected asset to clipboard.
|
|
127
|
+
- Download one or more selected assets at once.
|
|
128
|
+
- Delete one or more selected assets at once.
|
|
129
|
+
- Upload multiple assets at once, including files in nested folders, by browsing or dragging and dropping them into the library[^5].
|
|
130
|
+
- Sort or filter assets by name or file type.
|
|
131
|
+
- View asset details, including size, dimensions, and a list of entries that use the selected asset.
|
|
126
132
|
- Assets stored in an entry-relative media folder are automatically deleted when the associated entry is deleted because these assets are not available for other entries[^22].
|
|
127
133
|
|
|
128
134
|
## Compatibility
|
|
@@ -160,7 +166,6 @@ While it’s not our goal to recreate all the features found in Netlify/Decap CM
|
|
|
160
166
|
|
|
161
167
|
- Comprehensive config validation is not implemented yet.
|
|
162
168
|
- Auto-saving a draft entry is not implemented yet.
|
|
163
|
-
- Downloading an asset and copying the file path of an asset in the media library is not implemented yet.
|
|
164
169
|
- [Backend health check](https://www.githubstatus.com/api) is not implemented yet.
|
|
165
170
|
|
|
166
171
|
## Roadmap
|
|
@@ -180,6 +185,7 @@ While it’s not our goal to recreate all the features found in Netlify/Decap CM
|
|
|
180
185
|
- Roles[^23]
|
|
181
186
|
- Config editor[^10]
|
|
182
187
|
- Mobile support[^18]
|
|
188
|
+
- and more!
|
|
183
189
|
|
|
184
190
|
## Getting started
|
|
185
191
|
|
|
@@ -358,6 +364,8 @@ If your site adopts Content Security Policy (CSP), use the following policy for
|
|
|
358
364
|
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
|
|
359
365
|
font-src 'self' https://fonts.gstatic.com;
|
|
360
366
|
img-src 'self' blob: data:;
|
|
367
|
+
media-src blob:;
|
|
368
|
+
frame-src blob:;
|
|
361
369
|
script-src 'self' https://unpkg.com;
|
|
362
370
|
connect-src 'self' blob: data:;
|
|
363
371
|
```
|
|
@@ -434,6 +442,11 @@ Sveltia CMS is still in early beta, so we do expect various problems. Please [re
|
|
|
434
442
|
|
|
435
443
|
- Introducing Sveltia CMS: a short technical presentation by [@kyoshino](https://github.com/kyoshino) during the _This Week in Svelte_ online meetup on March 31, 2023 — [recording](https://youtu.be/-YjLubiieYs?t=1660) & [slides](https://docs.google.com/presentation/d/1Wi4ty-1AwOp2-zy7LctmzCV4rrdYPfke9NGhO0DdRdM)
|
|
436
444
|
|
|
445
|
+
### As seen on
|
|
446
|
+
|
|
447
|
+
- [Made with Svelte](https://madewithsvelte.com/sveltia-cms)
|
|
448
|
+
- [LogRocket Blog](https://blog.logrocket.com/9-best-git-based-cms-platforms/)
|
|
449
|
+
|
|
437
450
|
## Disclaimer
|
|
438
451
|
|
|
439
452
|
This software is provided “as is” without any express or implied warranty. We are not obligated to provide any support for the application. This product is not affiliated with or endorsed by Netlify, Decap CMS or any other integrated services. All product names, logos, and brands are the property of their respective owners.
|
|
@@ -448,7 +461,7 @@ This software is provided “as is” without any express or implied warranty. W
|
|
|
448
461
|
[^8]: Netlify/Decap CMS [#2579](https://github.com/decaporg/decap-cms/issues/2579)
|
|
449
462
|
[^9]: Netlify/Decap CMS [#3505](https://github.com/decaporg/decap-cms/issues/3505)
|
|
450
463
|
[^10]: Netlify/Decap CMS [#341](https://github.com/decaporg/decap-cms/issues/341), [#1167](https://github.com/decaporg/decap-cms/issues/1167)
|
|
451
|
-
[^11]: Netlify/Decap CMS [#1382](https://github.com/decaporg/decap-cms/issues/1382), [#1424](https://github.com/decaporg/decap-cms/issues/1424), [#2370](https://github.com/decaporg/decap-cms/issues/2370), [#5596](https://github.com/decaporg/decap-cms/issues/5596), [#5752](https://github.com/decaporg/decap-cms/issues/5752), [#6994](https://github.com/decaporg/decap-cms/issues/6994) and more. We’ll be updating this list after reviewing their issue list.
|
|
464
|
+
[^11]: Netlify/Decap CMS [#1382](https://github.com/decaporg/decap-cms/issues/1382), [#1424](https://github.com/decaporg/decap-cms/issues/1424), [#2370](https://github.com/decaporg/decap-cms/issues/2370), [#5569](https://github.com/decaporg/decap-cms/issues/5569), [#5596](https://github.com/decaporg/decap-cms/issues/5596), [#5752](https://github.com/decaporg/decap-cms/issues/5752), [#6994](https://github.com/decaporg/decap-cms/issues/6994) and more. We’ll be updating this list after reviewing their issue list.
|
|
452
465
|
[^12]: Netlify/Decap CMS [#1975](https://github.com/decaporg/decap-cms/issues/1975)
|
|
453
466
|
[^13]: Netlify/Decap CMS [#5112](https://github.com/decaporg/decap-cms/issues/5112), [#5653](https://github.com/decaporg/decap-cms/issues/5653)
|
|
454
467
|
[^14]: Netlify/Decap CMS [#4635](https://github.com/decaporg/decap-cms/issues/4635), [#4738](https://github.com/decaporg/decap-cms/issues/4738), [#5920](https://github.com/decaporg/decap-cms/issues/5920), [#6410](https://github.com/decaporg/decap-cms/issues/6410)
|