Skip to content

Commit

Permalink
V 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pulce committed Jul 9, 2017
1 parent 12efe41 commit 47cd401
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions app/src/main/assets/stations.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Patscherkofel;http://www.wetteronline.de/aktuelles-wetter?gid=11126
Zugspitze;http://www.wetteronline.de/aktuelles-wetter?gid=10961
Südtirol;http://www.provinz.bz.it/wetter/hoehenwindstationen.asp
Südtirol;http://wetter.provinz.bz.it/hoehenwindstationen.asp
Wallberg;http://wetterstationen.meteomedia.de/messnetz/wettergrafik/109760.png
Brauneck;http://www.lawinenwarndienst-bayern.de/download/messdaten/tagesgrafiken/bybewind.png
Blomberg;http://data.snowreporter.net/windreporter/plugins/diagramme/station_1004/windrichtung.php?hours=5&kmh=0
Expand All @@ -9,5 +9,4 @@ Seegrube;https://apps.tirol.gv.at/lwd/grafiken/540/standard/tag/seegrube.png
Schlick;https://apps.tirol.gv.at/lwd/grafiken/540/standard/tag/schlickeralm.png
Hohe Munde;https://apps.tirol.gv.at/lwd/grafiken/540/standard/tag/hohemunde.png
Wasserkuppe;http://www.wetterdienst.de/Europawetter/Wasserkuppe~2813735/Aktuell/
Föhnalarm;http://www.wetteralarm.at/uploads/pics/uwz-at_foehn_de.png
Zillertal;http://human:[email protected]/alptherm/Bilder/gg093.png
Föhnalarm;http://www.wetteralarm.at/uploads/pics/uwz-at_foehn_de.png
3 changes: 2 additions & 1 deletion app/src/main/java/com/windnow/Station.java
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,9 @@ private static ArrayList<String> parseWC(Document doc) throws Exception {
private static ArrayList<String> parseBZ(Document doc) throws Exception {
ArrayList<String> patschText = new ArrayList<>();
Elements tableElements = doc
.select("table[class=avalanches-stations]:contains(Messstationen)");
.select("table[class=avalanches-stations tbl_bezirkwetter table table-striped]:contains(Messstationen)");
// Headers
Log.d("BZ Elements", "" + tableElements.size());
ArrayList<String> searchers = new ArrayList<>();
searchers.add("dd");
searchers.add("ff");
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ allprojects {
}
project.ext {
myApplicationID="com.windnow"
myVersionCode=13
myVersionNumber="2.2.3"
myVersionCode=14
myVersionNumber="2.2.4"
myMinSdkVersion=8
myTargetSdkVersion=23
myCompileSdkVersion=23
Expand Down

0 comments on commit 47cd401

Please sign in to comment.