Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the broken featureslices.dev domain #726

Merged
merged 2 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [2.0.0] - 2023-10-01

> **Note**
> This release note is retrospective, meaning that prior to this release, the Feature-Sliced Design project did not keep a changelog. Below is a summary of the most prominent recent changes, but there is no FSD v1. Prior to FSD, there has been a project called ["Feature Slices"](https://featureslices.dev/v1.0.html), and it is considered to be the v1 of FSD.
> This release note is retrospective, meaning that prior to this release, the Feature-Sliced Design project did not keep a changelog. Below is a summary of the most prominent recent changes, but there is no FSD v1. Prior to FSD, there has been a project called ["Feature Slices"](https://feature-sliced.github.io/featureslices.dev/v1.0.html), and it is considered to be the v1 of FSD.

### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions config/docusaurus/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ const navbar = {
dropdownActiveClassDisabled: true,
dropdownItemsAfter: [
{
to: "https://featureslices.dev/v1.0.html",
to: "https://feature-sliced.github.io/featureslices.dev/v1.0.html",
label: "v1.0",
},
{
to: "https://featureslices.dev/v0.1.html",
to: "https://feature-sliced.github.io/featureslices.dev/v0.1.html",
label: "v0.1",
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Now it is much easier to [observe the principle of low coupling][refs-low-coupli
[refs-low-coupling]: /docs/reference/isolation/coupling-cohesion
[refs-adaptability]: /docs/about/understanding/naming

[ext-v1]: https://featureslices.dev/v1.0.html
[ext-v1]: https://feature-sliced.github.io/featureslices.dev/v1.0.html
[ext-tg-spb]: https://t.me/feature_slices
[ext-fdd]: https://github.com/feature-sliced/documentation/tree/rc/feature-driven
[ext-fdd-issues]: https://github.com/kof/feature-driven-architecture/issues
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ sidebar_position: 4
[refs-low-coupling]: /docs/reference/isolation/coupling-cohesion
[refs-adaptability]: /docs/about/understanding/naming

[ext-v1]: https://featureslices.dev/v1.0.html
[ext-v1]: https://feature-sliced.github.io/featureslices.dev/v1.0.html
[ext-tg-spb]: https://t.me/feature_slices
[ext-fdd]: https://github.com/feature-sliced/documentation/tree/rc/feature-driven
[ext-fdd-issues]: https://github.com/kof/feature-driven-architecture/issues
Expand Down
2 changes: 1 addition & 1 deletion src/features/hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function Hero() {
<div className="margin-top--md">
<Link
className={styles.link}
to="https://featureslices.dev/"
to="https://feature-sliced.github.io/featureslices.dev/v1.0.html"
>
{translate({ id: "features.hero.previous" })}{" "}
(feature-slices@v1)
Expand Down
4 changes: 2 additions & 2 deletions src/pages/versions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ function Version() {
<Table>
<Table.Row
th="v1.0"
href="https://featureslices.dev/v1.0.html"
href="https://feature-sliced.github.io/featureslices.dev/v1.0.html"
hrefTitle="Documentation"
/>
<Table.Row
th="v0.1"
href="https://featureslices.dev/v0.1.html"
href="https://feature-sliced.github.io/featureslices.dev/v0.1.html"
hrefTitle="Documentation"
/>
</Table>
Expand Down