Skip to content

Commit 9aa38a9

Browse files
committed
New website links
1 parent b64da13 commit 9aa38a9

File tree

7 files changed

+29
-312
lines changed

7 files changed

+29
-312
lines changed

1.0 RC release.md

Lines changed: 0 additions & 281 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ Headlines: Added, Changed, Deprecated, Removed, Fixed, Security
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [1.0.0]
9+
10+
### Added
11+
12+
- New Superforms domain! https://superforms.rocks
913

1014
### Fixed
1115

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
</p>
55

66
<div align="center">
7-
<a align="center" href="https://superforms.vercel.app/">https://superforms.vercel.app/</a>
7+
<a align="center" href="https://superforms.rocks/">https://superforms.rocks/</a>
88
<br />
99
<a href="https://discord.gg/AptebvVuhB">Discord</a>
1010
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
11-
<a href="https://github.com/ciscoheat/sveltekit-superforms/discussions">Discussions</a>
12-
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
13-
<a href="https://superforms.vercel.app/api">API</a>
11+
<a href="https://superforms.rocks/api">API</a>
1412
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
15-
<a href="https://superforms.vercel.app/faq">FAQ</a>
13+
<a href="https://superforms.rocks/faq">FAQ</a>
1614
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
1715
<a href="https://www.npmjs.com/package/sveltekit-superforms">npm</a>
1816
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
1917
<a href="https://github.com/ciscoheat/sveltekit-superforms/issues">Issues</a>
18+
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
19+
<a href="https://github.com/ciscoheat/sveltekit-superforms/discussions">Discussions</a>
2020
</div>
2121

2222
<br/>
@@ -27,21 +27,21 @@ Making SvelteKit **validation** and **displaying** of forms easier than ever!
2727

2828
- Seamless merging of `PageData` and `ActionData` - Forget about which one to use and how, just focus on your data.
2929
- Server- and client-side data validation using [Zod](https://zod.dev), with output that can be used directly on the client.
30-
- [Auto-centering and auto-focusing](https://superforms.vercel.app/concepts/error-handling#usage-client) on invalid form fields.
31-
- [Tainted form detection](https://superforms.vercel.app/concepts/tainted), prevents the user from losing data if navigating away from an unsaved form.
32-
- No JS required as default, but full support for [progressive enhancement](https://superforms.vercel.app/concepts/enhance).
30+
- [Auto-centering and auto-focusing](https://superforms.rocks/concepts/error-handling#usage-client) on invalid form fields.
31+
- [Tainted form detection](https://superforms.rocks/concepts/tainted), prevents the user from losing data if navigating away from an unsaved form.
32+
- No JS required as default, but full support for [progressive enhancement](https://superforms.rocks/concepts/enhance).
3333
- Automatically coerces the string data from `FormData` into correct types.
34-
- For advanced data structures, forget about the limitations of `FormData` - [Send your forms as devalued JSON](https://superforms.vercel.app/concepts/nested-data), transparently.
35-
- Generates [default form values](https://superforms.vercel.app/default-values) from validation schemas.
36-
- Support for [nested data structures](https://superforms.vercel.app/concepts/nested-data), [snapshots](https://superforms.vercel.app/concepts/snapshots) and [multiple forms](https://superforms.vercel.app/concepts/multiple-forms) on the same page.
37-
- Works both on the server and with [single-page applications](https://superforms.vercel.app/concepts/spa) (SPA)!
38-
- [Proxy objects](https://superforms.vercel.app/concepts/proxy-objects) for handling data conversions to string and back again.
39-
- Realtime [client-side validators](https://superforms.vercel.app/concepts/client-validation) for immediate user feedback.
40-
- Provide submit state feedback with three [auto-updating timers](https://superforms.vercel.app/concepts/timers), based on human perception research.
41-
- Even more care for the user: No form data loss, by [preventing error page rendering](https://superforms.vercel.app/concepts/enhance#differences-from-sveltekits-useenhance) as default.
42-
- Hook into [a number of events](https://superforms.vercel.app/concepts/events) for full control over the validation data and the `ActionResult`, with a possibility to cancel the update at every step.
43-
- Complete customization with a [huge list of options](https://superforms.vercel.app/api#superformform-options).
44-
- Comes with a Super Debugging Svelte Component: [SuperDebug](https://superforms.vercel.app/api#superdebug).
34+
- For advanced data structures, forget about the limitations of `FormData` - [Send your forms as devalued JSON](https://superforms.rocks/concepts/nested-data), transparently.
35+
- Generates [default form values](https://superforms.rocks/default-values) from validation schemas.
36+
- Support for [nested data structures](https://superforms.rocks/concepts/nested-data), [snapshots](https://superforms.rocks/concepts/snapshots) and [multiple forms](https://superforms.rocks/concepts/multiple-forms) on the same page.
37+
- Works both on the server and with [single-page applications](https://superforms.rocks/concepts/spa) (SPA)!
38+
- [Proxy objects](https://superforms.rocks/concepts/proxy-objects) for handling data conversions to string and back again.
39+
- Realtime [client-side validators](https://superforms.rocks/concepts/client-validation) for immediate user feedback.
40+
- Provide submit state feedback with three [auto-updating timers](https://superforms.rocks/concepts/timers), based on human perception research.
41+
- Even more care for the user: No form data loss, by [preventing error page rendering](https://superforms.rocks/concepts/enhance#differences-from-sveltekits-useenhance) as default.
42+
- Hook into [a number of events](https://superforms.rocks/concepts/events) for full control over the validation data and the `ActionResult`, with a possibility to cancel the update at every step.
43+
- Complete customization with a [huge list of options](https://superforms.rocks/api#superformform-options).
44+
- Comes with a Super Debugging Svelte Component: [SuperDebug](https://superforms.rocks/api#superdebug).
4545

4646
# Installation
4747

@@ -55,7 +55,7 @@ Making SvelteKit **validation** and **displaying** of forms easier than ever!
5555

5656
# Get started
5757

58-
Follow the get started tutorial on the website to get a hands-on introduction to Superforms: https://superforms.vercel.app/get-started
58+
Follow the get started tutorial on the website to get a hands-on introduction to Superforms: https://superforms.rocks/get-started
5959

6060
You can also watch this excellent introduction video to see what's possible: https://www.youtube.com/watch?v=MiKzH3kcVfs
6161

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"forms"
1313
],
1414
"license": "MIT",
15-
"homepage": "https://superforms.vercel.app",
15+
"homepage": "https://superforms.rocks",
1616
"bugs": "https://github.com/ciscoheat/sveltekit-superforms/issues",
1717
"repository": {
1818
"url": "https://github.com/ciscoheat/sveltekit-superforms"

src/routes/tests/bound-component/+page.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@
7272

7373
<hr />
7474
<p>
75-
<a target="_blank" href="https://superforms.vercel.app/api"
76-
>API Reference</a
77-
>
75+
<a target="_blank" href="https://superforms.rocks/api">API Reference</a>
7876
</p>
7977

8078
<style>

src/routes/tests/issue-159/+page.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@
6060

6161
<hr />
6262
<p>
63-
<a target="_blank" href="https://superforms.vercel.app/api"
64-
>API Reference</a
65-
>
63+
<a target="_blank" href="https://superforms.rocks/api">API Reference</a>
6664
</p>
6765

6866
<style>

0 commit comments

Comments
 (0)