Skip to content

Commit 784c0c0

Browse files
committed
v1.315.2
1 parent 3b360d7 commit 784c0c0

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Readme.md
22

33
![GitHub Repo stars](https://img.shields.io/github/stars/rChinnnn/rchin-poe-trade?style=social)
4-
![GitHub Downloads](https://img.shields.io/github/downloads/rChinnnn/rchin-poe-trade/latest/rchin-poe-trade-Setup-1.315.1.exe?label=Downloads&style=social)
5-
![GitHub Downloads](https://img.shields.io/github/downloads/rChinnnn/rchin-poe-trade/latest/rchin-poe-trade-1.315.1.exe?label=Downloads&style=social)
4+
![GitHub Downloads](https://img.shields.io/github/downloads/rChinnnn/rchin-poe-trade/latest/rchin-poe-trade-Setup-1.315.2.exe?label=Downloads&style=social)
5+
![GitHub Downloads](https://img.shields.io/github/downloads/rChinnnn/rchin-poe-trade/latest/rchin-poe-trade-1.315.2.exe?label=Downloads&style=social)
66

77
# rChin POE Trade
88
POE 查價工具 (Built with Electron and Vue.)
@@ -15,8 +15,8 @@ POE 查價工具 (Built with Electron and Vue.)
1515

1616
### 安裝版本說明
1717
* 點選 [Releases頁面](https://github.com/rChinnnn/rchin-poe-trade/releases),有兩種版本可以下載
18-
* `rchin-poe-trade-Setup-1.315.1.exe` 安裝版,若程式偵測到有最新版,會在背景下載新版本並在重開程式時更新
19-
* `rchin-poe-trade-1.315.1.exe` 可攜版,無法支援自動更新
18+
* `rchin-poe-trade-Setup-1.315.2.exe` 安裝版,若程式偵測到有最新版,會在背景下載新版本並在重開程式時更新
19+
* `rchin-poe-trade-1.315.2.exe` 可攜版,無法支援自動更新
2020

2121
## 【免責聲明】
2222
* **使用此程式者請自行承擔所有可能後果和風險**

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rchin-poe-trade",
3-
"version": "1.315.1",
3+
"version": "1.315.2",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

src/server.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
'Sec-Fetch-Site': 'same-origin',
6363
'Sec-Fetch-Mode': 'cors',
6464
'Sec-Fetch-Dest': 'empty',
65-
'User-Agent': 'OAuth rChinPoeTrade/1.315.1 (contact: [email protected])',
65+
'User-Agent': 'OAuth rChinPoeTrade/1.315.2 (contact: [email protected])',
6666
},
6767
rejectUnauthorized: false,
6868
requestCert: false,
@@ -84,7 +84,7 @@
8484
headers: {
8585
'accept': '*/*',
8686
'Cookie': req.body.cookie,
87-
'User-Agent': 'OAuth rChinPoeTrade/1.315.1 (contact: [email protected])',
87+
'User-Agent': 'OAuth rChinPoeTrade/1.315.2 (contact: [email protected])',
8888
},
8989
rejectUnauthorized: false,
9090
requestCert: false,
@@ -110,7 +110,7 @@
110110
headers: {
111111
'accept': '*/*',
112112
'Content-Type': 'application/json',
113-
'User-Agent': 'OAuth rChinPoeTrade/1.315.1 (contact: [email protected])',
113+
'User-Agent': 'OAuth rChinPoeTrade/1.315.2 (contact: [email protected])',
114114
},
115115
rejectUnauthorized: false,
116116
requestCert: false,

src/store/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default new Vuex.Store({
99
accountName: '' || localStorage.getItem('accountName'),
1010
selectedTab: localStorage.getItem('selectedTab') || '0',
1111
priceSettingMin: localStorage.getItem('priceSettingMin') || 0.1,
12-
priceSettingMax: localStorage.getItem('priceSettingMax') || '',
12+
priceSettingMax: localStorage.getItem('priceSettingMax') || null,
1313
},
1414
mutations: {
1515
setPOESESSID(state, POESESSID) {

src/views/About.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="about" style="padding-top: 5px;">
33
<div style="padding:5px 30px;">
44
<b-card-group deck>
5-
<b-card border-variant="primary" header="POE 查價工具 v1.315.1" header-bg-variant="primary" header-text-variant="white" align="center">
5+
<b-card border-variant="primary" header="POE 查價工具 v1.315.2" header-bg-variant="primary" header-text-variant="white" align="center">
66
<b-card-text>作者:rChinnnn</b-card-text>
77
<b-card-text>
88
<b-button @click="openLink(`https://github.com/rChinnnn/rchin-poe-trade/releases`)" size="sm" variant="outline-primary" class="mb-2">

src/views/Home.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ export default {
710710
},
711711
"price": {
712712
"min": localStorage.getItem('priceSettingMin') || 0.1,
713-
"max": localStorage.getItem('priceSettingMax') || '',
713+
"max": localStorage.getItem('priceSettingMax') || null,
714714
},
715715
"collapse": {}
716716
}

0 commit comments

Comments
 (0)