Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
Conflicts:
	DroidPlanner/src/org/droidplanner/activities/ConfigurationActivity.java
	DroidPlanner/src/org/droidplanner/activities/helpers/HelpActivity.java
  • Loading branch information
arthurbenemann committed Jan 22, 2014
2 parents 769fc06 + dbe012a commit a63892f
Show file tree
Hide file tree
Showing 155 changed files with 5,279 additions and 3,015 deletions.
28 changes: 26 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
## Droidplanner v2.0.1
* Cleaning minor bugs (#581)
* Fixed typo errors(#589)
* Improved Radio setup (#593,#596)
* Removing unused assets (#594,#601)
* Small mavlink library fix (#585)
* Improved Guided mode (#595)
* Rescrict disctribution to tablets only (#597)
* Dialog for BlueTooth device selection(#598)
* Fixed typos on source-code (#605)

## Droidplanner v2.0.0
* Renamed package to org.droidplanner
* Redesing of the mission handling code
* Completely redesigned graphical user interface
* Easy to use Home, Land, and Loiter buttons
* New Artificial Horizon
* Added telemetry to the ActionBar
* Mode detail fragment
* New guided mode with changeable altitude
* New planning screen for quick mission generation
* Easy and powerful mission editing tools
* New mission listing fragment
* Drone Setup screen with multiple tabs like:Radio,Checklist,Parameters
* Improved BlueTooth Connection

## Droidplanner v1.2.0
* Planning: renamed column header - #348
Expand Down Expand Up @@ -28,7 +52,7 @@
* Reduce the chance of unintentionally deleting waypoints while scrolling

## Droidplanner v1.0.0
* No new changes to the codebase, just setting a milestone
* No new changes to the codebase, just setting a milestone

## Droidplanner v0.16.0
* Bluetooth Support
Expand Down Expand Up @@ -104,7 +128,7 @@
## Droidplanner v0.11.0
* New Chart screen
* HUD code clean-up
* Activitys clean-up
* Activities clean-up
* All markers are using the markerManager
* Colorful markers in the planning screen

Expand Down
31 changes: 17 additions & 14 deletions DroidPlanner/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.droidplanner"
android:versionCode="56"
android:versionCode="57"
android:versionName="please run version.sh to get the version name">

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />

<supports-screens
android:requiresSmallestWidthDp="540"/>

<permission
android:name=".permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
Expand Down Expand Up @@ -69,9 +72,9 @@

<service android:name=".service.MAVLinkService" >
</service>

<activity
android:name=".activitys.FlightActivity"
android:name=".activities.FlightActivity"
android:launchMode="singleTask" >

<!-- Launcher Intent -->
Expand All @@ -91,14 +94,14 @@
android:resource="@xml/device_filter" />
</activity>
<activity
android:name=".activitys.EditorActivity"
android:name=".activities.EditorActivity"
android:label="@string/editor"
android:parentActivityName=".activitys.FlightActivity" >
android:parentActivityName=".activities.FlightActivity" >

<!-- Parent activity meta-data to support API level 7+ -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".activitys.FlightActivity" />
android:value=".activities.FlightActivity" />

<!-- Intent for opening mission files -->
<intent-filter>
Expand All @@ -110,26 +113,26 @@
</intent-filter>
</activity>
<activity
android:name=".activitys.ConfigurationActivity"
android:name=".activities.ConfigurationActivity"
android:windowSoftInputMode="adjustPan"
android:theme="@style/Theme.PageIndicatorDefaults"
android:label="@string/configuration"
android:parentActivityName=".activitys.FlightActivity" >
android:label="@string/menu_drone_setup"
android:parentActivityName=".activities.FlightActivity" >

<!-- Parent activity meta-data to support API level 7+ -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".activitys.FlightActivity" />
android:value=".activities.FlightActivity" />
</activity>
<activity android:name=".activitys.SettingsActivity"
<activity android:name=".activities.SettingsActivity"
android:label="@string/settings"
android:parentActivityName=".activitys.FlightActivity">
android:parentActivityName=".activities.FlightActivity">

<!-- Parent activity meta-data to support API level 7+ -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".activitys.FlightActivity" />
android:value=".activities.FlightActivity" />
</activity>
</application>

</manifest>
</manifest>
Binary file removed DroidPlanner/res/drawable-hdpi/button_air_speed.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-hdpi/button_change_alt.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-hdpi/button_climbrate.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-hdpi/button_ground_speed.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-mdpi/button_air_speed.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-mdpi/button_change_alt.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-mdpi/button_climbrate.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-mdpi/button_ground_speed.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-xhdpi/button_air_speed.png
Binary file not shown.
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-xhdpi/button_climbrate.png
Binary file not shown.
Binary file removed DroidPlanner/res/drawable-xhdpi/button_ground_speed.png
Binary file not shown.
Binary file added DroidPlanner/res/drawable-xhdpi/pitch_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DroidPlanner/res/drawable-xhdpi/roll_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DroidPlanner/res/drawable-xhdpi/yaw_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions DroidPlanner/res/drawable/air_speed_bg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="#009ada"/>

<corners android:radius="8dp"/>

</shape>
10 changes: 10 additions & 0 deletions DroidPlanner/res/drawable/alt_change_bg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="#3bb6e3"/>

<corners android:radius="8dp"/>

</shape>
10 changes: 10 additions & 0 deletions DroidPlanner/res/drawable/climb_rate_bg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="#9eb0b7"/>

<corners android:radius="8dp"/>

</shape>
10 changes: 10 additions & 0 deletions DroidPlanner/res/drawable/ground_speed_bg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="#00a27e"/>

<corners android:radius="8dp"/>

</shape>
10 changes: 10 additions & 0 deletions DroidPlanner/res/drawable/round_rect_bg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="#b0000000"/>
<corners
android:radius="200dp"/>

</shape>
Loading

0 comments on commit a63892f

Please sign in to comment.