Skip to content

Commit

Permalink
fix missing platform type
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenya-DK committed Jan 10, 2025
1 parent 8932270 commit 099ccea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions Release Note.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Quantframe v1.2.7
# Quantframe v1.2.8

## Overview

Expand All @@ -11,9 +11,7 @@ Just a small update to fix some bugs.

## Fix's

- 🛠️ Blacklist was ignore
- 🛠️ Trade Tax was ignore
- 🛠️ LiveTrader kept stopping
- 🛠️ Fix missing type.

# Quantframe v1.2.5 (Release Date)

Expand Down
4 changes: 2 additions & 2 deletions src-tauri/src/wfm_client/types/order.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub struct Order {
pub region: String,

#[serde(rename = "platform")]
pub platform: String,
pub platform: Option<String>,

#[serde(rename = "creation_date")]
pub creation_date: String,
Expand Down Expand Up @@ -87,7 +87,7 @@ impl Default for Order {
user: None,
last_update: "".to_string(),
region: "".to_string(),
platform: "".to_string(),
platform: None,
creation_date: "".to_string(),
quantity: 0,
operation: vec!["New".to_string()],
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Quantframe",
"version": "1.2.7"
"version": "1.2.8"
},
"tauri": {
"systemTray": {
Expand Down Expand Up @@ -76,7 +76,7 @@
"fullscreen": false,
"userAgent": "Quantframe",
"resizable": true,
"title": "Quantframe v1.2.7 - Pre-release By Kenya-DK",
"title": "Quantframe v1.2.8 - Pre-release By Kenya-DK",
"width": 1455,
"height": 912
}
Expand Down

0 comments on commit 099ccea

Please sign in to comment.