Skip to content

Commit 4eb6cee

Browse files
authored
Merge pull request #6 from tip2tail/issue-5-fix-readme
Fixes #5
2 parents 994d89f + 6a2beaf commit 4eb6cee

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

CHANGES.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

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

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
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).
76

87
## [Unreleased]
98

9+
## [1.1.1] - 2020-05-25
10+
11+
### Changed
12+
- Fixed errors in the README.md file
13+
1014
## [1.1.0] - 2020-05-25
1115

1216
### Added
@@ -28,3 +32,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2832
[unreleased]: https://github.com/tip2tail/HexPrintFile/compare/v1.0.1...HEAD
2933
[1.0.1]: https://github.com/tip2tail/HexPrintFile/compare/v1.0.0...v1.0.1
3034
[1.1.0]: https://github.com/tip2tail/HexPrintFile/compare/v1.0.1...v1.1.0
35+
[1.1.1]: https://github.com/tip2tail/HexPrintFile/compare/v1.1.0...v1.1.1

HexPrintFile.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Deterministic needs to be false for the build date functionality to work -->
99
<Deterministic>false</Deterministic>
10-
<AssemblyVersion>1.1.0</AssemblyVersion>
10+
<AssemblyVersion>1.1.1</AssemblyVersion>
1111

1212
</PropertyGroup>
1313

README.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,16 @@ A tool to print the hex representation of a file, or portion of a file
5858
Usage: HexPrintFile [options] <file>
5959
6060
Arguments:
61-
file File to hex print
61+
file File to hex print
6262
6363
Options:
64-
-?|-h|--help Show help information
65-
-s|--start-byte <BYTE> Byte to start reading from. 0 if excluded. Counted from index 0.
66-
-e|--end-byte <BYTE> Byte to read to (inclusive). Reads to EOF if excluded. Counted from index 0. Cannot be used with -c.
67-
-c|--count-bytes <COUNT> Returns X bytes from start byte (if provided). Cannot be used with -e.
68-
-x|--extended Use extended ASCII characters in output.
69-
-o|--index-from-one Index the bytes from 1 rather than 0.
64+
-?|-h|--help Show help information
65+
-s|--start-byte <BYTE> Byte to start reading from. 0 if excluded. Counted from index 0.
66+
-e|--end-byte <BYTE> Byte to read to (inclusive). Reads to EOF if excluded. Counted from index 0. Cannot be used with -c.
67+
-c|--count-bytes <COUNT> Returns X bytes from start byte (if provided). Cannot be used with -e.
68+
-r|--read-chunk-size <BYTES> Sets the chunk size. Minimum 4, Maximum 64. Default is 16.
69+
-x|--extended Use extended ASCII characters in output.
70+
-o|--index-from-one Index the bytes from 1 rather than 0.
7071
7172
> ----------------------------------------------------
7273
> Created by Mark Young
@@ -83,9 +84,11 @@ Options:
8384
> 7: End byte less than start byte
8485
> 8: Command line parsing exception
8586
> 9: Start byte is less than one and index from one mode enabled
87+
> 10: Read block size cannot be less than 4 bytes
88+
> 11: Read block size cannot be more than 64 bytes
8689
> ----------------------------------------------------
87-
> Version: 1.0.0
88-
> Buid Date: 2020-05-23 01:36:55
90+
> Version: 1.1.1
91+
> Buid Date: 2020-05-25 11:49:45
8992
> ----------------------------------------------------
9093
````
9194

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

115+
## Contributors
116+
- Mark Young (tip2tail)
117+
118+
112119
## Build Release Version
113120

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

129136
<!-- LICENSE -->
130137
## License
131-
132138
Distributed under the MIT License. See `LICENSE` for more information.
133139

134-
135-
136140
<!-- CONTACT -->
137-
## Contact
138-
139-
Your Name - [@tip2tail](https://twitter.com/tip2tail)
140-
141-
Project Link: [https://github.com/tip2tail/HexPrintFile](https://github.com/tip2tail/HexPrintFile)
141+
## Project Owner
142+
Mark Young - [@tip2tail](https://twitter.com/tip2tail)
142143

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

0 commit comments

Comments
 (0)