Skip to content

Commit 08de8a1

Browse files
authored
chore: remove 2.0.0-rc references (#12987)
1 parent c108024 commit 08de8a1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

crates/tauri-cli/config.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
"type": "string"
228228
},
229229
"create": {
230-
"description": "Whether Tauri should create this window at app startup or not.\n\n When this is set to `false` you must manually grab the config object via `app.config().app.windows`\n and create it with [`WebviewWindowBuilder::from_config`](https://docs.rs/tauri/2.0.0-rc/tauri/webview/struct.WebviewWindowBuilder.html#method.from_config).",
230+
"description": "Whether Tauri should create this window at app startup or not.\n\n When this is set to `false` you must manually grab the config object via `app.config().app.windows`\n and create it with [`WebviewWindowBuilder::from_config`](https://docs.rs/tauri/2/tauri/webview/struct.WebviewWindowBuilder.html#method.from_config).",
231231
"default": true,
232232
"type": "boolean"
233233
},

crates/tauri-cli/templates/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
2+
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "{{ app_name }}",
44
"version": "0.1.0",
55
"identifier": "com.tauri.dev",

crates/tauri-schema-generator/schemas/config.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
"type": "string"
228228
},
229229
"create": {
230-
"description": "Whether Tauri should create this window at app startup or not.\n\n When this is set to `false` you must manually grab the config object via `app.config().app.windows`\n and create it with [`WebviewWindowBuilder::from_config`](https://docs.rs/tauri/2.0.0-rc/tauri/webview/struct.WebviewWindowBuilder.html#method.from_config).",
230+
"description": "Whether Tauri should create this window at app startup or not.\n\n When this is set to `false` you must manually grab the config object via `app.config().app.windows`\n and create it with [`WebviewWindowBuilder::from_config`](https://docs.rs/tauri/2/tauri/webview/struct.WebviewWindowBuilder.html#method.from_config).",
231231
"default": true,
232232
"type": "boolean"
233233
},

crates/tauri-utils/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ pub struct WindowConfig {
14651465
/// Whether Tauri should create this window at app startup or not.
14661466
///
14671467
/// When this is set to `false` you must manually grab the config object via `app.config().app.windows`
1468-
/// and create it with [`WebviewWindowBuilder::from_config`](https://docs.rs/tauri/2.0.0-rc/tauri/webview/struct.WebviewWindowBuilder.html#method.from_config).
1468+
/// and create it with [`WebviewWindowBuilder::from_config`](https://docs.rs/tauri/2/tauri/webview/struct.WebviewWindowBuilder.html#method.from_config).
14691469
#[serde(default = "default_true")]
14701470
pub create: bool,
14711471
/// The window webview URL.

0 commit comments

Comments
 (0)