Skip to content

Commit 3f9dd8b

Browse files
forgot abt version change...(i should use some kind of tool for autoi…
Merge pull request #8 from bartosz-skejcik/master
2 parents 7ae87f0 + de4474e commit 3f9dd8b

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "content-planner",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.3.4",
55
"type": "module",
66
"scripts": {
77
"dev:tauri": "tauri dev",

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "content-planner"
3-
version = "0.3.0"
4-
description = "A Tauri App"
3+
version = "0.3.4"
4+
description = "A tool designer to make content planning and management easier."
55
authors = ["you"]
66
edition = "2021"
77

src-tauri/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ CREATE TABLE settings (
209209
tauri::Builder::default()
210210
.plugin(
211211
Builder::default()
212-
.add_migrations("sqlite:content-manager.db", migrations)
212+
.add_migrations("sqlite:content-planner.db", migrations)
213213
.build(),
214214
)
215215
.plugin(tauri_plugin_shell::init())

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "content-planner",
4-
"version": "0.3.0",
4+
"version": "0.3.4",
55
"identifier": "pl.paczesny.dev.content-planner",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

src/stores/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Database from "@tauri-apps/plugin-sql";
33
// Initialize the database connection
44
export const initializeStore = async () => {
55
try {
6-
const db = await Database.load("sqlite:content-manager.db");
6+
const db = await Database.load("sqlite:content-planner.db");
77
return db;
88
} catch (error) {
99
console.error("Error loading the database:", error);

0 commit comments

Comments
 (0)