Skip to content

Commit d8e228e

Browse files
committed
New version
1 parent 225b9c0 commit d8e228e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<target name="-check-mavenmodules">
1212
<uptodate property="mavenmodules.uptodate"
13-
srcfile="maven-wrapper/target/nbm/maven-wrapper-1.19.nbm"
13+
srcfile="maven-wrapper/target/nbm/maven-wrapper-1.20.nbm"
1414
targetfile="mavenmodules"/>
1515
</target>
1616

maven-wrapper/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>fi.helsinki.cs.tmc</groupId>
66
<artifactId>maven-wrapper</artifactId>
7-
<version>1.19</version>
7+
<version>1.20</version>
88
<packaging>nbm</packaging>
99

1010
<name>TMC Maven Wrapper</name>
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>${project.groupId}</groupId>
4848
<artifactId>core</artifactId>
49-
<version>0.10.3-SNAPSHOT</version>
49+
<version>0.10.4-SNAPSHOT</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>${project.groupId}</groupId>

tmc-plugin/manifest.mf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ OpenIDE-Module-Requires:
66
org.openide.windows.IOProvider,
77
org.openide.windows.WindowManager
88
OpenIDE-Module-Install: fi/helsinki/cs/tmc/actions/TmcModuleInstall.class
9-
OpenIDE-Module-Specification-Version: 1.1.12
9+
OpenIDE-Module-Specification-Version: 1.1.13

tmc-plugin/src/fi/helsinki/cs/tmc/actions/CheckForOneDrive.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void run() {
1717

1818
StringBuilder htmlBuilder = new StringBuilder();
1919
htmlBuilder.append("<html><body>");
20-
htmlBuilder.append("<h1>OneDrive does not work with Netbeans</h1>");
20+
htmlBuilder.append("<h1>OneDrive does not work with the Test My Code plugin for Netbeans</h1>");
2121
htmlBuilder.append("<div>Many students have had a problem when they have their Netbeans project folder in OneDrive, which results in submissions failing on the server.<br>The problem can be solved by moving the project folder out of OneDrive as follows:</div>");
2222
htmlBuilder.append("<ol>");
2323
htmlBuilder.append("<li>In Netbeans, close all the exercises by right clicking them on the \"Projects\"-sidebar on the left and selecting \"Close project\".<br>You can select multiple exercises at once by pressing down the shift button on your keyboard and while pressing the button, selecting the first and the last exercise on the list.</li>");

tmc-plugin/src/fi/helsinki/cs/tmc/ui/PreferencesPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ private void folderChooserBtnActionPerformed(java.awt.event.ActionEvent evt) {//
495495

496496
final String projectDefaultFolderPath = projectDefaultFolder.getAbsolutePath();
497497

498-
final String errorMsg = "OneDrive doesn't work with Netbeans.\nPlease use another folder for your projects.";
498+
final String errorMsg = "OneDrive doesn't work with the Test My Code plugin for Netbeans.\nPlease use another folder for your projects.";
499499

500500
if (projectDefaultFolderPath.toLowerCase().contains("onedrive")) {
501501
dialogs.displayError(errorMsg);

0 commit comments

Comments
 (0)