diff --git a/platform/platform-impl/src/com/intellij/internal/statistic/BuildNumberUsageCollector.java b/platform/platform-impl/src/com/intellij/internal/statistic/BuildNumberUsageCollector.java new file mode 100644 index 000000000000..76bd4df184f1 --- /dev/null +++ b/platform/platform-impl/src/com/intellij/internal/statistic/BuildNumberUsageCollector.java @@ -0,0 +1,41 @@ +/* + * Copyright 2000-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.intellij.internal.statistic; + +import com.intellij.internal.statistic.beans.GroupDescriptor; +import com.intellij.internal.statistic.beans.UsageDescriptor; +import com.intellij.openapi.application.impl.ApplicationInfoImpl; +import org.jetbrains.annotations.NotNull; + +import java.util.Collections; +import java.util.Set; + +/** + * @author Ivan Chirkov + */ +public class BuildNumberUsageCollector extends UsagesCollector { + @NotNull + @Override + public Set getUsages() throws CollectUsagesException { + return Collections.singleton(new UsageDescriptor(ApplicationInfoImpl.getShadowInstance().getBuild().asString(), 1)); + } + + @NotNull + @Override + public GroupDescriptor getGroupId() { + return GroupDescriptor.create("application.build"); + } +} diff --git a/platform/platform-impl/src/com/intellij/internal/statistic/connect/StatisticsHttpClientSender.java b/platform/platform-impl/src/com/intellij/internal/statistic/connect/StatisticsHttpClientSender.java index 5da90c972433..292b6c4304b0 100644 --- a/platform/platform-impl/src/com/intellij/internal/statistic/connect/StatisticsHttpClientSender.java +++ b/platform/platform-impl/src/com/intellij/internal/statistic/connect/StatisticsHttpClientSender.java @@ -37,6 +37,7 @@ public class StatisticsHttpClientSender implements StatisticsDataSender { Response response = Request.Post(url).bodyForm(Form.form(). add("content", content). add("uuid", UpdateChecker.getInstallationUID(PropertiesComponent.getInstance())). + add("patch", String.valueOf(false)). add("ide", ApplicationNamesInfo.getInstance().getProductName()).build()).execute(); final HttpResponse httpResponse = response.returnResponse(); diff --git a/platform/platform-resources/src/META-INF/PlatformExtensions.xml b/platform/platform-resources/src/META-INF/PlatformExtensions.xml index 5bd41b391f08..3fb3e79886de 100644 --- a/platform/platform-resources/src/META-INF/PlatformExtensions.xml +++ b/platform/platform-resources/src/META-INF/PlatformExtensions.xml @@ -296,6 +296,7 @@ +