dev version bump
authorKevin Lamonte <kevin.lamonte@gmail.com>
Wed, 30 Oct 2019 18:53:37 +0000 (13:53 -0500)
committerKevin Lamonte <kevin.lamonte@gmail.com>
Wed, 30 Oct 2019 18:53:37 +0000 (13:53 -0500)
build.xml
src/jexer/TApplication.java
src/jexer/bits/StringUtils.java

index 92d488bc6267f371bf5917711f8e807d67439e40..613ea03180d643465f140c84b620d4556ab76197 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -30,7 +30,7 @@
 
 <project name="jexer" basedir="." default="jar">
 
-  <property name="version"       value="0.3.2"/>
+  <property name="version"       value="1.0.0"/>
   <property name="src.dir"       value="src"/>
   <property name="resources.dir" value="resources"/>
   <property name="build.dir"     value="build"/>
index 9d27c10f5420052103cee046baae697ca8c2bd6e..22a2479df9ed7294118c9beb52c50dd26841812f 100644 (file)
@@ -1679,7 +1679,7 @@ public class TApplication implements Runnable {
         String version = getClass().getPackage().getImplementationVersion();
         if (version == null) {
             // This is Java 9+, use a hardcoded string here.
-            version = "0.3.2";
+            version = "1.0.0";
         }
         messageBox(i18n.getString("aboutDialogTitle"),
             MessageFormat.format(i18n.getString("aboutDialogText"), version),
index 58c35de82726408b7c9b69eee7a1bf5bee5a38b8..2a4fc1dc152b4cbb3dc1ba5fb5dc49b4d3ca940c 100644 (file)
@@ -609,9 +609,6 @@ public class StringUtils {
      * representation i accordance with RFC 2045.
      * @param sArr The bytes to convert. If <code>null</code> or length 0
      * an empty array will be returned.
-     * @param lineSep Optional "\r\n" after 76 characters, unless end of
-     * file.<br> No line separator will be in breach of RFC 2045 which
-     * specifies max 76 per line but will be a little faster.
      * @return A BASE64 encoded array. Never <code>null</code>.
      */
     public final static String toBase64(byte[] sArr) {