@sveltia/cms 0.79.0 → 0.79.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 CHANGED
@@ -97,9 +97,9 @@ The free, open source alternative/successor to Netlify/Decap CMS is now in publi
97
97
 
98
98
  Sveltia CMS was born in November 2022, when the progress of Netlify CMS was stalled for more than six months. [@kyoshino](https://github.com/kyoshino)’s clients wanted to replace their Netlify CMS instances without much effort, mainly to get better internationalization (i18n) support.
99
99
 
100
- To achieve radical improvements in UX, performance, i18n and other areas, it was ultimately decided to build an alternative from the ground up, while ensuring an easy migration path from the other. After proving the concept with a rapid [Svelte](https://svelte.dev/) prototype, development was accelerated to address their primary use cases. The new product has since been named Sveltia CMS and released as open source software to encourage wider adoption.
100
+ To achieve radical improvements in UX, performance, i18n and other areas, it was ultimately decided to build an alternative from the ground up, while ensuring an easy migration path from the other. After proving the idea with a rapid [Svelte](https://svelte.dev/) prototype, development was accelerated to address their primary use cases. The new product has since been named Sveltia CMS and released as open source software to encourage wider adoption.
101
101
 
102
- We loved the concept of Netlify CMS turning a Git repository into a database with a single page app served from a CDN plus a plain YAML config file and we wanted to revive it, modernize it, and take it to the next level.
102
+ We loved the well-received concept of Netlify CMS: turning a Git repository into a database with a single page app served from a CDN plus a plain YAML config file. We wanted to revive it, modernize it, and take it to the next level.
103
103
 
104
104
  ### Our advantage
105
105
 
@@ -134,7 +134,7 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
134
134
  - Target:
135
135
  - 200 issues, or 400 if including duplicates, by GA — We did it! 🎉
136
136
  - 350 issues, or 700 if including duplicates, in the future 💪
137
- - or everything that’s relevant, fixable and worthwhile 🔥
137
+ - or every single issue that’s relevant, fixable, and worth dealing with 🔥
138
138
  - Issues include everything from feature requests to bug reports and [issues closed as stale](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+%22Closing+as+stale%22) or without an effective solution, as well as [discussions](https://github.com/decaporg/decap-cms/discussions) and stalled [pull requests](https://github.com/decaporg/decap-cms/pulls)
139
139
  - Many of the bugs, including the annoying crashes, have already been solved
140
140
  - The remaining bugs are mostly related to [unimplemented features](#current-limitations)
@@ -242,7 +242,7 @@ Netlify/Decap CMS users will definitely be pleased and surprised by the numerous
242
242
  - We provide [our own OAuth client](https://github.com/sveltia/sveltia-cms-auth) for GitHub and GitLab.
243
243
  - Users won’t get a 404 Not Found error when you sign in to the GitLab backend.[^115]
244
244
  - Our Gitea backend is high-performing because it retrieves multiple entries simultaneously. It also won’t cause 400 Bad Request errors due to the presence of `DRAFT_MEDIA_FILES` in file paths.[^222]
245
- - The OAuth token is automatically renewed with when using the GitLab or Gitea backend with PKCE authorization.[^224] Token renewal for other backend configurations will be implemented later.
245
+ - The OAuth access token is automatically renewed when using the GitLab or Gitea backend with PKCE authorization.[^224] Token renewal for other backend configurations will be implemented later.
246
246
  - Features the all-new local backend that boosts DX. See the [productivity section](#better-productivity) above.
247
247
  - Developers can select the local and remote backends while working on a local server.
248
248
  - The Test backend saves entries and assets in the browser’s [origin private file system](https://web.dev/articles/origin-private-file-system) (OPFS) so that changes are not discarded when the browser tab is closed or reloaded.[^194] The persistent storage support works with all modern browsers [except Safari](https://bugs.webkit.org/show_bug.cgi?id=254726).
@@ -360,7 +360,8 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
360
360
  - For better performance, the Preview Pane doesn’t use an `<iframe>`.[^179]
361
361
  - The Preview Pane displays all fields, including each label, making it easier to see which fields are populated.
362
362
  - Clicking a field in the Preview Pane focuses the corresponding field in the Edit Pane.[^41] It automatically expands when collapsed.
363
- - This is equivalent to the (misleading) visual editing feature introduced in [Decap 3.6.0](https://github.com/decaporg/decap-cms/releases/tag/decap-cms%403.6.0), but our click-to-highlight feature is enabled by default; you don’t need to opt in with the `editor.visualEditing` collection option. Also, image previews are not broken in Sveltia CMS.[^188]
363
+ - This is equivalent to the (misleading) visual editing feature introduced in [Decap 3.6.0](https://github.com/decaporg/decap-cms/releases/tag/decap-cms%403.6.0), but our click-to-highlight feature is enabled by default; you don’t need to opt in with the `editor.visualEditing` collection option.
364
+ - Our implementation doesn’t cause a module import error or broken image previews.[^225][^188]
364
365
  - The Preview Pane doesn’t cause a scrolling issue.[^136]
365
366
  - The Preview Pane doesn’t crash with a Minified React error.[^186]
366
367
  - Provides better scroll synchronization between the panes when editing or previewing an entry.[^92]
@@ -1837,3 +1838,5 @@ This software is provided “as is” without any express or implied warranty. W
1837
1838
  [^223]: Netlify/Decap CMS [#7483](https://github.com/decaporg/decap-cms/issues/7483)
1838
1839
 
1839
1840
  [^224]: Netlify/Decap CMS [#7352](https://github.com/decaporg/decap-cms/issues/7352)
1841
+
1842
+ [^225]: Netlify/Decap CMS [#7401](https://github.com/decaporg/decap-cms/issues/7401)