Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.1.1] - 2020-05-25

### Changed
- Fixed errors in the README.md file

## [1.1.0] - 2020-05-25

### Added
Expand All @@ -28,3 +32,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[unreleased]: https://github.com/tip2tail/HexPrintFile/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/tip2tail/HexPrintFile/compare/v1.0.0...v1.0.1
[1.1.0]: https://github.com/tip2tail/HexPrintFile/compare/v1.0.1...v1.1.0
[1.1.1]: https://github.com/tip2tail/HexPrintFile/compare/v1.1.0...v1.1.1
2 changes: 1 addition & 1 deletion HexPrintFile.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<!-- Deterministic needs to be false for the build date functionality to work -->
<Deterministic>false</Deterministic>
<AssemblyVersion>1.1.0</AssemblyVersion>
<AssemblyVersion>1.1.1</AssemblyVersion>

</PropertyGroup>

Expand Down
35 changes: 18 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,16 @@ A tool to print the hex representation of a file, or portion of a file
Usage: HexPrintFile [options] <file>

Arguments:
file File to hex print
file File to hex print

Options:
-?|-h|--help Show help information
-s|--start-byte <BYTE> Byte to start reading from. 0 if excluded. Counted from index 0.
-e|--end-byte <BYTE> Byte to read to (inclusive). Reads to EOF if excluded. Counted from index 0. Cannot be used with -c.
-c|--count-bytes <COUNT> Returns X bytes from start byte (if provided). Cannot be used with -e.
-x|--extended Use extended ASCII characters in output.
-o|--index-from-one Index the bytes from 1 rather than 0.
-?|-h|--help Show help information
-s|--start-byte <BYTE> Byte to start reading from. 0 if excluded. Counted from index 0.
-e|--end-byte <BYTE> Byte to read to (inclusive). Reads to EOF if excluded. Counted from index 0. Cannot be used with -c.
-c|--count-bytes <COUNT> Returns X bytes from start byte (if provided). Cannot be used with -e.
-r|--read-chunk-size <BYTES> Sets the chunk size. Minimum 4, Maximum 64. Default is 16.
-x|--extended Use extended ASCII characters in output.
-o|--index-from-one Index the bytes from 1 rather than 0.

> ----------------------------------------------------
> Created by Mark Young
Expand All @@ -83,9 +84,11 @@ Options:
> 7: End byte less than start byte
> 8: Command line parsing exception
> 9: Start byte is less than one and index from one mode enabled
> 10: Read block size cannot be less than 4 bytes
> 11: Read block size cannot be more than 64 bytes
> ----------------------------------------------------
> Version: 1.0.0
> Buid Date: 2020-05-23 01:36:55
> Version: 1.1.1
> Buid Date: 2020-05-25 11:49:45
> ----------------------------------------------------
````

Expand All @@ -109,6 +112,10 @@ Contributions are what make the open source community such an amazing place to b
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

## Contributors
- Mark Young (tip2tail)


## Build Release Version

To build a release version use the following commands.
Expand All @@ -128,17 +135,11 @@ dotnet publish -c Release --self-contained -r osx-x64 /p:PublishSingleFile=true

<!-- LICENSE -->
## License

Distributed under the MIT License. See `LICENSE` for more information.



<!-- CONTACT -->
## Contact

Your Name - [@tip2tail](https://twitter.com/tip2tail)

Project Link: [https://github.com/tip2tail/HexPrintFile](https://github.com/tip2tail/HexPrintFile)
## Project Owner
Mark Young - [@tip2tail](https://twitter.com/tip2tail)

<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
Expand Down