Skip to content

Commit

Permalink
Release 0.0.3 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Oct 1, 2022
1 parent b9cf7a0 commit e230fc6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ configure(subprojects) {
}

subprojects {
version = '0.0.2'
version = '0.0.3'
ext.appName = 'spotvox'
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
api "com.github.yellowstonegames.SquidSquad:SquidCore:$squidSquadVersion"
api "com.github.yellowstonegames.SquidSquad:SquidGrid:$squidSquadVersion"
api "com.github.tommyettinger:jdkgdxds:$jdkgdxdsVersion"
api "com.github.tommyettinger:colorful:$colorfulVersion"
api "com.github.tommyettinger.colorful-gdx:colorful:$colorfulVersion"
api 'info.picocli:picocli:4.6.3'
annotationProcessor 'info.picocli:picocli-codegen:4.6.3'
}
Expand Down
3 changes: 1 addition & 2 deletions core/src/main/java/com/github/tommyettinger/SpotVox.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
import com.badlogic.gdx.graphics.PixmapIO;
import com.badlogic.gdx.utils.TimeUtils;
import com.github.tommyettinger.io.VoxIOExtended;
import com.github.tommyettinger.io.VoxModel;

import java.io.IOException;

public class SpotVox extends ApplicationAdapter {
public static final boolean DEBUG = true;
public static final boolean DEBUG = false;
public Renderer renderer;
public String name;
public byte[][][] voxels;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

import java.io.*;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.PrimitiveIterator;

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xms512M -Xmx1G -XX:MaxMetaspaceSize=1G
org.gradle.configureondemand=false
gdxVersion=1.11.0
squidSquadVersion=2632489943
jdkgdxdsVersion=1.0.3
colorfulVersion=0.8.2
jdkgdxdsVersion=1.0.4
colorfulVersion=a061044461

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.io.FileNotFoundException;
import java.util.concurrent.Callable;

@CommandLine.Command(name = "spotvox", version = "SpotVox 0.0.1",
@CommandLine.Command(name = "spotvox", version = "SpotVox 0.0.3",
description = "Given a .vox file, write pixel art renders to a subfolder.",
mixinStandardHelpOptions = true)
public class HeadlessLauncher implements Callable<Integer> {
Expand All @@ -34,7 +34,7 @@ public class HeadlessLauncher implements Callable<Integer> {
public int multiple = 3;

@CommandLine.Parameters(description = "The absolute or relative path to a MagicaVoxel .vox file.", defaultValue = "Copter.vox")
public String input = "Eye-Tyrant.vox";
public String input = "Copter.vox";

public static void main(String[] args) {
int exitCode = new picocli.CommandLine(new HeadlessLauncher()).execute(args);
Expand Down

0 comments on commit e230fc6

Please # to comment.