Skip to content

Commit

Permalink
Release: Removed problematic views for the release, update ReleaseNotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurbenemann committed Mar 7, 2014
1 parent 3429f33 commit 97e61f3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ public void onCreate(Bundle savedInstanceState) {
missionListFragment = (EditorListFragment) fragmentManager
.findFragmentById(R.id.missionFragment1);
infoView = (TextView) findViewById(R.id.editorInfoWindow);

infoView.setVisibility(View.GONE); //TODO Remove after fixing #676

/*
* On phone, this view will be null causing the item detail to be shown as a dialog.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public void onDroneEvent(DroneEventsType event, Drone drone) {

public void onFailsafeChanged(Drone drone) {
if (drone.state.isFailsafe()) {
failsafeTextView.setVisibility(View.VISIBLE);
//failsafeTextView.setVisibility(View.VISIBLE); // TODO re-enable after #677 is fixed
} else {
failsafeTextView.setVisibility(View.GONE);
}
Expand Down
9 changes: 8 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Releases Notes
These notes document what was removed from a Release Candidate (RC), which is build from a corresponding version of the program. They are not comulative, and express the diff from the master branch.
These notes document what was removed from a Release Candidate (RC), which is build from a corresponding version of the program. These are not comulative between program versions (they can be between RCs), and express the diff from the master branch.

## Droidplanner v2.2.3 RC1
* On the DroneSetup pane removed the Help, Tuning and Calibration Fragments
* Removed unfinished/untested missionItems (Only Waypoint, Takeoff and Land are allowed)
* Disabled the Help videos
* Removed Failsafe warnings
* Removed distance/time view at the editor screen

## Droidplanner v2.2.2 RC1
* On the DroneSetup pane removed the Help, Tuning and Calibration Fragments
Expand Down

0 comments on commit 97e61f3

Please sign in to comment.