version bump

This commit is contained in:
kvan7
2025-09-09 23:26:05 -05:00
parent bbcefcadf0
commit f9b0b5a70d
6 changed files with 35 additions and 19 deletions
+28 -12
View File
@@ -8,12 +8,28 @@ body:
value: |
Thanks for taking the time to fill out this bug report!
- type: checkboxes
id: terms
id: faq
attributes:
label: FAQ
description: Please check the [FAQ](https://kvan7.github.io/Exiled-Exchange-2/faq), [Common Issues Page](https://kvan7.github.io/Exiled-Exchange-2/issues), and for [pinned issues and existing issues](https://github.com/Kvan7/Exiled-Exchange-2/issues?q=is%3Aissue) before submitting an issue
description: Please check the [FAQ](https://kvan7.github.io/Exiled-Exchange-2/faq) before submitting an issue
options:
- label: I have checked the [FAQ](https://kvan7.github.io/Exiled-Exchange-2/faq), [Common Issues Page](https://kvan7.github.io/Exiled-Exchange-2/issues), and for [pinned issues and existing issues](https://github.com/Kvan7/Exiled-Exchange-2/issues?q=is%3Aissue) and my problem was not there
- label: I have checked the [FAQ](https://kvan7.github.io/Exiled-Exchange-2/faq) and my problem was not there
required: true
- type: checkboxes
id: common-issues
attributes:
label: Common Issues
description: Please check the [Common Issues Page](https://kvan7.github.io/Exiled-Exchange-2/issues) before submitting an issue
options:
- label: I have checked the [Common Issues Page](https://kvan7.github.io/Exiled-Exchange-2/issues) and my problem was not there
required: true
- type: checkboxes
id: existing-issues
attributes:
label: Existing Issues
description: Please check the [pinned issues and existing issues](https://github.com/Kvan7/Exiled-Exchange-2/issues?q=is%3Aissue) before submitting an issue
options:
- label: I have checked the [pinned issues and existing issues](https://github.com/Kvan7/Exiled-Exchange-2/issues?q=is%3Aissue) and my problem was not there
required: true
- type: dropdown
id: common-bug
@@ -43,27 +59,27 @@ body:
label: Version
description: What version of EE2 are you running? You can see this in Settings -> About
options:
- 0.11.6
- 0.11.5
- 0.11.4
- 0.11.3
- 0.11.2
- 0.12.0
- 0.11.x
- 0.10.x
- 0.9.x
- 0.8.x
- Other
default: 0
validations:
required: true
- type: textarea
id: item
attributes:
label: Item Copy text
description: If your bug relates in **ANY** way to an item, **PLEASE** copy the item's text and paste it here. You can do so with `ctrl + alt + c` when hovering over the item.
description: PLEASE copy the item's text and paste it here. You can do so with `ctrl + alt + c` when hovering over the item, if your bug doesn't related to any items at all, write "None" (if it is about an item in any way and you write None it will be ignored)
render: shell
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: If able, please go to Settings -> Debug, and copy and paste what is in that text box. (No need for backticks)
label: Log output
description: Please go to Settings -> Debug, and copy and paste what is in that text box. (No need for backticks)
render: shell
validations:
required: true
+1 -1
View File
@@ -1,6 +1,6 @@
# ![Perfect Jewelers Orb](./renderer/public/images/jeweler.png) Exiled Exchange 2
![GitHub Downloads (specific asset, latest release)](https://img.shields.io/github/downloads/kvan7/exiled-exchange-2/latest/Exiled-Exchange-2-Setup-0.11.6.exe?style=plastic&link=https%3A%2F%2Ftooomm.github.io%2Fgithub-release-stats%2F%3Fusername%3Dkvan7%26repository%3DExiled-Exchange-2)
![GitHub Downloads (specific asset, latest release)](https://img.shields.io/github/downloads/kvan7/exiled-exchange-2/latest/Exiled-Exchange-2-Setup-0.12.0.exe?style=plastic&link=https%3A%2F%2Ftooomm.github.io%2Fgithub-release-stats%2F%3Fusername%3Dkvan7%26repository%3DExiled-Exchange-2)
![GitHub Tag](https://img.shields.io/github/v/tag/kvan7/exiled-exchange-2?style=plastic&label=latest%20version)
![GitHub commits since latest release (branch)](https://img.shields.io/github/commits-since/kvan7/exiled-exchange-2/latest/dev?style=plastic)
+1 -1
View File
@@ -20,7 +20,7 @@ export default defineConfig({
},
themeConfig: {
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
appVersion: '0.11.6',
appVersion: '0.12.0',
github: {
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
},
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "exiled-exchange-2",
"version": "0.11.6",
"version": "0.12.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "exiled-exchange-2",
"version": "0.11.6",
"version": "0.12.0",
"dependencies": {
"electron-overlay-window": "3.3.1",
"uiohook-napi": "1.5.x"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "exiled-exchange-2",
"version": "0.11.6",
"version": "0.12.0",
"private": true,
"scripts": {
"dev": "node build/script.mjs",
@@ -78,8 +78,8 @@ function findItemByQueryId(queryId: string): BaseType | undefined {
function findPriceByQueryId(queryId: string) {
const [ns, encodedName] = queryId.split("::");
const [name, variant] = encodedName.split(" // ");
const priceEntry = findPriceByQuery({ ns, name, variant });
// const [name, variant] = encodedName.split(" // ");
const priceEntry = findPriceByQuery({ ns, name: encodedName });
if (priceEntry) {
return autoCurrency(priceEntry.exalted);
}