<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"/>
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),
* 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) {