Slight cleanups

This commit is contained in:
Andrew Lalis 2020-11-08 00:34:37 +01:00
parent e1036940f9
commit ae0da77f93
2 changed files with 9 additions and 4 deletions

View File

@ -1,2 +1,10 @@
# BlockBookBinder # BlockBookBinder
Simple utility for preparing and pasting large texts into Minecraft books. _A simple utility for preparing and pasting large texts into Minecraft books._
This application was developed in order to make the production of written books in Minecraft easier, by splitting up large texts into pre-formatted chunks that are automatically loaded onto the user's clipboard for pasting into the book.
## Using Block Book Binder
To get started, look for the **Releases** section on this page, and find the latest release. Download the executable JAR file and you're ready to go. Simply paste some plain text into the _Source_ panel on the right-hand side, and press the button _Convert to Book_ to process that text into a series of pages which will appear on the left-hand side.
Once you're happy with how the pages are formatted, you can click the _Export_ button to begin exporting pages to your clipboard. Once you give an affirmative response to the confirmation popup that appears, the first page will be loaded into your clipboard. You can then use `CTRL + V` to paste the page into your book. Each time you do, the program will take about a second to load the next page into your clipboard, so that you can paste it without even having to leave your game.

View File

@ -1,11 +1,8 @@
package nl.andrewlalis.blockbookbinder; package nl.andrewlalis.blockbookbinder;
import nl.andrewlalis.blockbookbinder.view.MainFrame; import nl.andrewlalis.blockbookbinder.view.MainFrame;
import org.jnativehook.GlobalScreen;
import javax.swing.*; import javax.swing.*;
import java.util.logging.Level;
import java.util.logging.Logger;
/** /**
* The main class for the application. * The main class for the application.