Skip to content

Commit b8438d7

Browse files
update graphics
1 parent ddcba32 commit b8438d7

File tree

17 files changed

+6
-9
lines changed

17 files changed

+6
-9
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<h1>WiFi Analyzer <img src="images/icon.png" alt="Application Icon" width="45" height="45"></h1>
22

3-
## News:
4-
- WiFi Analyzer rated as one of the 15 most useful apps for Android by [Android Authority](https://www.androidauthority.com/most-useful-apps-for-android-603100/amp)
5-
- [Gizmodo](https://gizmodo.com/the-best-wifi-analyzer-apps-to-troubleshoot-your-networ-1843957301) rates WiFi Analyzer one of The Best Apps for Fixing Your WiFi
6-
73
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" alt="Get it on Google Play" height="80">](https://play.google.com/store/apps/details?id=com.vrem.wifianalyzer)
84
[<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/repository/browse/?fdid=com.vrem.wifianalyzer)
95
[<img src="https://images-na.ssl-images-amazon.com/images/G/01/mobile-apps/devportal2/res/images/amazon-underground-app-us-white.png" alt="Get it at Amazon Store" height="70">
@@ -30,6 +26,7 @@ This is the official repository of WiFi Analyzer.
3026
* Graph Access Point signal strength over time
3127
* Analyze WiFi networks to rate channels
3228
* HT/VHT Detection - 40/80/160MHz (Requires Android OS 6+)
29+
* 2.4 GHz, 5 GHz and 6 GHz WiFi bands (Requires hardware support)
3330
* Access Point view complete or compact
3431
* Estimated Distance to the Access Points
3532
* Export access points details

app/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Build Properties
2-
#Thu Dec 23 12:18:58 EST 2021
2+
#Sat Dec 25 09:47:27 EST 2021
33
version_minor=0
44
version_store=57
55
version_patch=5
6-
version_build=8
6+
version_build=9
77
version_major=3

app/src/main/kotlin/com/vrem/wifianalyzer/wifi/band/WiFiChannelCountryGHZ5.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ internal class WiFiChannelCountryGHZ5 {
8080

8181

8282
fun findChannels(countryCode: String): SortedSet<Int> =
83-
channels.subtract(exclude.flatMap { it.find(countryCode.toCapitalize(Locale.getDefault())) })
84-
.union(include.flatMap { it.find(countryCode.toCapitalize(Locale.getDefault())) })
83+
channels.subtract(exclude.flatMap { it.find(countryCode.toCapitalize(Locale.getDefault())) }.toSet())
84+
.union(include.flatMap { it.find(countryCode.toCapitalize(Locale.getDefault())) }.toSet())
8585
.toSortedSet()
8686

8787
}

app/src/main/kotlin/com/vrem/wifianalyzer/wifi/graphutils/GraphViewBuilder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,6 @@ class GraphViewBuilder(private val numHorizontalLabels: Int,
139139
get() = if (maximumY > MAX_Y || maximumY < MIN_Y_HALF) MAX_Y_DEFAULT else maximumY
140140

141141
val layoutParams: ViewGroup.LayoutParams =
142-
ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)
142+
ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)
143143

144144
}
21.6 KB
Loading
2.73 KB
Loading
2.79 KB
Loading
1.88 KB
Loading
2.22 KB
Loading
2.63 KB
Loading

0 commit comments

Comments
 (0)