Skip to content

Commit

Permalink
Miscellaneous code fixes and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
trife authored and trife committed Sep 14, 2015
1 parent d571b07 commit d7d93cf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@

public class Constants {
public static final String RESOURCEPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/resources";
+ "/fieldBook/resources";

public static String PLOTDATAPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/plot_data";
+ "/fieldBook/plot_data";

public static String TRAITPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/trait";
+ "/fieldBook/trait";

public static String FIELDIMPORTPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/field_import";
+ "/fieldBook/field_import";

public static String FIELDEXPORTPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/field_export";
+ "/fieldBook/field_export";

public static final File MPATH = new File(Environment.getExternalStorageDirectory()
+ "/FieldBook");
+ "/fieldBook");

public static String BACKUPPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/database";
+ "/fieldBook/database";

public static String ERRORPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/errors";
+ "/fieldBook/errors";

public static String UPDATEPATH = Environment.getExternalStorageDirectory()
+ "/FieldBook/updates";
+ "/fieldBook/updates";

}
1 change: 0 additions & 1 deletion Field Book/app/src/main/res/layout/nav_header.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/nameLabel"
android:text="Trevor Rife"
android:paddingLeft="15dp"
android:textSize="@dimen/text_size_large"
android:textStyle="bold"
Expand Down
3 changes: 2 additions & 1 deletion Field Book/app/src/main/res/raw/changelog_releases.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
21/3.0.0
Overhauled interface
Updated user interface
Added support for phones
Reorder traits with drag and drop
Fixed a bug with the cursor in text traits
Added no date button
Renamed Setup to Profile
Updated Field Book manual

20/2.4.5
Fixed a bug causing crashes on startup
Expand Down
3 changes: 3 additions & 0 deletions Field Book/app/src/main/res/raw/dev_changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
39
Miscellaneous code fixes and cleanup

38
Changed no date button to save date in addition to setting to Jan 1 2000
Renamed Setup to Profile
Expand Down

0 comments on commit d7d93cf

Please sign in to comment.