Skip to content

Commit

Permalink
## 4.4.0.15
Browse files Browse the repository at this point in the history
* Bug Fixes
  * display the angle correctly for Grid  North when showing doghouses.
  • Loading branch information
takdeveloper committed Feb 10, 2022
1 parent 93bf001 commit 366e73c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Version History

## 4.4.0.15

* Bug Fixes
* display the angle correctly for Grid North when showing doghouses.

## 4.4.0.14

* Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion atak/ATAK/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.util.regex.Pattern
buildscript {

ext.ATAK_VERSION = "4.4.0"
ext.ATAK_VERSION_SUBMINOR = ".14"
ext.ATAK_VERSION_SUBMINOR = ".15"

ext.jacocoVersion = '0.8.5'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,9 @@ private void setBearingToNext() {
} else if (_northReference == NorthReference.TRUE) {
bearing = _bearingToNext;
} else {
bearing = ATAKUtilities.computeGridConvergence(_source.get(),
double gridConvergence = ATAKUtilities.computeGridConvergence(_source.get(),
_target.get());
bearing = AngleUtilities.wrapDeg(_bearingToNext - gridConvergence);
}
String bearingRepr = formatBearingString(bearing);
setMetaString(
Expand Down
Binary file modified depends/assimp-4.0.1-mod.tar.gz
Binary file not shown.
Binary file modified depends/gdal-2.4.4-mod.tar.gz
Binary file not shown.
Binary file modified depends/tinygltf-2.4.1-mod.tar.gz
Binary file not shown.
Binary file modified depends/tinygltfloader-0.9.5-mod.tar.gz
Binary file not shown.
Binary file modified pluginsdk.zip
Binary file not shown.

0 comments on commit 366e73c

Please sign in to comment.