File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ const navbarItems = [
132
132
dropdownItemsAfter : [
133
133
{
134
134
href : 'https://v2.tauri.app/' ,
135
- label : 'v2 (Beta )' ,
135
+ label : 'v2 (RC )' ,
136
136
target : '_self' ,
137
137
} ,
138
138
] ,
@@ -250,7 +250,7 @@ async function siteConfig() {
250
250
} ,
251
251
announcementBar : {
252
252
content :
253
- "<b>🚀 The <a id='announcement-link' href='https://v2.tauri.app/blog/tauri-2-0-0-beta /'>Beta for Tauri 2.0</a> has launched!</b>" ,
253
+ "<b>🚀 The <a id='announcement-link' href='https://v2.tauri.app/blog/tauri-2-0-0-release-candidate /'>RC for Tauri 2.0</a> has launched!</b>" ,
254
254
backgroundColor : 'var(--ifm-color-primary)' ,
255
255
textColor : 'var(--ifm-button-color)' ,
256
256
} ,
@@ -327,7 +327,8 @@ async function siteConfig() {
327
327
return sidebarItems . filter (
328
328
( item ) =>
329
329
// This makes sure that the landing pages are not duplicated in the sidebars
330
- item . id !== 'guides/readme' && item . id !== 'references/readme'
330
+ item . id !== 'guides/readme' &&
331
+ item . id !== 'references/readme' ,
331
332
)
332
333
} ,
333
334
} ,
You can’t perform that action at this time.
0 commit comments