Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Commit

Permalink
Release v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Apr 17, 2021
1 parent ff8f92c commit 904a764
Show file tree
Hide file tree
Showing 6 changed files with 630 additions and 590 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A Path of Exile helper which currently provides the following shortcuts which ar
Lunaris automatically updates itself, so you only have to download it once.
You do **not** need to install Java.

[Click here to download](https://github.com/mtricht/lunaris/releases/download/v0.7.0/lunaris-0.7.0-win64.zip), extract it anywhere you'd like and open `lunaris.bat`.
[Click here to download](https://github.com/mtricht/lunaris/releases/download/v0.7.1/lunaris-0.7.1-win64.zip), extract it anywhere you'd like and open `lunaris.bat`.

Having trouble? [Open an issue](https://github.com/mtricht/lunaris/issues/new).

Expand Down
4 changes: 2 additions & 2 deletions autoupdater.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.1" encoding="UTF-8" standalone="yes"?>

<!-- Generated by update4j. Licensed under Apache Software License 2.0 -->
<configuration timestamp="2021-01-15T17:40:36.268910100Z">
<configuration timestamp="2021-04-17T11:08:50.993435400Z">
<properties>
<property key="default.launcher.main.class" value="dev.tricht.lunaris.Lunaris"/>
</properties>
<files>
<file uri="https://github.com/mtricht/lunaris/releases/download/v0.7.0/lunaris-0.7.0.jar" path="${user.dir}/app/lunaris.jar" size="24997816" checksum="1a54ebb6" classpath="true" ignoreBootConflict="true"/>
<file uri="https://github.com/mtricht/lunaris/releases/download/v0.7.1/lunaris-0.7.1.jar" path="${user.dir}/app/lunaris.jar" size="24997857" checksum="941970dd" classpath="true" ignoreBootConflict="true"/>
</files>
</configuration>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dev.tricht.lunaris</groupId>
<artifactId>lunaris</artifactId>
<version>0.7.1-SNAPSHOT</version>
<version>0.7.2-SNAPSHOT</version>

<properties>
<maven.compiler.target>1.9</maven.compiler.target>
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ Run in developer console:

```javascript
var maps = [];
document.querySelector("table").querySelectorAll("tr:not(.tablesorter-headerRow)").forEach(tr => {
document.querySelectorAll("table > tbody > tr").forEach(tr => {
var map = {};
map.name = tr.querySelector("td:nth-child(3) a").innerHTML;
map.name = tr.querySelector("td:nth-child(4) a").innerHTML;
map.bosses = [];
var bosses = tr.querySelectorAll("td:nth-child(5) a");
var bosses = tr.querySelectorAll("td:nth-child(6) a");
if (typeof bosses !== undefined) {
bosses.forEach(boss => {
if (map.bosses.indexOf(boss.innerHTML) === -1) {
map.bosses.push(boss.innerHTML);
}
});
}
map.region = tr.querySelector("td:nth-child(6) a") !== undefined ? tr.querySelector("td:nth-child(6) a").innerHTML : "";
map.region = tr.querySelector("td:nth-child(7) a") !== undefined ? tr.querySelector("td:nth-child(7) a").innerHTML : "";
maps.push(map);
});
console.log(maps);
Expand Down
Loading

0 comments on commit 904a764

Please sign in to comment.