forked from akanyan/STARTLINER
fix: create a data dir for fern
This commit is contained in:
@ -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
|
## 0.8.0
|
||||||
|
|
||||||
- Added support for ChuniIO
|
- Added support for ChuniIO
|
||||||
|
@ -133,6 +133,8 @@ impl AppData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn init_logger(cfg: &GlobalConfig) {
|
fn init_logger(cfg: &GlobalConfig) {
|
||||||
|
_ = std::fs::create_dir_all(util::data_dir());
|
||||||
|
|
||||||
let mut fern_builder;
|
let mut fern_builder;
|
||||||
let colors = ColoredLevelConfig::new()
|
let colors = ColoredLevelConfig::new()
|
||||||
.debug(Color::Green)
|
.debug(Color::Green)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "STARTLINER",
|
"productName": "STARTLINER",
|
||||||
"version": "0.8.0",
|
"version": "0.8.1",
|
||||||
"identifier": "zip.patafour.startliner",
|
"identifier": "zip.patafour.startliner",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "bun run dev",
|
"beforeDevCommand": "bun run dev",
|
||||||
|
Reference in New Issue
Block a user