Skip to content

Commit

Permalink
Minor fixes. Updated to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StrongJoshua committed Apr 21, 2019
1 parent d440f39 commit f8e3353
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ First, clone this project to your computer and [add it to Eclipse](http://www.ec

Versions
========
Latest Stable: **0.9.0**
Latest Snapshot: **1.0.0b-SNAPSHOT**
Latest Stable: **1.0.0**
Latest Snapshot:
### How the Numbers Work
#### First Digit
This digit goes up whenever I feel that the project has reached a milestone and/or no longer resembles the first version in it's current digit (e.g.: 0.13.3 is completely different from 0.1.0).
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group = 'com.strongjoshua'
version = '1.0.0b-SNAPSHOT'
version = '1.0.0'

description = """LibGdx In-Game Console"""

Expand All @@ -15,7 +15,7 @@ repositories {
}

ext {
gdxVersion = '1.9.8'
gdxVersion = '1.9.9'
}

dependencies {
Expand Down Expand Up @@ -48,12 +48,12 @@ sourceSets {
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
archiveClassifier.set('javadoc')
from javadoc
}

task sourcesJar(type: Jar) {
classifier = 'sources'
archiveClassifier.set('sources')
from sourceSets.main.allSource
}

Expand Down
3 changes: 2 additions & 1 deletion src/com/strongjoshua/console/GUIConsole.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import com.badlogic.gdx.scenes.scene2d.utils.DragScrollListener;
import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
import com.badlogic.gdx.utils.Array;
import com.badlogic.gdx.utils.SnapshotArray;

/**
* A simple console that allows live logging, and live execution of methods, from within an application. Please see the <a
Expand All @@ -41,7 +42,7 @@ public class GUIConsole extends AbstractConsole {

private ConsoleDisplay display;
private boolean hidden = true;
private boolean usesMultiplexer = false;
private boolean usesMultiplexer;
private InputProcessor appInput;
private InputMultiplexer multiplexer;
private Stage stage;
Expand Down
3 changes: 2 additions & 1 deletion test/tests/StageTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ private void blink () {
}

private class MyCommandExecutor extends CommandExecutor {
@ConsoleDoc(description = "Makes the badlogic image fade out and back " + "" + "" + "in.") public void blink () {
@ConsoleDoc(description = "Makes the badlogic image fade out and back in.")
public void blink() {
StageTest.this.blink();
}

Expand Down
1 change: 0 additions & 1 deletion test/tests/VisUITest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import com.badlogic.gdx.graphics.GL20;
Expand Down

0 comments on commit f8e3353

Please sign in to comment.