diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..91106d3 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Maven + run: mvn -B package --file pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6f89c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..e37cdfb --- /dev/null +++ b/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + org.nearinfinity + JHexView + 1.0 + jar + + UTF-8 + 1.8 + 1.8 + + \ No newline at end of file diff --git a/readme.txt b/readme.md similarity index 92% rename from readme.txt rename to readme.md index a8fbfd0..a1f37c2 100644 --- a/readme.txt +++ b/readme.md @@ -14,7 +14,8 @@ http://www.the-interweb.com/serendipity/index.php?/archives/96-Hexer-1.0.0.html Dependencies: https://github.com/sporst/splib -Features: +Features +-------- - Displays binary data in decimal and hexadecimal order - Support for grouping bytes in columns - Little endian or Big endian display @@ -26,7 +27,8 @@ Features: external source - Full control over the display colors -Changes by Argent77: +Changes for NearInfinity by Argent77 +------------------------------------ - Included dependencies (splib) - Added Apache Ant build script - Find bytes/text support diff --git a/src/tv/porst/jhexview/ColoredRange.java b/src/main/java/tv/porst/jhexview/ColoredRange.java similarity index 100% rename from src/tv/porst/jhexview/ColoredRange.java rename to src/main/java/tv/porst/jhexview/ColoredRange.java diff --git a/src/tv/porst/jhexview/ColoredRangeManager.java b/src/main/java/tv/porst/jhexview/ColoredRangeManager.java similarity index 100% rename from src/tv/porst/jhexview/ColoredRangeManager.java rename to src/main/java/tv/porst/jhexview/ColoredRangeManager.java diff --git a/src/tv/porst/jhexview/DataChangedEvent.java b/src/main/java/tv/porst/jhexview/DataChangedEvent.java similarity index 100% rename from src/tv/porst/jhexview/DataChangedEvent.java rename to src/main/java/tv/porst/jhexview/DataChangedEvent.java diff --git a/src/tv/porst/jhexview/HexViewEvent.java b/src/main/java/tv/porst/jhexview/HexViewEvent.java similarity index 100% rename from src/tv/porst/jhexview/HexViewEvent.java rename to src/main/java/tv/porst/jhexview/HexViewEvent.java diff --git a/src/tv/porst/jhexview/IColormap.java b/src/main/java/tv/porst/jhexview/IColormap.java similarity index 100% rename from src/tv/porst/jhexview/IColormap.java rename to src/main/java/tv/porst/jhexview/IColormap.java diff --git a/src/tv/porst/jhexview/IDataChangedListener.java b/src/main/java/tv/porst/jhexview/IDataChangedListener.java similarity index 100% rename from src/tv/porst/jhexview/IDataChangedListener.java rename to src/main/java/tv/porst/jhexview/IDataChangedListener.java diff --git a/src/tv/porst/jhexview/IDataProvider.java b/src/main/java/tv/porst/jhexview/IDataProvider.java similarity index 100% rename from src/tv/porst/jhexview/IDataProvider.java rename to src/main/java/tv/porst/jhexview/IDataProvider.java diff --git a/src/tv/porst/jhexview/IHexViewListener.java b/src/main/java/tv/porst/jhexview/IHexViewListener.java similarity index 100% rename from src/tv/porst/jhexview/IHexViewListener.java rename to src/main/java/tv/porst/jhexview/IHexViewListener.java diff --git a/src/tv/porst/jhexview/IMenuCreator.java b/src/main/java/tv/porst/jhexview/IMenuCreator.java similarity index 100% rename from src/tv/porst/jhexview/IMenuCreator.java rename to src/main/java/tv/porst/jhexview/IMenuCreator.java diff --git a/src/tv/porst/jhexview/JHexView.java b/src/main/java/tv/porst/jhexview/JHexView.java similarity index 100% rename from src/tv/porst/jhexview/JHexView.java rename to src/main/java/tv/porst/jhexview/JHexView.java diff --git a/src/tv/porst/jhexview/SimpleDataProvider.java b/src/main/java/tv/porst/jhexview/SimpleDataProvider.java similarity index 100% rename from src/tv/porst/jhexview/SimpleDataProvider.java rename to src/main/java/tv/porst/jhexview/SimpleDataProvider.java diff --git a/src/tv/porst/splib/arrays/ArrayHelpers.java b/src/main/java/tv/porst/splib/arrays/ArrayHelpers.java similarity index 100% rename from src/tv/porst/splib/arrays/ArrayHelpers.java rename to src/main/java/tv/porst/splib/arrays/ArrayHelpers.java diff --git a/src/tv/porst/splib/arrays/_Doc.java b/src/main/java/tv/porst/splib/arrays/_Doc.java similarity index 100% rename from src/tv/porst/splib/arrays/_Doc.java rename to src/main/java/tv/porst/splib/arrays/_Doc.java diff --git a/src/tv/porst/splib/binaryparser/AsciiString.java b/src/main/java/tv/porst/splib/binaryparser/AsciiString.java similarity index 100% rename from src/tv/porst/splib/binaryparser/AsciiString.java rename to src/main/java/tv/porst/splib/binaryparser/AsciiString.java diff --git a/src/tv/porst/splib/binaryparser/BinaryParser.java b/src/main/java/tv/porst/splib/binaryparser/BinaryParser.java similarity index 100% rename from src/tv/porst/splib/binaryparser/BinaryParser.java rename to src/main/java/tv/porst/splib/binaryparser/BinaryParser.java diff --git a/src/tv/porst/splib/binaryparser/BinaryParserException.java b/src/main/java/tv/porst/splib/binaryparser/BinaryParserException.java similarity index 100% rename from src/tv/porst/splib/binaryparser/BinaryParserException.java rename to src/main/java/tv/porst/splib/binaryparser/BinaryParserException.java diff --git a/src/tv/porst/splib/binaryparser/BinaryParserHelpers.java b/src/main/java/tv/porst/splib/binaryparser/BinaryParserHelpers.java similarity index 100% rename from src/tv/porst/splib/binaryparser/BinaryParserHelpers.java rename to src/main/java/tv/porst/splib/binaryparser/BinaryParserHelpers.java diff --git a/src/tv/porst/splib/binaryparser/Bits.java b/src/main/java/tv/porst/splib/binaryparser/Bits.java similarity index 100% rename from src/tv/porst/splib/binaryparser/Bits.java rename to src/main/java/tv/porst/splib/binaryparser/Bits.java diff --git a/src/tv/porst/splib/binaryparser/Flag.java b/src/main/java/tv/porst/splib/binaryparser/Flag.java similarity index 100% rename from src/tv/porst/splib/binaryparser/Flag.java rename to src/main/java/tv/porst/splib/binaryparser/Flag.java diff --git a/src/tv/porst/splib/binaryparser/Float16.java b/src/main/java/tv/porst/splib/binaryparser/Float16.java similarity index 100% rename from src/tv/porst/splib/binaryparser/Float16.java rename to src/main/java/tv/porst/splib/binaryparser/Float16.java diff --git a/src/tv/porst/splib/binaryparser/Float32.java b/src/main/java/tv/porst/splib/binaryparser/Float32.java similarity index 100% rename from src/tv/porst/splib/binaryparser/Float32.java rename to src/main/java/tv/porst/splib/binaryparser/Float32.java diff --git a/src/tv/porst/splib/binaryparser/Float64.java b/src/main/java/tv/porst/splib/binaryparser/Float64.java similarity index 100% rename from src/tv/porst/splib/binaryparser/Float64.java rename to src/main/java/tv/porst/splib/binaryparser/Float64.java diff --git a/src/tv/porst/splib/binaryparser/IFileElement.java b/src/main/java/tv/porst/splib/binaryparser/IFileElement.java similarity index 100% rename from src/tv/porst/splib/binaryparser/IFileElement.java rename to src/main/java/tv/porst/splib/binaryparser/IFileElement.java diff --git a/src/tv/porst/splib/binaryparser/INT16.java b/src/main/java/tv/porst/splib/binaryparser/INT16.java similarity index 100% rename from src/tv/porst/splib/binaryparser/INT16.java rename to src/main/java/tv/porst/splib/binaryparser/INT16.java diff --git a/src/tv/porst/splib/binaryparser/INT24.java b/src/main/java/tv/porst/splib/binaryparser/INT24.java similarity index 100% rename from src/tv/porst/splib/binaryparser/INT24.java rename to src/main/java/tv/porst/splib/binaryparser/INT24.java diff --git a/src/tv/porst/splib/binaryparser/INT32.java b/src/main/java/tv/porst/splib/binaryparser/INT32.java similarity index 100% rename from src/tv/porst/splib/binaryparser/INT32.java rename to src/main/java/tv/porst/splib/binaryparser/INT32.java diff --git a/src/tv/porst/splib/binaryparser/INT64.java b/src/main/java/tv/porst/splib/binaryparser/INT64.java similarity index 100% rename from src/tv/porst/splib/binaryparser/INT64.java rename to src/main/java/tv/porst/splib/binaryparser/INT64.java diff --git a/src/tv/porst/splib/binaryparser/IParsedINTElement.java b/src/main/java/tv/porst/splib/binaryparser/IParsedINTElement.java similarity index 100% rename from src/tv/porst/splib/binaryparser/IParsedINTElement.java rename to src/main/java/tv/porst/splib/binaryparser/IParsedINTElement.java diff --git a/src/tv/porst/splib/binaryparser/ParsedType.java b/src/main/java/tv/porst/splib/binaryparser/ParsedType.java similarity index 100% rename from src/tv/porst/splib/binaryparser/ParsedType.java rename to src/main/java/tv/porst/splib/binaryparser/ParsedType.java diff --git a/src/tv/porst/splib/binaryparser/UBits.java b/src/main/java/tv/porst/splib/binaryparser/UBits.java similarity index 100% rename from src/tv/porst/splib/binaryparser/UBits.java rename to src/main/java/tv/porst/splib/binaryparser/UBits.java diff --git a/src/tv/porst/splib/binaryparser/UINT16.java b/src/main/java/tv/porst/splib/binaryparser/UINT16.java similarity index 100% rename from src/tv/porst/splib/binaryparser/UINT16.java rename to src/main/java/tv/porst/splib/binaryparser/UINT16.java diff --git a/src/tv/porst/splib/binaryparser/UINT32.java b/src/main/java/tv/porst/splib/binaryparser/UINT32.java similarity index 100% rename from src/tv/porst/splib/binaryparser/UINT32.java rename to src/main/java/tv/porst/splib/binaryparser/UINT32.java diff --git a/src/tv/porst/splib/binaryparser/UINT8.java b/src/main/java/tv/porst/splib/binaryparser/UINT8.java similarity index 100% rename from src/tv/porst/splib/binaryparser/UINT8.java rename to src/main/java/tv/porst/splib/binaryparser/UINT8.java diff --git a/src/tv/porst/splib/binaryparser/_Doc.java b/src/main/java/tv/porst/splib/binaryparser/_Doc.java similarity index 100% rename from src/tv/porst/splib/binaryparser/_Doc.java rename to src/main/java/tv/porst/splib/binaryparser/_Doc.java diff --git a/src/tv/porst/splib/convert/ConvertHelpers.java b/src/main/java/tv/porst/splib/convert/ConvertHelpers.java similarity index 100% rename from src/tv/porst/splib/convert/ConvertHelpers.java rename to src/main/java/tv/porst/splib/convert/ConvertHelpers.java diff --git a/src/tv/porst/splib/convert/_Doc.java b/src/main/java/tv/porst/splib/convert/_Doc.java similarity index 100% rename from src/tv/porst/splib/convert/_Doc.java rename to src/main/java/tv/porst/splib/convert/_Doc.java diff --git a/src/tv/porst/splib/file/DirectoryTraverser.java b/src/main/java/tv/porst/splib/file/DirectoryTraverser.java similarity index 100% rename from src/tv/porst/splib/file/DirectoryTraverser.java rename to src/main/java/tv/porst/splib/file/DirectoryTraverser.java diff --git a/src/tv/porst/splib/file/FileHelpers.java b/src/main/java/tv/porst/splib/file/FileHelpers.java similarity index 100% rename from src/tv/porst/splib/file/FileHelpers.java rename to src/main/java/tv/porst/splib/file/FileHelpers.java diff --git a/src/tv/porst/splib/file/IDirectoryTraversalVisitor.java b/src/main/java/tv/porst/splib/file/IDirectoryTraversalVisitor.java similarity index 100% rename from src/tv/porst/splib/file/IDirectoryTraversalVisitor.java rename to src/main/java/tv/porst/splib/file/IDirectoryTraversalVisitor.java diff --git a/src/tv/porst/splib/file/_Doc.java b/src/main/java/tv/porst/splib/file/_Doc.java similarity index 100% rename from src/tv/porst/splib/file/_Doc.java rename to src/main/java/tv/porst/splib/file/_Doc.java diff --git a/src/tv/porst/splib/general/ListenerProvider.java b/src/main/java/tv/porst/splib/general/ListenerProvider.java similarity index 100% rename from src/tv/porst/splib/general/ListenerProvider.java rename to src/main/java/tv/porst/splib/general/ListenerProvider.java diff --git a/src/tv/porst/splib/general/_Doc.java b/src/main/java/tv/porst/splib/general/_Doc.java similarity index 100% rename from src/tv/porst/splib/general/_Doc.java rename to src/main/java/tv/porst/splib/general/_Doc.java diff --git a/src/tv/porst/splib/gui/GuiHelpers.java b/src/main/java/tv/porst/splib/gui/GuiHelpers.java similarity index 100% rename from src/tv/porst/splib/gui/GuiHelpers.java rename to src/main/java/tv/porst/splib/gui/GuiHelpers.java diff --git a/src/tv/porst/splib/gui/_Doc.java b/src/main/java/tv/porst/splib/gui/_Doc.java similarity index 100% rename from src/tv/porst/splib/gui/_Doc.java rename to src/main/java/tv/porst/splib/gui/_Doc.java diff --git a/src/tv/porst/splib/gui/caret/ICaretListener.java b/src/main/java/tv/porst/splib/gui/caret/ICaretListener.java similarity index 100% rename from src/tv/porst/splib/gui/caret/ICaretListener.java rename to src/main/java/tv/porst/splib/gui/caret/ICaretListener.java diff --git a/src/tv/porst/splib/gui/caret/JCaret.java b/src/main/java/tv/porst/splib/gui/caret/JCaret.java similarity index 100% rename from src/tv/porst/splib/gui/caret/JCaret.java rename to src/main/java/tv/porst/splib/gui/caret/JCaret.java diff --git a/src/tv/porst/splib/gui/caret/_Doc.java b/src/main/java/tv/porst/splib/gui/caret/_Doc.java similarity index 100% rename from src/tv/porst/splib/gui/caret/_Doc.java rename to src/main/java/tv/porst/splib/gui/caret/_Doc.java diff --git a/src/tv/porst/splib/gui/tree/IconNode.java b/src/main/java/tv/porst/splib/gui/tree/IconNode.java similarity index 100% rename from src/tv/porst/splib/gui/tree/IconNode.java rename to src/main/java/tv/porst/splib/gui/tree/IconNode.java diff --git a/src/tv/porst/splib/gui/tree/IconTree.java b/src/main/java/tv/porst/splib/gui/tree/IconTree.java similarity index 100% rename from src/tv/porst/splib/gui/tree/IconTree.java rename to src/main/java/tv/porst/splib/gui/tree/IconTree.java diff --git a/src/tv/porst/splib/gui/tree/_Doc.java b/src/main/java/tv/porst/splib/gui/tree/_Doc.java similarity index 100% rename from src/tv/porst/splib/gui/tree/_Doc.java rename to src/main/java/tv/porst/splib/gui/tree/_Doc.java diff --git a/src/tv/porst/splib/maps/MapHelpers.java b/src/main/java/tv/porst/splib/maps/MapHelpers.java similarity index 100% rename from src/tv/porst/splib/maps/MapHelpers.java rename to src/main/java/tv/porst/splib/maps/MapHelpers.java diff --git a/src/tv/porst/splib/maps/_Doc.java b/src/main/java/tv/porst/splib/maps/_Doc.java similarity index 100% rename from src/tv/porst/splib/maps/_Doc.java rename to src/main/java/tv/porst/splib/maps/_Doc.java diff --git a/src/tv/porst/splib/strings/StringHelpers.java b/src/main/java/tv/porst/splib/strings/StringHelpers.java similarity index 100% rename from src/tv/porst/splib/strings/StringHelpers.java rename to src/main/java/tv/porst/splib/strings/StringHelpers.java diff --git a/src/tv/porst/splib/strings/_Doc.java b/src/main/java/tv/porst/splib/strings/_Doc.java similarity index 100% rename from src/tv/porst/splib/strings/_Doc.java rename to src/main/java/tv/porst/splib/strings/_Doc.java