Skip to content

Commit 6c5db5e

Browse files
committed
version bump
1 parent 754b86e commit 6c5db5e

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,14 @@ body:
5959
label: Version
6060
description: What version of EE2 are you running? You can see this in Settings -> About
6161
options:
62+
- 0.12.3
6263
- 0.12.2
6364
- 0.12.1
6465
- 0.12.0
6566
- 0.11.x
6667
- 0.10.x
6768
- Change me
68-
default: 5
69+
default: 6
6970
validations:
7071
required: true
7172
- type: textarea

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ![Perfect Jewelers Orb](./renderer/public/images/jeweler.png) Exiled Exchange 2
22

3-
![GitHub Downloads (specific asset, latest release)](https://img.shields.io/github/downloads/kvan7/exiled-exchange-2/latest/Exiled-Exchange-2-Setup-0.12.2.exe?style=plastic&link=https%3A%2F%2Ftooomm.github.io%2Fgithub-release-stats%2F%3Fusername%3Dkvan7%26repository%3DExiled-Exchange-2)
3+
![GitHub Downloads (specific asset, latest release)](https://img.shields.io/github/downloads/kvan7/exiled-exchange-2/latest/Exiled-Exchange-2-Setup-0.12.3.exe?style=plastic&link=https%3A%2F%2Ftooomm.github.io%2Fgithub-release-stats%2F%3Fusername%3Dkvan7%26repository%3DExiled-Exchange-2)
44
![GitHub Tag](https://img.shields.io/github/v/tag/kvan7/exiled-exchange-2?style=plastic&label=latest%20version)
55
![GitHub commits since latest release (branch)](https://img.shields.io/github/commits-since/kvan7/exiled-exchange-2/latest/dev?style=plastic)
66

docs/.vitepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default defineConfig({
2020
},
2121
themeConfig: {
2222
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
23-
appVersion: '0.12.2',
23+
appVersion: '0.12.3',
2424
github: {
2525
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
2626
},

main/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "exiled-exchange-2",
3-
"version": "0.12.2",
3+
"version": "0.12.3",
44
"private": true,
55
"scripts": {
66
"dev": "node build/script.mjs",

main/src/windowing/OverlayWindow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class OverlayWindow {
4949
if (process.platform === "linux") {
5050
windowOpts.skipTaskbar = true;
5151
windowOpts.focusable = true;
52-
windowOpts.type = 'notification'; // Best balance of focus handling and stability
52+
windowOpts.type = "notification"; // Best balance of focus handling and stability
5353
}
5454

5555
this.window = new BrowserWindow(windowOpts);

0 commit comments

Comments
 (0)