Skip to content

Commit

Permalink
Improved mouse gestures and gl init
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Apr 8, 2018
1 parent 55e80c6 commit 743936b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/project-info.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// -----------------------------------------------------------------------------
ext.publishing.artifactId = project.name.toLowerCase()
ext.publishing.groupId = 'eu.mihosoft.vrl.jcsg.vplugin'
ext.publishing.versionId = '0.2.1'
ext.publishing.versionId = '0.2.2'

ext.publishing.developerName = 'Michael Hoffer'
ext.publishing.developerAlias = 'miho'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class JCSGPluginConfigurator extends VPluginConfigurator{

public JCSGPluginConfigurator() {
//specify the plugin name and version
setIdentifier(new PluginIdentifier("JCSG", "0.2.1"));
setIdentifier(new PluginIdentifier("JCSG", "0.2.2"));

// optionally allow other plugins to use the api of this plugin
// you can specify packages that shall be
Expand All @@ -42,7 +42,7 @@ public JCSGPluginConfigurator() {

// specify dependencies
addDependency(new PluginDependency("VRL", "0.4.2.8.6", "0.4.x"));
addDependency(new PluginDependency("JOGL", "0.3", "x"));
addDependency(new PluginDependency("JOGL", "0.4", "x"));
}


Expand Down

0 comments on commit 743936b

Please sign in to comment.