Skip to content

Commit a63892f

Browse files
Merge branch 'master' into release
Conflicts: DroidPlanner/src/org/droidplanner/activities/ConfigurationActivity.java DroidPlanner/src/org/droidplanner/activities/helpers/HelpActivity.java
2 parents 769fc06 + dbe012a commit a63892f

File tree

155 files changed

+5279
-3015
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+5279
-3015
lines changed

ChangeLog.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1+
## Droidplanner v2.0.1
2+
* Cleaning minor bugs (#581)
3+
* Fixed typo errors(#589)
4+
* Improved Radio setup (#593,#596)
5+
* Removing unused assets (#594,#601)
6+
* Small mavlink library fix (#585)
7+
* Improved Guided mode (#595)
8+
* Rescrict disctribution to tablets only (#597)
9+
* Dialog for BlueTooth device selection(#598)
10+
* Fixed typos on source-code (#605)
11+
112
## Droidplanner v2.0.0
13+
* Renamed package to org.droidplanner
14+
* Redesing of the mission handling code
15+
* Completely redesigned graphical user interface
16+
* Easy to use Home, Land, and Loiter buttons
17+
* New Artificial Horizon
18+
* Added telemetry to the ActionBar
19+
* Mode detail fragment
20+
* New guided mode with changeable altitude
21+
* New planning screen for quick mission generation
22+
* Easy and powerful mission editing tools
23+
* New mission listing fragment
24+
* Drone Setup screen with multiple tabs like:Radio,Checklist,Parameters
25+
* Improved BlueTooth Connection
226

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

3054
## Droidplanner v1.0.0
31-
* No new changes to the codebase, just setting a milestone
55+
* No new changes to the codebase, just setting a milestone
3256

3357
## Droidplanner v0.16.0
3458
* Bluetooth Support
@@ -104,7 +128,7 @@
104128
## Droidplanner v0.11.0
105129
* New Chart screen
106130
* HUD code clean-up
107-
* Activitys clean-up
131+
* Activities clean-up
108132
* All markers are using the markerManager
109133
* Colorful markers in the planning screen
110134

DroidPlanner/AndroidManifest.xml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="org.droidplanner"
4-
android:versionCode="56"
4+
android:versionCode="57"
55
android:versionName="please run version.sh to get the version name">
66

77
<uses-sdk
88
android:minSdkVersion="14"
99
android:targetSdkVersion="18" />
1010

11+
<supports-screens
12+
android:requiresSmallestWidthDp="540"/>
13+
1114
<permission
1215
android:name=".permission.MAPS_RECEIVE"
1316
android:protectionLevel="signature" />
@@ -69,9 +72,9 @@
6972

7073
<service android:name=".service.MAVLinkService" >
7174
</service>
72-
75+
7376
<activity
74-
android:name=".activitys.FlightActivity"
77+
android:name=".activities.FlightActivity"
7578
android:launchMode="singleTask" >
7679

7780
<!-- Launcher Intent -->
@@ -91,14 +94,14 @@
9194
android:resource="@xml/device_filter" />
9295
</activity>
9396
<activity
94-
android:name=".activitys.EditorActivity"
97+
android:name=".activities.EditorActivity"
9598
android:label="@string/editor"
96-
android:parentActivityName=".activitys.FlightActivity" >
99+
android:parentActivityName=".activities.FlightActivity" >
97100

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

103106
<!-- Intent for opening mission files -->
104107
<intent-filter>
@@ -110,26 +113,26 @@
110113
</intent-filter>
111114
</activity>
112115
<activity
113-
android:name=".activitys.ConfigurationActivity"
116+
android:name=".activities.ConfigurationActivity"
114117
android:windowSoftInputMode="adjustPan"
115118
android:theme="@style/Theme.PageIndicatorDefaults"
116-
android:label="@string/configuration"
117-
android:parentActivityName=".activitys.FlightActivity" >
119+
android:label="@string/menu_drone_setup"
120+
android:parentActivityName=".activities.FlightActivity" >
118121

119122
<!-- Parent activity meta-data to support API level 7+ -->
120123
<meta-data
121124
android:name="android.support.PARENT_ACTIVITY"
122-
android:value=".activitys.FlightActivity" />
125+
android:value=".activities.FlightActivity" />
123126
</activity>
124-
<activity android:name=".activitys.SettingsActivity"
127+
<activity android:name=".activities.SettingsActivity"
125128
android:label="@string/settings"
126-
android:parentActivityName=".activitys.FlightActivity">
129+
android:parentActivityName=".activities.FlightActivity">
127130

128131
<!-- Parent activity meta-data to support API level 7+ -->
129132
<meta-data
130133
android:name="android.support.PARENT_ACTIVITY"
131-
android:value=".activitys.FlightActivity" />
134+
android:value=".activities.FlightActivity" />
132135
</activity>
133136
</application>
134137

135-
</manifest>
138+
</manifest>
-602 Bytes
Binary file not shown.
-877 Bytes
Binary file not shown.
-639 Bytes
Binary file not shown.
-630 Bytes
Binary file not shown.
-416 Bytes
Binary file not shown.
-599 Bytes
Binary file not shown.
-465 Bytes
Binary file not shown.
-439 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)