Skip to content

Commit

Permalink
## 4.5.1.6
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 Oct 18, 2024
2 parents 896f9a2 + 254d6b8 commit fb55295
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 17 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.5.1.6

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

## 4.5.1.5

* 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 @@ -26,7 +26,7 @@ buildscript {
apply from: '../../gradle/versions.gradle', to: project

ext.ATAK_VERSION = "4.5.1"
ext.ATAK_VERSION_SUBMINOR = ".5"
ext.ATAK_VERSION_SUBMINOR = ".6"

ext.isDevKitEnabled = { ->
return getProperty('takRepoMavenUrl', null) != null &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,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
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,14 @@ public String serializeToXML(LoadoutItemModel loadout) {
}

@Override
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
public void onSharedPreferenceChanged(final SharedPreferences prefs, final String key) {

if (key == null)
return;

if (key.startsWith(LOADOUT_PREFIX)) {
if (key.equals(PREF_SELECTED_LOADOUT)) {
setCurrentLoadout(_prefs.get(key, DEFAULT_LOADOUT_UID));
} else if (key.startsWith(LOADOUT_PREFIX)) {

// Check if this change is in response to a local edit
synchronized (_prefEditing) {
Expand Down Expand Up @@ -293,7 +295,7 @@ public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
}
}
}

/**
* Persist or remove a loadout to/from preferences
* @param loadout Loadout
Expand Down
4 changes: 2 additions & 2 deletions depends/LASzip-3.4.3-mod.tar.gz
Git LFS file not shown
4 changes: 2 additions & 2 deletions depends/assimp-4.0.1-mod.tar.gz
Git LFS file not shown
4 changes: 2 additions & 2 deletions depends/gdal-2.4.4-mod.tar.gz
Git LFS file not shown
4 changes: 2 additions & 2 deletions depends/libLAS-1.8.2-mod.tar.gz
Git LFS file not shown
4 changes: 2 additions & 2 deletions depends/tinygltf-2.4.1-mod.tar.gz
Git LFS file not shown
4 changes: 2 additions & 2 deletions depends/tinygltfloader-0.9.5-mod.tar.gz
Git LFS file not shown
Binary file modified pluginsdk.zip
Binary file not shown.

0 comments on commit fb55295

Please sign in to comment.