Skip to content

Commit

Permalink
schedule updates, map icon
Browse files Browse the repository at this point in the history
  • Loading branch information
shortstack committed Aug 7, 2014
1 parent 45caad6 commit b9d3101
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion hackertracker/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="false"
android:name="com.shortstack.hackertracker.Application.HackerTrackerApplication">
<activity
android:name="com.shortstack.hackertracker.Activity.SplashActivity"
Expand Down
Binary file modified hackertracker/src/main/assets/hackertracker.sqlite
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class DatabaseAdapter extends SQLiteOpenHelper {
*/
public DatabaseAdapter(Context context) {

super(context, DB_NAME, null, 182);
super(context, DB_NAME, null, 183);
this.myContext = context;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ public void onClick(View v) {
// if not a speaker, hide speaker name
if (item.getType()!=Constants.TYPE_SPEAKER) {
nameText.setVisibility(View.GONE);
} else {
nameText.setText(item.getName());
}

// if speaker, show speaker type
Expand Down
Binary file modified hackertracker/src/main/res/drawable/crop_dcmap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b9d3101

Please sign in to comment.