Skip to content

Commit

Permalink
upd readme & misc
Browse files Browse the repository at this point in the history
  • Loading branch information
SnosMe committed Mar 16, 2020
1 parent ae0c67d commit 6855318
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

| Download | Automatic update | Startup time |
|----------|------------------|--------------|
| [Windows (installer)](https://github.com/SnosMe/awakened-poe-trade/releases/download/v0.12.0/Awakened-PoE-Trade-Setup-0.12.0.exe) | :heavy_check_mark: | Fast |
| [Windows (portable)](https://github.com/SnosMe/awakened-poe-trade/releases/download/v0.12.0/Awakened-PoE-Trade-0.12.0.exe) | :heavy_multiplication_x: | Slow |
| [Linux](https://github.com/SnosMe/awakened-poe-trade/releases/download/v0.12.0/Awakened-PoE-Trade-0.12.0.AppImage) | :heavy_check_mark: | Fast |
| [Windows (installer)](https://github.com/SnosMe/awakened-poe-trade/releases/download/v0.13.0/Awakened-PoE-Trade-Setup-0.13.0.exe) | :heavy_check_mark: | Fast |
| [Windows (portable)](https://github.com/SnosMe/awakened-poe-trade/releases/download/v0.13.0/Awakened-PoE-Trade-0.13.0.exe) | :heavy_multiplication_x: | Slow |
| [Linux](https://github.com/SnosMe/awakened-poe-trade/releases/download/v0.13.0/Awakened-PoE-Trade-0.13.0.AppImage) | :heavy_check_mark: | Fast |

## Tool showcase

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awakened-poe-trade",
"version": "0.12.0",
"version": "0.13.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion showcase/total-000-flat-square.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/components/CheckedItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ export default {
showPredictedPrice () {
return this.item.rarity === ItemRarity.Rare &&
this.item.category !== ItemCategory.Map &&
this.item.category !== ItemCategory.ItemisedMonster
this.item.category !== ItemCategory.ItemisedMonster &&
!(this.item.category === ItemCategory.Jewel && this.item.baseType.endsWith(' Cluster Jewel'))
}
},
methods: {
Expand Down
8 changes: 4 additions & 4 deletions src/main/positioning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export function showWindow (willLocked?: boolean) {

isWindowShown = true
win.showInactive()
// @TODO: test on linux
win.moveTop()
if (!willLocked) {
// alternative: win.setAlwaysOnTop(true, 'screen-saver')
}
// alternative
// if (!willLocked) {
// win.setAlwaysOnTop(true, 'screen-saver')
// }
}

function hideWindow (willShow?: boolean, willLocked?: boolean) {
Expand Down
4 changes: 4 additions & 0 deletions src/main/tray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ function rebuildContextMenu () {
}
},
{ type: 'separator' },
{
label: `APT v${app.getVersion()}`,
enabled: false
},
{
label: 'Check for updates',
click: () => {
Expand Down

0 comments on commit 6855318

Please sign in to comment.