Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JohnsProject/JPGE
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2-beta
Choose a base ref
...
head repository: JohnsProject/JPGE
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Oct 27, 2018

  1. Fixed some bugs

    John committed Oct 27, 2018
    Copy the full SHA
    2bf35d9 View commit details
  2. Fixed some bugs

    John committed Oct 27, 2018
    Copy the full SHA
    7d7c197 View commit details
  3. Fixed some bugs

    John committed Oct 27, 2018
    Copy the full SHA
    69764a3 View commit details
  4. Fixed some bugs

    John committed Oct 27, 2018
    Copy the full SHA
    70786f3 View commit details

Commits on Oct 30, 2018

  1. Fixed bugs and refactored

    * Fixed multiple cameras overlapping bug
    * Changed enum from Light to int (Use constats in Shader class for light
    types)
    * Moved zBuffer from SceneRenderer to SceneWindow
    * Moved all value objects from graphics to the jpge package
    * Deleted PixelShader class and moved shadePixel method to Shader
    * Added physics package
    John committed Oct 30, 2018
    Copy the full SHA
    90d3617 View commit details
  2. Refactored

    * Renamed SceneRenderer to Renderer
    * Renamed SceneAnimator to Animator
    * Created .dto (DataTransferObject) package
    * Moved Scene from SceneWindow to GameManager that sends current scene
    in the UpdateEvent
    * Refactored GameManager
    * Added PhysicsAnimator class
    John committed Oct 30, 2018
    Copy the full SHA
    b260600 View commit details

Commits on Oct 31, 2018

  1. Refactored

    * Renamed GameManager to Engine
    * Added EngineSettings class
    * Moved Scene from SceneWindow to Engine
    * Moved Renderer from SceneWindow to Engine
    * Moved Animator from SceneWindow to Engine
    John committed Oct 31, 2018
    Copy the full SHA
    8c3165d View commit details
  2. Moved SceneWindow back to src/main/java

    Moved SceneWindow back to src/main/java (moved to src/test/java
    accidently in last commit)
    John committed Oct 31, 2018
    Copy the full SHA
    688c8e4 View commit details

Commits on Nov 5, 2018

  1. Refactored and implemented object fall physics

    * Added DisplayBuffer class
    * Removed viewBuffer from the Camera class drawing directly to
    DisplayBuffer now
    * Added PhysicsSettings class (contains physics settings of scenes)
    * Added object fall physics
    * Deleted ProfilerData class (Profiler gets data from engine)
    John committed Nov 5, 2018
    Copy the full SHA
    00afb42 View commit details
  2. Fixed Readme image

    John committed Nov 5, 2018
    Copy the full SHA
    1ceb99e View commit details

Commits on Nov 6, 2018

  1. Refactored and fixed bugs

    * Fixed Key and MouseInputManager key getting bugs
    * Removed the JPGEKey Listener/Event
    * Removed the JPGEMouse Listener/Event
    * Added JPGE interface (Called by the engine, has as a default update
    method)
    John committed Nov 6, 2018
    Copy the full SHA
    cd46f4a View commit details

Commits on Nov 13, 2018

  1. Added sphere collision detection!!!

    * Renamed DisplayBuffer to RenderBuffer
    * Added sphere collision detection!!!
    * Added Plane mesh to the resources folder
    * Refactored and fixed bugs
    John committed Nov 13, 2018
    Copy the full SHA
    de2577c View commit details
  2. README update

    John committed Nov 13, 2018
    Copy the full SHA
    4d8a97e View commit details
  3. Update README

    John committed Nov 13, 2018
    Copy the full SHA
    c65cf82 View commit details

Commits on Nov 14, 2018

  1. Update pom.xml

    John committed Nov 14, 2018
    Copy the full SHA
    6cba09d View commit details
  2. updated gitignore

    John committed Nov 14, 2018
    Copy the full SHA
    21963ad View commit details

Commits on Nov 16, 2018

  1. Added kinematic option to Rigidbody

    * Added kinematic option to Rigidbody (no physical forces affects the
    object)
    John committed Nov 16, 2018
    Copy the full SHA
    20ce545 View commit details

Commits on Nov 21, 2018

  1. Changed Shader to UnifiedShaderModel

    * Refactored SOM file
    * Changed Shader to UnifiedShaderModel
    John committed Nov 21, 2018
    Copy the full SHA
    5ea2f24 View commit details
  2. Changed Shader to UnifiedShaderModel

    * Refactored SOM file
    * Changed Shader to UnifiedShaderModel
    John committed Nov 21, 2018
    Copy the full SHA
    873471b View commit details
  3. Fixed som exporter bug

    * Fixed som exporter bug
    * Fixed som files from resources folder
    * Added new som file to resources
    John committed Nov 21, 2018
    Copy the full SHA
    c9a9fef View commit details
  4. Added MeshToMesh collision detection

    * Added path to models in resources as constants to Mesh class
    * Added SphereToMesh collision detection
    * Added MeshToMesh collision detection
    * fixed bugs
    John committed Nov 21, 2018
    Copy the full SHA
    eaed4f8 View commit details

Commits on Nov 22, 2018

  1. Optimized MathUtils sin/cos funtion

    * Optimized MathUtils sin/cos funtion (10% performance improvement)
    * Optimized MathUtils sqrt function (big performance improvement)
    John committed Nov 22, 2018
    Copy the full SHA
    6f7bfc9 View commit details

Commits on Nov 24, 2018

  1. Fixed Profiler bug with older JDKs

    John committed Nov 24, 2018
    Copy the full SHA
    7f90a01 View commit details
  2. Fixed SOMImporter materials importing bug

    John committed Nov 24, 2018
    Copy the full SHA
    44b2434 View commit details

Commits on Nov 29, 2018

  1. Implemented Serializable in all classes inside dto package

    * Implemented Serializable in all classes inside dto package
    * Fixed bugs
    John committed Nov 29, 2018
    Copy the full SHA
    9b6c78e View commit details

Commits on Dec 5, 2018

  1. Changed from Serializable to Externalizable (faster)

    * Changed from Serializable to Externalizable (faster)
    * Moved PhysicsSettings to dto package
    * Added JUnit test for dto package serialization
    John committed Dec 5, 2018
    Copy the full SHA
    9441f8e View commit details

Commits on Dec 6, 2018

  1. Fixed bug in MathUtils

    John committed Dec 6, 2018
    Copy the full SHA
    90e9f37 View commit details

Commits on Dec 11, 2018

  1. Changed Key and MouseInputManager to InputManager

    * Changed Key and MouseInputManager to InputManager
    * InputManager works with events, added JPGE Key and Mouse Listener
    * Removed ImportExeption
    * Removed Profiler singleton
    * Updated License
    John committed Dec 11, 2018
    Copy the full SHA
    77ce2ff View commit details
  2. Refactored

    John committed Dec 11, 2018
    Copy the full SHA
    b702b0c View commit details

Commits on Dec 13, 2018

  1. Added startLocation to Vertex

    * Added startLocation to Vertex (using location in rendering instead of
    vertexBuffer in Mesh)
    * Fixed mouseDown event bug
    * Fixed bug in RenderUtils
    John committed Dec 13, 2018
    Copy the full SHA
    77e18b1 View commit details

Commits on Dec 16, 2018

  1. Added clamp method to Vector2 and Vector3MathUtils

    JohnsProject committed Dec 16, 2018
    Copy the full SHA
    40e7a17 View commit details

Commits on Dec 18, 2018

  1. updated pom.xml

    Blacknick1 committed Dec 18, 2018
    Copy the full SHA
    0efd526 View commit details

Commits on Dec 21, 2018

  1. Optimized line drawing algorithm

    Blacknick1 committed Dec 21, 2018
    Copy the full SHA
    d0bed75 View commit details

Commits on Aug 25, 2020

  1. Update README.md

    J0K0SAN authored Aug 25, 2020
    Copy the full SHA
    a329352 View commit details
Showing with 6,862 additions and 18,940 deletions.
  1. 0 .attach_pid15061
  2. 0 .attach_pid15850
  3. 0 .attach_pid16244
  4. 0 .attach_pid31733
  5. +14 −4 .classpath
  6. +1 −0 .gitignore
  7. +4 −3 .settings/org.eclipse.jdt.core.prefs
  8. +0 −4 .settings/org.eclipse.m2e.core.prefs
  9. +1 −1 LICENSE
  10. +259 −169 ProjectHistory
  11. +18 −1 README.md
  12. +246 −93 blend2SOM/export_som.py
  13. BIN build/Test.jar
  14. +0 −30 doc/allclasses-frame.html
  15. +0 −30 doc/allclasses-noframe.html
  16. +0 −421 doc/com/johnsproject/jpos/graphics/Calculator.html
  17. +0 −470 doc/com/johnsproject/jpos/graphics/GUI.html
  18. +0 −337 doc/com/johnsproject/jpos/graphics/Mesh.Edge.html
  19. +0 −335 doc/com/johnsproject/jpos/graphics/Mesh.VertexPoint.html
  20. +0 −295 doc/com/johnsproject/jpos/graphics/Mesh.html
  21. +0 −407 doc/com/johnsproject/jpos/graphics/Position.html
  22. +0 −338 doc/com/johnsproject/jpos/graphics/Rotation.html
  23. +0 −338 doc/com/johnsproject/jpos/graphics/Scale.html
  24. +0 −537 doc/com/johnsproject/jpos/graphics/Scene.html
  25. +0 −424 doc/com/johnsproject/jpos/graphics/ScenePaint.LineData.html
  26. +0 −368 doc/com/johnsproject/jpos/graphics/ScenePaint.PointData.html
  27. +0 −436 doc/com/johnsproject/jpos/graphics/ScenePaint.html
  28. +0 −289 doc/com/johnsproject/jpos/graphics/ScenePainter.html
  29. +0 −416 doc/com/johnsproject/jpos/graphics/SceneSettings.html
  30. +0 −331 doc/com/johnsproject/jpos/graphics/Space.html
  31. +0 −615 doc/com/johnsproject/jpos/graphics/SpaceObject.html
  32. +0 −269 doc/com/johnsproject/jpos/graphics/Testing.html
  33. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/Calculator.html
  34. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/GUI.html
  35. +0 −160 doc/com/johnsproject/jpos/graphics/class-use/Mesh.Edge.html
  36. +0 −206 doc/com/johnsproject/jpos/graphics/class-use/Mesh.VertexPoint.html
  37. +0 −186 doc/com/johnsproject/jpos/graphics/class-use/Mesh.html
  38. +0 −253 doc/com/johnsproject/jpos/graphics/class-use/Position.html
  39. +0 −193 doc/com/johnsproject/jpos/graphics/class-use/Rotation.html
  40. +0 −187 doc/com/johnsproject/jpos/graphics/class-use/Scale.html
  41. +0 −163 doc/com/johnsproject/jpos/graphics/class-use/Scene.html
  42. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/ScenePaint.LineData.html
  43. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/ScenePaint.PointData.html
  44. +0 −160 doc/com/johnsproject/jpos/graphics/class-use/ScenePaint.html
  45. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/ScenePainter.html
  46. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/SceneSettings.html
  47. +0 −147 doc/com/johnsproject/jpos/graphics/class-use/Space.html
  48. +0 −178 doc/com/johnsproject/jpos/graphics/class-use/SpaceObject.html
  49. +0 −122 doc/com/johnsproject/jpos/graphics/class-use/Testing.html
  50. +0 −31 doc/com/johnsproject/jpos/graphics/package-frame.html
  51. +0 −203 doc/com/johnsproject/jpos/graphics/package-summary.html
  52. +0 −174 doc/com/johnsproject/jpos/graphics/package-tree.html
  53. +0 −192 doc/com/johnsproject/jpos/graphics/package-use.html
  54. +0 −122 doc/constant-values.html
  55. +0 −122 doc/deprecated-list.html
  56. +0 −223 doc/help-doc.html
  57. +0 −157 doc/index-files/index-1.html
  58. +0 −149 doc/index-files/index-10.html
  59. +0 −135 doc/index-files/index-11.html
  60. +0 −289 doc/index-files/index-12.html
  61. +0 −133 doc/index-files/index-13.html
  62. +0 −143 doc/index-files/index-14.html
  63. +0 −133 doc/index-files/index-15.html
  64. +0 −137 doc/index-files/index-16.html
  65. +0 −137 doc/index-files/index-17.html
  66. +0 −131 doc/index-files/index-18.html
  67. +0 −137 doc/index-files/index-2.html
  68. +0 −137 doc/index-files/index-3.html
  69. +0 −197 doc/index-files/index-4.html
  70. +0 −127 doc/index-files/index-5.html
  71. +0 −135 doc/index-files/index-6.html
  72. +0 −137 doc/index-files/index-7.html
  73. +0 −133 doc/index-files/index-8.html
  74. +0 −247 doc/index-files/index-9.html
  75. +0 −72 doc/index.html
  76. +0 −633 doc/javadoc_stylesheet.css
  77. +0 −178 doc/overview-tree.html
  78. +0 −1 doc/package-list
  79. +0 −30 doc/script.js
  80. +0 −210 doc/serialized-form.html
  81. +0 −578 doc/stylesheet.css
  82. +20 −15 pom.xml
  83. +455 −0 src/main/java/com/johnsproject/jpge/Engine.java
  84. +0 −113 src/main/java/com/johnsproject/jpge/GameManager.java
  85. +41 −0 src/main/java/com/johnsproject/jpge/JPGE.java
  86. +165 −114 src/main/java/com/johnsproject/jpge/Profiler.java
  87. +0 −99 src/main/java/com/johnsproject/jpge/ProfilerData.java
  88. +190 −0 src/main/java/com/johnsproject/jpge/dto/Animation.java
  89. +350 −0 src/main/java/com/johnsproject/jpge/dto/Camera.java
  90. +234 −0 src/main/java/com/johnsproject/jpge/dto/Face.java
  91. +190 −0 src/main/java/com/johnsproject/jpge/dto/Light.java
  92. +133 −0 src/main/java/com/johnsproject/jpge/dto/Material.java
  93. +288 −0 src/main/java/com/johnsproject/jpge/dto/Mesh.java
  94. +82 −0 src/main/java/com/johnsproject/jpge/dto/PhysicsSettings.java
  95. +247 −0 src/main/java/com/johnsproject/jpge/dto/RenderBuffer.java
  96. +250 −0 src/main/java/com/johnsproject/jpge/dto/Rigidbody.java
  97. +222 −0 src/main/java/com/johnsproject/jpge/dto/Scene.java
  98. +239 −0 src/main/java/com/johnsproject/jpge/dto/SceneObject.java
  99. +91 −11 src/main/java/com/johnsproject/jpge/{graphics → dto}/Texture.java
  100. +253 −0 src/main/java/com/johnsproject/jpge/dto/Transform.java
  101. +236 −0 src/main/java/com/johnsproject/jpge/dto/Vertex.java
  102. +0 −56 src/main/java/com/johnsproject/jpge/event/EventDispatcher.java
  103. +0 −48 src/main/java/com/johnsproject/jpge/event/UpdateEvent.java
  104. +0 −13 src/main/java/com/johnsproject/jpge/event/UpdateListener.java
  105. +0 −106 src/main/java/com/johnsproject/jpge/graphics/Animation.java
  106. +54 −0 src/main/java/com/johnsproject/jpge/graphics/Animator.java
  107. +0 −270 src/main/java/com/johnsproject/jpge/graphics/Camera.java
  108. +0 −129 src/main/java/com/johnsproject/jpge/graphics/Face.java
  109. +0 −111 src/main/java/com/johnsproject/jpge/graphics/Light.java
  110. +0 −69 src/main/java/com/johnsproject/jpge/graphics/Material.java
  111. +0 −240 src/main/java/com/johnsproject/jpge/graphics/Mesh.java
  112. +0 −35 src/main/java/com/johnsproject/jpge/graphics/PixelShader.java
  113. +72 −0 src/main/java/com/johnsproject/jpge/graphics/Renderer.java
  114. +0 −142 src/main/java/com/johnsproject/jpge/graphics/Scene.java
  115. +0 −78 src/main/java/com/johnsproject/jpge/graphics/SceneAnimator.java
  116. +0 −131 src/main/java/com/johnsproject/jpge/graphics/SceneObject.java
  117. +0 −115 src/main/java/com/johnsproject/jpge/graphics/SceneRenderer.java
  118. +62 −109 src/main/java/com/johnsproject/jpge/graphics/SceneWindow.java
  119. +117 −94 src/main/java/com/johnsproject/jpge/graphics/Shader.java
  120. +0 −166 src/main/java/com/johnsproject/jpge/graphics/Transform.java
  121. +0 −95 src/main/java/com/johnsproject/jpge/graphics/Vertex.java
  122. +71 −2 src/main/java/com/johnsproject/jpge/io/FileIO.java
  123. +0 −8 src/main/java/com/johnsproject/jpge/io/ImportExeption.java
  124. +333 −0 src/main/java/com/johnsproject/jpge/io/InputManager.java
  125. +0 −33 src/main/java/com/johnsproject/jpge/io/JPGEKeyEvent.java
  126. +60 −4 src/main/java/com/johnsproject/jpge/io/JPGEKeyListener.java
  127. +0 −23 src/main/java/com/johnsproject/jpge/io/JPGEMouseEvent.java
  128. +74 −6 src/main/java/com/johnsproject/jpge/io/JPGEMouseListener.java
  129. +0 −102 src/main/java/com/johnsproject/jpge/io/KeyInputManager.java
  130. +0 −96 src/main/java/com/johnsproject/jpge/io/MouseInputManager.java
  131. +128 −174 src/main/java/com/johnsproject/jpge/io/SOMImporter.java
  132. +201 −0 src/main/java/com/johnsproject/jpge/physics/PhysicsAnimator.java
  133. +24 −1 src/main/java/com/johnsproject/jpge/utils/ColorUtils.java
  134. +102 −88 src/main/java/com/johnsproject/jpge/utils/MathUtils.java
  135. +159 −125 src/main/java/com/johnsproject/jpge/utils/RenderUtils.java
  136. +59 −6 src/main/java/com/johnsproject/jpge/utils/Vector2MathUtils.java
  137. +69 −16 src/main/java/com/johnsproject/jpge/utils/Vector3MathUtils.java
  138. +31 −8 src/main/java/com/johnsproject/jpge/utils/VectorUtils.java
  139. +16 −4 src/main/resources/cone.som
  140. +16 −4 src/main/resources/cube.som
  141. +16 −4 src/main/resources/cylinder.som
  142. 0 { → src/main/resources}/johnsproject_stylesheet.css
  143. BIN src/main/resources/meshes.blend
  144. BIN src/main/resources/meshes.blend1
  145. +23 −0 src/main/resources/meshes.som
  146. +16 −4 src/main/resources/monkey.som
  147. +32 −0 src/main/resources/plane.som
  148. +16 −4 src/main/resources/sphere.som
  149. +16 −4 src/main/resources/torus.som
  150. +52 −31 src/test/java/com/johnsproject/jpge/Benchmarks.java
  151. +290 −0 src/test/java/com/johnsproject/jpge/ExampleScene.java
  152. +37 −15 src/test/java/com/johnsproject/jpge/FloatingPointEngineTest.java
  153. +0 −223 src/test/java/com/johnsproject/jpge/Test.java
  154. +0 −12 src/test/java/com/johnsproject/jpge/TestPixelShader.java
  155. +0 −162 src/test/java/com/johnsproject/jpge/TestShader.java
  156. +159 −0 src/test/java/com/johnsproject/jpge/dto/SerializeDtoTest.java
  157. +23 −4 src/test/java/com/johnsproject/jpge/graphics/MeshTest.java
  158. +34 −0 src/test/java/com/johnsproject/jpge/graphics/RendererTest.java
  159. +28 −0 src/test/java/com/johnsproject/jpge/graphics/SceneObjectTest.java
  160. +0 −20 src/test/java/com/johnsproject/jpge/graphics/SceneRendererTest.java
  161. +27 −5 src/test/java/com/johnsproject/jpge/graphics/SceneWindowTest.java
  162. +24 −1 src/test/java/com/johnsproject/jpge/io/FileIOTest.java
  163. +38 −15 src/test/java/com/johnsproject/jpge/io/SOMImporterTest.java
  164. +24 −1 src/test/java/com/johnsproject/jpge/utils/ColorUtilsTest.java
  165. +29 −8 src/test/java/com/johnsproject/jpge/utils/MathUtilsTest.java
  166. +36 −2 src/test/java/com/johnsproject/jpge/utils/Vector2MathUtilsTest.java
  167. +41 −4 src/test/java/com/johnsproject/jpge/utils/Vector3MathUtilsTest.java
  168. +24 −1 src/test/java/com/johnsproject/jpge/utils/VectorUtilsTest.java
  169. BIN src/test/java/test.txt
  170. BIN target/JPGE-javadoc.jar
  171. BIN target/JPGE-sources.jar
  172. BIN target/JPGE.jar
Empty file added .attach_pid15061
Empty file.
Empty file added .attach_pid15850
Empty file.
Empty file added .attach_pid16244
Empty file.
Empty file added .attach_pid31733
Empty file.
18 changes: 14 additions & 4 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java">
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" path="src/main/resources">
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src/test/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target/*/
/target/
7 changes: 4 additions & 3 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.7
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.6
4 changes: 0 additions & 4 deletions .settings/org.eclipse.m2e.core.prefs

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 John Konrad Ferraz Salomon - John´s Project
Copyright (c) 2018 John Salomon - John´s Project

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Loading