Skip to content

Commit

Permalink
Deleted old v1.x folder and added wiki option to command line
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Castor committed May 8, 2017
1 parent 2579d01 commit 269b8f8
Show file tree
Hide file tree
Showing 63 changed files with 10 additions and 7,186 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## TODO (will be moved to the change log section below as these are completed)
* stretch goal: add in hit count animation
* try to fix rotation issues on some units
* try to fix rotation issues on some units
* make comments JDocs compatible

## January 3, 2016 (v2.1.1 Release)
## May 8, 2018 (v2.1.2 Release)
* New Feature: Added wikiMode option to command line

## January 3, 2017 (v2.1.1 Release)
* Bugfix: fixed bug where program would not work properly on Unix environments

## December 21, 2016 to December 25, 2016 (v2.1.0 Release)
Expand Down
Empty file modified bin/ARCommon.class
100644 → 100755
Empty file.
Empty file modified bin/ARQueue.class
100644 → 100755
Empty file.
Empty file modified bin/AnimatedGifEncoder.class
100644 → 100755
Empty file.
Empty file modified bin/BFFrameMaker$CreationOptions.class
100644 → 100755
Empty file.
Binary file modified bin/BFFrameMaker.class
100644 → 100755
Binary file not shown.
Empty file modified bin/DigitalPicture.class
100644 → 100755
Empty file.
Empty file modified bin/FileChooser.class
100644 → 100755
Empty file.
Empty file modified bin/FileManagement.class
100644 → 100755
Empty file.
Empty file modified bin/Frame$Part.class
100644 → 100755
Empty file.
Empty file modified bin/Frame.class
100644 → 100755
Empty file.
Empty file modified bin/LZWEncoder.class
100644 → 100755
Empty file.
Empty file modified bin/NeuQuant.class
100644 → 100755
Empty file.
Empty file modified bin/Picture.class
100644 → 100755
Empty file.
Empty file modified bin/Picture2.class
100644 → 100755
Empty file.
Empty file modified bin/PictureFrame.class
100644 → 100755
Empty file.
Empty file modified bin/Pixel.class
100644 → 100755
Empty file.
Empty file modified bin/ProgramOutput.class
100644 → 100755
Empty file.
Empty file modified bin/RegionInterface.class
100644 → 100755
Empty file.
Empty file modified bin/SimpleInput.class
100644 → 100755
Empty file.
Empty file modified bin/SimpleOutput.class
100644 → 100755
Empty file.
Empty file modified bin/SimplePicture.class
100644 → 100755
Empty file.
Empty file modified bin/SimplePicture2.class
100644 → 100755
Empty file.
Empty file modified bin/Unit.class
100644 → 100755
Empty file.
Binary file removed bin/v1.x/AnimatedGifEncoder.class
Binary file not shown.
Binary file removed bin/v1.x/BFAnimationMenu.class
Binary file not shown.
Binary file removed bin/v1.x/BFFrameMaker.class
Binary file not shown.
Binary file removed bin/v1.x/BFFrameMakerWiki.class
Binary file not shown.
Binary file removed bin/v1.x/BFStripAnimator.class
Binary file not shown.
Binary file removed bin/v1.x/BFStripMaker.class
Binary file not shown.
Binary file removed bin/v1.x/Debug.class
Binary file not shown.
Binary file removed bin/v1.x/DigitalPicture.class
Binary file not shown.
Binary file removed bin/v1.x/FileChooser.class
Binary file not shown.
Binary file removed bin/v1.x/LZWEncoder.class
Binary file not shown.
Binary file removed bin/v1.x/NeuQuant.class
Binary file not shown.
Binary file removed bin/v1.x/Picture.class
Binary file not shown.
Binary file removed bin/v1.x/Picture2.class
Binary file not shown.
Binary file removed bin/v1.x/PictureFrame.class
Binary file not shown.
Binary file removed bin/v1.x/Pixel.class
Binary file not shown.
Binary file removed bin/v1.x/RegionInterface.class
Binary file not shown.
Binary file removed bin/v1.x/SimpleInput.class
Binary file not shown.
Binary file removed bin/v1.x/SimpleOutput.class
Binary file not shown.
Binary file removed bin/v1.x/SimplePicture.class
Binary file not shown.
Binary file removed bin/v1.x/SimplePicture2.class
Binary file not shown.
7 changes: 5 additions & 2 deletions src/BFFrameMaker.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ public BFFrameMaker(){

/*methods*/
public static void printStartupMessage(boolean toLog){
String versionNum = "v2.1.1";
String updateDate = "January 3, 2016";
String versionNum = "v2.1.2";
String updateDate = "May 8, 2017";

//header message
String license = "Welcome to BFFrameAnimator.\n";
Expand All @@ -187,6 +187,7 @@ public static void printStartupMessage(boolean toLog){
if(toLog) ProgramOutput.logMessage(license);
else System.out.println(license);
}

public static void main(String[] args) {
BFFrameMaker.printStartupMessage(false);
BFFrameMaker program = new BFFrameMaker();
Expand Down Expand Up @@ -281,6 +282,7 @@ private void processCommands(String[] args){
if(args[i].equals("-useOpacity")) o.setOpacity(true);
if(args[i].equals("-saveParts")) o.setPartMode(true);
if(args[i].equals("-doShrink")) o.setShrinkMode(true);
if(args[i].equals("-wikiMode")) o.setWikiMode(true);
if(args[i].equals("-noGui")) useGUI = false;
if(args[i].equals("-debug")) ProgramOutput.setDebugMode(true);
if(args[i].equals("-list")){
Expand All @@ -297,6 +299,7 @@ private void processCommands(String[] args){
options += "-useStrip flag to use already made strips in the units folders\n";
options += "-useOpacity flag to use opacity creating directly from the spritesheet\n";
options += "-saveParts option to save each frame as a strip of parts in the units folders\n";
options += "-wikiMode flag to create wiki GIFs\n";
options += "-list <path> file path to a text file containing a list of units\n";
options += "-noGui flag to not use any GUI to set creation options\n";
options += "-noGui(cont'd) Note: if this flag is set, no GUI will be used assuming all other options are preset via command line arguments.\n";
Expand Down
Loading

0 comments on commit 269b8f8

Please sign in to comment.