Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<tycho-use-project-settings>true</tycho-use-project-settings>
<tycho.scmUrl>scm:git:https://github.com/eclipse-tracecompass/org.eclipse.tracecompass</tycho.scmUrl>
<cbi-plugins.version>1.5.4</cbi-plugins.version>
<target-platform>tracecompass-e4.39</target-platform>
<target-platform>tracecompass-e4.40</target-platform>

<rcptt-version>2.8.1</rcptt-version>
<!-- Disable GTK3 because it's not quite usable yet and it can make the tests hang (bug in IcedTea http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1736) -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
org.eclipse.e4.ui.css.swt.theme/themeid=org.eclipse.e4.ui.css.theme.e4_default
org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = true
org.eclipse.ui/defaultPerspectiveId=org.eclipse.linuxtools.lttng2.kernel.ui.perspective
org.eclipse.help/HELP_DATA=help_data.xml
org.eclipse.help/HELP_DATA=help_data.xml
# check for updates every time Trace Compass starts. This should only be done in stable releases.
# https://bugs.eclipse.org/bugs/show_bug.cgi?id=499247
org.eclipse.equinox.p2.ui.sdk.scheduler/enabled=true
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
</configurations>

<repositories>
<repository location="https://download.eclipse.org/tracecompass/master/rcp-repository" name="" enabled="true" />
<repository location="https://download.eclipse.org/tracecompass/stable/rcp-repository" name="" enabled="true" />
</repositories>

<preferencesInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
</configurations>

<repositories>
<repository location="https://download.eclipse.org/tracecompass/master/rcp-repository" name="" enabled="true" />
<repository location="https://download.eclipse.org/tracecompass/stable/rcp-repository" name="" enabled="true" />
</repositories>

<preferencesInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
</configurations>

<repositories>
<repository location="https://download.eclipse.org/tracecompass/master/rcp-repository" name="" enabled="true" />
<repository location="https://download.eclipse.org/tracecompass/stable/rcp-repository" name="" enabled="true" />
</repositories>

<preferencesInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
</configurations>

<repositories>
<repository location="https://download.eclipse.org/tracecompass/master/rcp-repository" name="" enabled="true" />
<repository location="https://download.eclipse.org/tracecompass/stable/rcp-repository" name="" enabled="true" />
</repositories>

<preferencesInfo>
Expand Down
2 changes: 1 addition & 1 deletion rcp/org.eclipse.tracecompass.rcp.product/tracing.product
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
</configurations>

<repositories>
<repository location="https://download.eclipse.org/tracecompass/master/rcp-repository" name="" enabled="true" />
<repository location="https://download.eclipse.org/tracecompass/stable/rcp-repository" name="" enabled="true" />
</repositories>

<preferencesInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public class AddProjectNatureTest {
private static final String CUSTOMIZE_VIEW_DIALOG_TITLE_4_7 = "Filters and Customization";
private static final String CUSTOMIZE_VIEW_RESOURCES_FILTER = ".* resources";
private static final String CUSTOMIZE_VIEW_SHADOW_FILTER = "Trace Compass Shadow Projects";
private static final String OK_BUTTON = "OK";
private static final String APPLY_BUTTON = "Apply";

private static IWorkspaceRoot fWorkspaceRoot;
private static IProject fSomeProject;
Expand Down Expand Up @@ -249,6 +249,6 @@ private static void toggleFilters(boolean checked) {
item.toggleCheck();
}

shell.bot().button(OK_BUTTON).click();
shell.bot().button(APPLY_BUTTON).click();
}
}
Loading