Skip to content

Commit 41fb877

Browse files
committed
#425 Fix Version number, copyright, dates
1 parent fb2127a commit 41fb877

File tree

53 files changed

+156
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+156
-96
lines changed

src/ca/mcgill/cs/jetuml/JetUML.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
public final class JetUML extends Application
4646
{
4747
@SuppressWarnings("exports")
48-
public static final Version VERSION = Version.create(3, 1);
48+
public static final Version VERSION = Version.create(3, 2);
4949

5050
private static HostServices aHostServices; // Required to open a browser page.
5151

src/ca/mcgill/cs/jetuml/JetUML.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ application.name=JetUML
33
application.icon=jet.png
44
application.file.name=JetUML Files
55
application.file.all=All Files
6-
application.copyright=Copyright © 2015-2020 McGill University
6+
application.copyright=Copyright © 2015-2021 McGill University
77
quotes.copyright=The quotes in the tooltip information are excerpts\n\
88
from the Unified Modeling Language Reference Manual,\n\
99
Second Edition. Copyright © 2005 by Pearson Education, Inc.

src/ca/mcgill/cs/jetuml/diagram/builder/ClassDiagramBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/DiagramBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/ObjectDiagramBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/SequenceDiagramBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/StateDiagramBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/UseCaseDiagramBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/constraints/ClassDiagramEdgeConstraints.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder.constraints;
2323

src/ca/mcgill/cs/jetuml/diagram/builder/constraints/Constraint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*******************************************************************************
22
* JetUML - A desktop application for fast UML diagramming.
33
*
4-
* Copyright (C) 2020 by McGill University.
4+
* Copyright (C) 2020, 2021 by McGill University.
55
*
66
* See: https://github.com/prmr/JetUML
77
*
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU General Public License
1919
* along with this program. If not, see http://www.gnu.org/licenses.
20-
*******************************************************************************/
20+
*******************************************************************************/
2121

2222
package ca.mcgill.cs.jetuml.diagram.builder.constraints;
2323

0 commit comments

Comments
 (0)