Skip to content

Commit

Permalink
Merge pull request #32 from ZenHarbinger/staging
Browse files Browse the repository at this point in the history
Update to 2.6.0
  • Loading branch information
ZenHarbinger authored Jan 13, 2017
2 parents 80d6038 + e223073 commit 5d957d5
Show file tree
Hide file tree
Showing 84 changed files with 2,266 additions and 255 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ snap/
target/
debian/

*.java~
*.class

# Mobile Tools for Java (J2ME)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ mvn clean package
## Run

```sh
java -jar target/torgo-1.5.0.jar
java -jar target/torgo-1.6.0.jar
```
2 changes: 1 addition & 1 deletion TorgoInstallBuilder.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project>
<shortName>Torgo</shortName>
<fullName>Torgo</fullName>
<version>1.5.0</version>
<version>1.6.0</version>
<logoImage>src/main/resources/torgo-48x48.png</logoImage>
<splashImage>src/main/resources/org/tros/images/splash.png</splashImage>
<componentList>
Expand Down
4 changes: 4 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ test:
- mvn -DskipTests=false clean cobertura:cobertura
post:
- bash <(curl -s https://codecov.io/bash)
general:
branches:
ignore:
- gh-pages
#general:
# branches:
# only:
Expand Down
8 changes: 8 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ coverage:
patch: true
project: true
ignore:
#auto-generated files
- .*/antlr/.*
- .*/rsyntax/.*
#contrib files
- .*/org/tros/torgo/swing/JConsole.*
- .*/org/tros/torgo/viz/SpringUtilities.*
- .*/org/tros/utils/swing/JLinkButton.*
#literally untestable in junit
- .*/org/tros/torgo/MainSplash.*
parsers:
gcov:
branch_detection:
Expand Down
2 changes: 1 addition & 1 deletion licenseheader.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<#if licenseFirst??>
${licenseFirst}
</#if>
${licensePrefix}Copyright 2015-2016 Matthew Aguirre
${licensePrefix}Copyright 2015-2017 Matthew Aguirre
${licensePrefix}
${licensePrefix}Licensed under the Apache License, Version 2.0 (the "License");
${licensePrefix}you may not use this file except in compliance with the License.
Expand Down
55 changes: 52 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.tros</groupId>
<artifactId>torgo</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
<packaging>jar</packaging>
<name>torgo</name>
<url>http://tros.org/torgo/</url>
Expand Down Expand Up @@ -166,6 +166,42 @@
</plugins>
</build>
</profile>
<profile>
<id>forMac</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>build.app</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>sh.tak.appbundler</groupId>
<artifactId>appbundle-maven-plugin</artifactId>
<version>1.2.0</version>
<configuration>
<mainClass>org.tros.torgo.Main</mainClass>
<generateDiskImageFile>true</generateDiskImageFile>
<iconFile>torgo.icns</iconFile>
<jvmVersion>1.8+</jvmVersion>
<version>${project.version}</version>
<jvmOptions>Dsun.java2d.opengl=true</jvmOptions>
<NSHumanReadableCopyright>2015-2017 Matthew Aguirre</NSHumanReadableCopyright>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>forWindows</id>
<activation>
Expand Down Expand Up @@ -219,6 +255,18 @@
</profiles>
<build>
<plugins>
<!-- <plugin>
<groupId>de.jflex</groupId>
<artifactId>maven-jflex-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand All @@ -240,6 +288,7 @@
<param>org.apache.commons.beanutils.Converter</param>
<param>org.tros.utils.converters.ConverterRegister</param>
<param>org.tros.torgo.InterpreterVisualization</param>
<param>org.fife.ui.rsyntaxtextarea.TokenMakerRegistration</param>
</services>
</configuration>
<executions>
Expand Down Expand Up @@ -312,7 +361,7 @@
<format>html</format>
<format>xml</format>
</formats>
<check />
<check/>
</configuration>
</plugin>
</plugins>
Expand Down Expand Up @@ -360,7 +409,7 @@
<version>4.6</version>
</dependency>
<dependency>
<groupId>com.fifesoft</groupId>
<groupId>org.tros</groupId>
<artifactId>rsyntaxtextarea</artifactId>
<version>2.6.0</version>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: torgo
version: 1.5.0
version: 1.6.0
summary: A Logo interpreter written in Java.
description: A Logo interpreter written in Java.
grade: stable
Expand All @@ -16,7 +16,7 @@ parts:
plugin: maven
source: .
maven-options:
- -DskipTests
- -DskipTests=true
stage-packages:
- fontconfig-config
- default-jdk
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/DynamicLogoController.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/ExpressionListener.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LexicalListener.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LexicalLogoController.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoBlock.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoCanvas.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoController.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoFor.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoFunction.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoIf.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoProg.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoRepeat.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tros/logo/LogoStatement.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 Matthew Aguirre
* Copyright 2015-2017 Matthew Aguirre
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit 5d957d5

Please sign in to comment.