Bugfixes - Editor images, git-gateway auth, editor scrolling, numeric selects, object/list previews (#50)

* v1.0.0-alpha26
This commit is contained in:
Daniel Lautzenheiser
2022-10-27 12:24:30 -04:00
committed by GitHub
parent 1de3d52d57
commit 8c8a59093d
47 changed files with 794 additions and 942 deletions

20
website/.gitignore vendored
View File

@ -34,3 +34,23 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
dist/
bin/
.tern-project
.vscode/
.idea/
manifest.yml
.imdone/
data/contributors.json
cypress/videos
cypress/screenshots
__diff_output__
.cache
*.log
.env
.temp/
*.tgz
public/sw.js
public/workbox*.js

View File

@ -18,12 +18,12 @@ If you are using a package manager like Yarn or NPM, use their standard procedur
If you are using the CMS through a CDN like Unpkg, then that depends on the version tag you are using. You can find the version tag in the `/admin/index.html` file of your site.
- (Recommended) If you use `^0.1.0`, the CMS does all updates except major versions automatically.
- It upgrades to `0.1.1`, `0.2.0`, `0.2.1`.
- It does not upgrade to `1.0.0` or higher.
- (Recommended) If you use `^1.0.0`, the CMS does all updates except major versions automatically.
- It upgrades to `1.0.1`, `1.1.0`, `1.1.1`.
- It does not upgrade to `2.0.0` or higher.
- It does not upgrade to beta versions.
- If you use `~0.1.0`, the CMS will do only patch updates automatically.
- It upgrades `0.1.1`, `0.1.2`.
- It does not upgrade to `0.2.0` or higher.
- If you use `~1.0.0`, the CMS will do only patch updates automatically.
- It upgrades `1.0.1`, `1.0.2`.
- It does not upgrade to `1.1.0` or higher.
- It does not upgrade beta versions.