fix: create a data dir for fern

This commit is contained in:
2025-04-16 22:05:27 +00:00
parent 43f885cffc
commit f3ee0d0068
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 0.8.1
- Hotfixed the program failing to launch if the data dir hadn't already been created
## 0.8.0
- Added support for ChuniIO

View File

@ -133,6 +133,8 @@ impl AppData {
}
fn init_logger(cfg: &GlobalConfig) {
_ = std::fs::create_dir_all(util::data_dir());
let mut fern_builder;
let colors = ColoredLevelConfig::new()
.debug(Color::Green)

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "STARTLINER",
"version": "0.8.0",
"version": "0.8.1",
"identifier": "zip.patafour.startliner",
"build": {
"beforeDevCommand": "bun run dev",