Skip to content

Commit

Permalink
Prepare for v0.7.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Samir Vaidya committed Jun 6, 2020
1 parent 6b222eb commit 2f4d84f
Show file tree
Hide file tree
Showing 64 changed files with 72 additions and 73 deletions.
19 changes: 9 additions & 10 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
<!--
| Steganography utility to hide messages into cover files
| Author: Samir Vaidya (mailto:[email protected])
| Copyright (c) 2007-2017 Samir Vaidya
| Copyright (c) Samir Vaidya
-->
<project name="OpenStego" default="compile" basedir=".">

<property name="author.name" value="Samir Vaidya"/>
<property name="author.mail" value="[email protected]"/>
<property name="homepage.url" value="http://www.openstego.com"/>
<property name="package.ver" value="0.7.3"/>
<property name="jre.minVer" value="1.7.0"/>
<property name="jdk.docs.href" value="http://docs.oracle.com/javase/7/docs/api/"/>
<property name="jdk.docs.dir" value="E:/jdk-1.7.0/api"/>
<property name="package.ver" value="0.7.4"/>
<property name="jre.minVer" value="1.8.0"/>
<property name="jdk.docs.href" value="https://docs.oracle.com/en/java/javase/11/docs/api/"/>

<property name="src" value="./src"/>
<property name="build.classpath" value="${src}"/>
Expand Down Expand Up @@ -48,7 +47,7 @@

<target name="compile" depends="init" description="Compiles the source files">
<javac srcdir="${src}" destdir="${build.classesdir}" classpath="${build.classpath}" debug="true"
deprecation="on" debuglevel="lines,vars,source" source="7" target="7" includeantruntime="false">
deprecation="on" debuglevel="lines,vars,source" source="8" target="8" includeantruntime="false">
<exclude name="com/openstego/desktop/plugin/dctlsb/**"/>
<exclude name="com/openstego/desktop/plugin/dwtkim/**"/>
<exclude name="com/openstego/desktop/plugin/dwtxie/**"/>
Expand Down Expand Up @@ -85,7 +84,7 @@
excludepackagenames="com.openstego.desktop.plugin.*" windowtitle="${ant.project.name} API">
<doctitle><![CDATA[<h1>${ant.project.name} API Specification</h1>]]></doctitle>
<bottom><![CDATA[<i>Copyright &copy; 2007-${time.year} ${author.name}. All Rights Reserved.</i>]]></bottom>
<link offline="true" href="${jdk.docs.href}" packagelistLoc="${jdk.docs.dir}"/>
<link offline="false" href="${jdk.docs.href}" packagelistLoc="${jdk.docs.href}"/>
</javadoc>
</target>

Expand Down Expand Up @@ -187,8 +186,8 @@
<echo file="${package}/${package.deb}/changelog.Debian"
append="false">OpenStego (${package.ver}-1) ; urgency=low

* Fixed EOL for shell scripts
* Fixed error where in some cases JPEG writing was failing
* Fixed alpha channel handling for PNG files with transparency
* Fixed NullPointerException happening on first time launch

-- ${author.name} &lt;${author.mail}&gt; ${time.changelog}
</echo>
Expand All @@ -205,7 +204,7 @@ Upstream Author: ${author.name} &lt;${author.mail}&gt;

License:

Copyright (C) 2007-${time.year} ${author.name}
Copyright (c) 2007-${time.year} ${author.name}

This file is part of OpenStego as available from
http://www.openstego.com. This file is free software;
Expand Down
2 changes: 1 addition & 1 deletion installer.nsi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;----------------------------------------------------------------------------------------
; Steganography utility to hide messages into cover files
; Author: Samir Vaidya (mailto:[email protected])
; Copyright (c) 2007-2017 Samir Vaidya
; Copyright (c) Samir Vaidya
;----------------------------------------------------------------------------------------

!define JRE_DOWNLOAD_URL "http://www.java.com/getjava/"
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/DataHidingPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/OpenStego.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/OpenStegoCmd.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/OpenStegoConfig.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/OpenStegoCrypto.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/OpenStegoException.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/OpenStegoPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/WatermarkingPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dctlsb/Coordinates.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dctlsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dctlsb/DctLSBErrors.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dctlsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dctlsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dctlsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dctlsb/DctLSBPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dctlsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dwtdugad;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dwtdugad;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dwtkim/DWTKimErrors.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dwtkim;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dwtkim/DWTKimPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dwtkim;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dwtxie/DWTXieErrors.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dwtxie;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/dwtxie/DWTXiePlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.dwtxie;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/lsb/LSBConfig.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/lsb/LSBDataHeader.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/lsb/LSBErrors.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/lsb/LSBInputStream.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/lsb/LSBOutputStream.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/plugin/lsb/LSBPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.lsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.randlsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.randlsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.randlsb;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.template.dct;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.template.dct;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.template.dct;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.template.dct;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.template.image;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2007-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/

package com.openstego.desktop.plugin.template.image;
Expand Down
2 changes: 1 addition & 1 deletion src/com/openstego/desktop/ui/EmbedPanel.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Steganography utility to hide messages into cover files
* Author: Samir Vaidya (mailto:[email protected])
* Copyright (c) 2011-2017 Samir Vaidya
* Copyright (c) Samir Vaidya
*/
package com.openstego.desktop.ui;

Expand Down
Loading

0 comments on commit 2f4d84f

Please sign in to comment.