-
Notifications
You must be signed in to change notification settings - Fork 889
docs: prepare for v4 release and move to ui3.nuxt.com
#5019
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
Changes from all commits
dc28907
5456b8c
6a8df9b
d4e3d5d
4e7e558
dadd0fd
a64e180
bfe216d
1357845
266b85b
00d56a5
402fb10
731ef62
fc71cc3
a3fc9ca
a86ec93
82dc119
e2163eb
decee6b
7c06ac7
5e55162
c2060b1
a0491ef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ body: | |
attributes: | ||
label: Package | ||
options: | ||
- v4.0.0-alpha.x | ||
- v4.x | ||
- v3.x | ||
- v2.x | ||
default: 1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ body: | |
attributes: | ||
label: Package | ||
options: | ||
- v4.0.0-alpha.x | ||
- v4.x | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The documentation URL in the feature request template still points to View Detailsπ Patch Detailsdiff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml
index ff895694..576e7921 100644
--- a/.github/ISSUE_TEMPLATE/feature-request.yml
+++ b/.github/ISSUE_TEMPLATE/feature-request.yml
@@ -5,7 +5,7 @@ body:
- type: markdown
attributes:
value: |
- Before requesting a feature, please make sure that you have read through our [documentation](https://ui.nuxt.com/) and existing [issues](https://github.com/nuxt/ui/issues?q=is%3Aissue%20is%3Aopen%20sort%3Aupdated-desc).
+ Before requesting a feature, please make sure that you have read through our [documentation](https://ui3.nuxt.com/) and existing [issues](https://github.com/nuxt/ui/issues?q=is%3Aissue%20is%3Aopen%20sort%3Aupdated-desc).
- type: dropdown
id: package
attributes:
AnalysisDocumentation URL inconsistency in feature request templateWhat fails: The feature request template in How to reproduce:
Result: Template directs users to ui.nuxt.com instead of the canonical ui3.nuxt.com homepage Expected: Template should reference the official homepage URL declared in package.json for consistency |
||
- v3.x | ||
- v2.x | ||
default: 1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ body: | |
attributes: | ||
label: Package | ||
options: | ||
- v4.0.0-alpha.x | ||
- v4.x | ||
- v3.x | ||
- v2.x | ||
default: 1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
<template> | ||
<UBanner | ||
id="nuxtlabs-join-vercel" | ||
title="NuxtLabs is joining Vercel" | ||
icon="i-simple-icons-vercel" | ||
to="https://nuxtlabs.com/?utm_source=nuxt-ui&utm_medium=banner&utm_campaign=nuxtlabs-vercel" | ||
id="nuxtui-v4" | ||
title="Nuxt UI v4 is offically released!" | ||
icon="i-lucide-rocket" | ||
to="https://ui.nuxt.com" | ||
target="_blank" | ||
close | ||
:actions="[{ | ||
label: 'Read the announcement', | ||
color: 'neutral', | ||
variant: 'outline', | ||
trailingIcon: 'i-lucide-arrow-right', | ||
to: 'https://nuxtlabs.com/?utm_source=nuxt-ui&utm_medium=banner&utm_campaign=nuxtlabs-vercel', | ||
target: '_blank', | ||
class: 'ring-0' | ||
}]" | ||
/> | ||
</template> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation URL in the bug report template still points to
https://ui.nuxt.com
but should be updated tohttps://ui3.nuxt.com
to be consistent with the v3 documentation migration pattern.View Details
π Patch Details
Analysis
Bug report template uses incorrect documentation URL
What fails: Bug report template in
.github/ISSUE_TEMPLATE/bug-report.yml
line 8 links tohttps://ui.nuxt.com/
but project configuration specifieshttps://ui3.nuxt.com
as the canonical documentation URLHow to reproduce:
.github/ISSUE_TEMPLATE/bug-report.yml
- shows[documentation](https://ui.nuxt.com/)
package.json
homepage field - shows"homepage": "https://ui3.nuxt.com"
docs/nuxt.config.ts
production site URL - showsurl: 'https://ui3.nuxt.com'
Result: Bug report template directs users to
ui.nuxt.com
while project's canonical URL isui3.nuxt.com
Expected: Template should use the same documentation URL as specified in package.json and docs config for consistency