Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated knowcode #7

Merged
merged 1 commit into from
Feb 4, 2021
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
Updated knowcode
updated knowcode samples with newer totalcross/knowcode release
  • Loading branch information
Iaggoq committed Feb 1, 2021
commit ae0ab670f724a46a0b891df813886b5cf1a1117a
4 changes: 2 additions & 2 deletions EasyUI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
<dependency>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-sdk</artifactId>
<version>6.1.1</version>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>com.totalcross.knowcode</groupId>
<artifactId>KnowCodeXML</artifactId>
<version>1.13</version>
<version>1.14</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions hello-knowcode/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<dependency>
<groupId>com.totalcross.knowcode</groupId>
<artifactId>KnowCodeXML</artifactId>
<version>1.13</version>
<version>1.14</version>
</dependency>
<dependency>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-sdk</artifactId>
<version>6.1.1</version>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>net.harawata</groupId>
Expand Down
6 changes: 3 additions & 3 deletions home-appliance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
<dependency>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-sdk</artifactId>
<version>6.1.1</version>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>com.totalcross.knowcode</groupId>
<artifactId>KnowCodeXML</artifactId>
<version>1.11</version>
<version>1.14</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-maven-plugin</artifactId>
<version>1.2.0</version>
<version>2.0.1</version>
<configuration>
<externalResources>
<externalResource>dht.py</externalResource>
Expand Down
4 changes: 2 additions & 2 deletions knowcode-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-sdk</artifactId>
<version>6.1.1</version>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>net.harawata</groupId>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>com.totalcross.knowcode</groupId>
<artifactId>KnowCodeXML</artifactId>
<version>1.13</version>
<version>1.14</version>
</dependency>


Expand Down
4 changes: 2 additions & 2 deletions medical-device/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-sdk</artifactId>
<version>6.1.1</version>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>net.harawata</groupId>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>com.totalcross.knowcode</groupId>
<artifactId>KnowCodeXML</artifactId>
<version>1.13</version>
<version>1.14</version>
</dependency>
</dependencies>
<pluginRepositories>
Expand Down
4 changes: 2 additions & 2 deletions printer-application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>com.totalcross</groupId>
<artifactId>totalcross-sdk</artifactId>
<version>6.1.1</version>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>net.harawata</groupId>
Expand All @@ -34,7 +34,7 @@
<dependency>
<groupId>com.totalcross.knowcode</groupId>
<artifactId>KnowCodeXML</artifactId>
<version>1.13</version>
<version>1.14</version>
</dependency>


Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.totalcross.knowcode.printer;

import com.totalcross.knowcode.XMLPresenter;
import com.totalcross.knowcode.parse.XMLPresenter;
import com.totalcross.knowcode.printer.copy.CopyXML;
import com.totalcross.knowcode.printer.print.PrintXML;
import com.totalcross.knowcode.printer.scan.ScanXML;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.totalcross.knowcode.printer;

import com.totalcross.knowcode.SlidingNavigator;
import com.totalcross.knowcode.parse.SlidingNavigator;
import totalcross.sys.Settings;
import totalcross.ui.MainWindow;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.totalcross.knowcode.printer.copy;

import com.totalcross.knowcode.XMLPresenter;
import com.totalcross.knowcode.parse.XMLPresenter;
import com.totalcross.knowcode.parse.XmlContainerFactory;
import com.totalcross.knowcode.parse.XmlContainerLayout;

Expand All @@ -9,7 +8,7 @@
public class CopyFinishingXML extends XMLPresenter {

public CopyFinishingXML() {
super(XmlContainerFactory.create("xml/COPY FINISHING.xml"));
super(XmlContainerFactory.create("layout/COPY FINISHING.xml"));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.totalcross.knowcode.printer.copy;

import com.totalcross.knowcode.XMLPresenter;
import com.totalcross.knowcode.parse.XMLPresenter;
import com.totalcross.knowcode.parse.XmlContainerFactory;
import com.totalcross.knowcode.parse.XmlContainerLayout;

Expand All @@ -10,7 +9,7 @@

public class CopyOptionsXML extends XMLPresenter {
public CopyOptionsXML() {
super(XmlContainerFactory.create("xml/COPY OPTIONS.xml"));
super(XmlContainerFactory.create("layout/COPY OPTIONS.xml"));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.totalcross.knowcode.printer.copy;

import com.totalcross.knowcode.XMLPresenter;
import com.totalcross.knowcode.parse.XMLPresenter;
import com.totalcross.knowcode.parse.XmlContainerFactory;
import com.totalcross.knowcode.parse.XmlContainerLayout;

Expand All @@ -9,7 +9,7 @@
public class CopyXML extends XMLPresenter {

public CopyXML() {
super(XmlContainerFactory.create("xml/COPY.xml"));
super(XmlContainerFactory.create("layout/COPY.xml"));
}

@Override
Expand Down
Loading