Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxme committed Jan 11, 2016
1 parent 8c839cc commit 260ce85
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion WordPressAnalytics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
buildToolsVersion "23.0.2"

defaultConfig {
versionName "1.1.0"
versionName "1.2.0"
minSdkVersion 14
targetSdkVersion 23
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,13 +430,13 @@ private AnalyticsTrackerMixpanelInstructionsForStat instructionsForStat(
mixpanelInstructionsForEventName("Editor - Toggled New Editor Off");
instructions.setPeoplePropertyToValue("enabled_new_editor", true);
break;
case EDITOR_UPDLOAD_MEDIA_FAILED:
case EDITOR_UPLOAD_MEDIA_FAILED:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Editor - Upload Media Failed");
instructions.setSuperPropertyAndPeoplePropertyToIncrement("number_of_times_editor_upload_media_failed");
instructions.setCurrentDateForPeopleProperty("last_time_editor_upload_media_failed");
break;
case EDITOR_UPDLOAD_MEDIA_RETRIED:
case EDITOR_UPLOAD_MEDIA_RETRIED:
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
mixpanelInstructionsForEventName("Editor - Retried Uploading Media");
instructions.setSuperPropertyAndPeoplePropertyToIncrement("number_of_times_editor_retried_uploading_media");
Expand Down Expand Up @@ -966,4 +966,3 @@ public void incrementSessionCount() {
editor.apply();
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ public void track(AnalyticsTracker.Stat stat, Map<String, ?> properties) {
case EDITOR_TOGGLED_ON:
eventName = "editor_toggled_on";
break;
case EDITOR_UPDLOAD_MEDIA_FAILED:
case EDITOR_UPLOAD_MEDIA_FAILED:
eventName = "editor_upload_media_failed";
break;
case EDITOR_UPDLOAD_MEDIA_RETRIED:
case EDITOR_UPLOAD_MEDIA_RETRIED:
eventName = "editor_upload_media_retried";
break;
case EDITOR_CLOSED:
Expand Down

0 comments on commit 260ce85

Please sign in to comment.