Skip to content

Commit 93d7a96

Browse files
committed
fix: Remove unsupported DevTools code causing build errors
DevTools are already accessible by default in Tauri via F12/Cmd+Option+I. Bumped version to v0.2.1.
1 parent c19198a commit 93d7a96

5 files changed

Lines changed: 4 additions & 12 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "podcastsync",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "A modern, cross-platform desktop application for automatically downloading and managing podcast episodes from RSS feeds",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "podcastsync"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A modern, cross-platform desktop application for automatically downloading and managing podcast episodes from RSS feeds"
55
authors = []
66
license = "MIT"

src-tauri/src/main.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,6 @@ fn main() {
3333
// Build Tauri app
3434
tauri::Builder::default()
3535
.setup(|app| {
36-
// Enable DevTools in production for debugging
37-
#[cfg(not(debug_assertions))]
38-
{
39-
if let Some(window) = app.get_window("main") {
40-
window.open_devtools();
41-
}
42-
}
43-
4436
let app_handle = app.handle();
4537

4638
// Get app data directory

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "PodcastSync",
11-
"version": "0.1.0"
11+
"version": "0.2.1"
1212
},
1313
"tauri": {
1414
"allowlist": {

0 commit comments

Comments
 (0)