Skip to content

Commit

Permalink
v3.0.2 - Fixes and code cleanup, version bumped
Browse files Browse the repository at this point in the history
  • Loading branch information
rt-bishop committed Mar 11, 2022
1 parent abb1bd4 commit de29781
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.rtbishop.look4sat"
minSdk 21
targetSdk 31
versionCode 300
versionName "3.0.0"
versionCode 302
versionName "3.0.2"
resConfigs "en,ru"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,19 @@ class MapFragment : Fragment(R.layout.fragment_map) {
private val minLat = MapView.getTileSystem().minLatitude
private val maxLat = MapView.getTileSystem().maxLatitude
private val trackPaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
strokeWidth = 2f
strokeWidth = 3f
style = Paint.Style.STROKE
color = Color.RED
strokeCap = Paint.Cap.ROUND
strokeJoin = Paint.Join.ROUND
}
private val footprintPaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
strokeWidth = 2f
strokeWidth = 3f
style = Paint.Style.FILL_AND_STROKE
color = Color.parseColor("#FFE082")
}
private val textPaint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
textSize = 32f
strokeWidth = 2f
textSize = 36f
style = Paint.Style.FILL
color = Color.parseColor("#CCFFFFFF")
setShadowLayer(3f, 3f, 3f, Color.BLACK)
Expand Down
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/302.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Various minor tweaks, refactoring and bug fixes
Added passes calculation progress indicator
Added satellite visibility param to map and radar
Added various additional satellite params to map
Swapped buy me a coffee platform for Ko-Fi
16 changes: 5 additions & 11 deletions fastlane/metadata/android/en-US/whatsnew/whatsnew-en-US
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
New simplified UI with a bottom app bar
Simplified satellite selection logic #76
Increased satellites visibility on the map
Fixed an issue with footprint rendering #36
Enabled smooth satellites scroll on the map
Added a function to clear the database #79
Restored manual location input functionality #40
Added data/position update progress indicators
Showing the number of satellites and transceivers
Fixed several crashes and memory leaks
Fixed an issue with messed up layouts #83
Various minor tweaks, refactoring and bug fixes
Added passes calculation progress indicator
Added satellite visibility param to map and radar
Added various additional satellite params to map
Swapped buy me a coffee platform for Ko-Fi

0 comments on commit de29781

Please sign in to comment.