Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
f3ee0d0068 | |||
43f885cffc |
@ -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",
|
||||||
|
@ -3,7 +3,7 @@ import InputNumber from 'primevue/inputnumber';
|
|||||||
import ToggleSwitch from 'primevue/toggleswitch';
|
import ToggleSwitch from 'primevue/toggleswitch';
|
||||||
import OptionRow from './OptionRow.vue';
|
import OptionRow from './OptionRow.vue';
|
||||||
import { usePrfStore } from '../stores';
|
import { usePrfStore } from '../stores';
|
||||||
import { Patch } from '@/types';
|
import { Patch } from '../types';
|
||||||
|
|
||||||
const prf = usePrfStore();
|
const prf = usePrfStore();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user