Skip to content

Commit

Permalink
Merge pull request #18 from nextbreakpoint/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
nextbreakpoint authored Apr 29, 2019
2 parents e240bcd + 6f17590 commit d5635c8
Show file tree
Hide file tree
Showing 480 changed files with 992 additions and 980 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NextFractal 2.1.0
# NextFractal 2.1.1

Copyright 2015-2018 Andrea Medeghini
Copyright 2015-2019 Andrea Medeghini

NextFractal is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Expand Down
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<project name="NextFractal">
<property environment="env" />
<property name="maven.home" value="${env.M2_HOME}" />
<property name="nextfractal.version" value="2.1.0" />
<property name="nextfractal.year" value="2018" />
<property name="nextfractal.version" value="2.1.1" />
<property name="nextfractal.year" value="2019" />
<property name="nextfractal.folder" value="NextFractal" />
<property name="mainmodule" value="com.nextbreakpoint.nextfractal.main" />
<macrodef name="maven">
Expand Down
2 changes: 1 addition & 1 deletion com.nextbreakpoint.nextfractal.contextfree.javafx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.nextbreakpoint</groupId>
<artifactId>com.nextbreakpoint.nextfractal</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</parent>
<artifactId>com.nextbreakpoint.nextfractal.contextfree.javafx</artifactId>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down Expand Up @@ -62,7 +62,7 @@ public Pane createEditorPane(EventBus eventBus, Session session) {

@Override
public Pane createRenderPane(EventBus eventBus, Session session, int width, int height) {
return new RenderPane(session, eventBus, width, height, 1, 1);
return new RenderPane((ContextFreeSession) session, eventBus, width, height, 1, 1);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down Expand Up @@ -91,13 +91,13 @@ public class RenderPane extends BorderPane {
private volatile boolean hasError;
private ContextFreeSession contextFreeSession;

public RenderPane(Session session, EventBus eventBus, int width, int height, int rows, int columns) {
public RenderPane(ContextFreeSession session, EventBus eventBus, int width, int height, int rows, int columns) {
this.width = width;
this.height = height;
this.rows = rows;
this.columns = columns;

contextFreeSession = (ContextFreeSession) session;
contextFreeSession = session;

errorProperty = new StringObservableValue();
errorProperty.setValue(null);
Expand Down
2 changes: 1 addition & 1 deletion com.nextbreakpoint.nextfractal.contextfree/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.nextbreakpoint</groupId>
<artifactId>com.nextbreakpoint.nextfractal</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</parent>
<artifactId>com.nextbreakpoint.nextfractal.contextfree</artifactId>
<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down Expand Up @@ -196,6 +196,7 @@ public String shapeToString(int shape) {
public void includeFile(String fileName, Token location) {
try {
String path = relativeFilePath(currentPath, fileName);
info("Include file " + path, location);
// if (path.endsWith(".nf.zip")) {
// throw new UnsupportedOperationException();
// }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* NextFractal 2.1.0
* NextFractal 2.1.1
* https://github.com/nextbreakpoint/nextfractal
*
* Copyright 2015-2018 Andrea Medeghini
* Copyright 2015-2019 Andrea Medeghini
*
* This file is part of NextFractal.
*
Expand Down
Loading

0 comments on commit d5635c8

Please sign in to comment.