rename offset -> width

This commit is contained in:
Martinez 2017-10-16 10:52:39 +02:00
parent 57f5681b35
commit 8de4ebd5d2
2 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@ if __name__ == "__main__":
main.add_option("header", "Show a header (byte numbers).", bool, [True], abbr="H") main.add_option("header", "Show a header (byte numbers).", bool, [True], abbr="H")
main.add_option("offsets", "Show a column of offsets (line numbers).", bool, [True], abbr="O") main.add_option("offsets", "Show a column of offsets (line numbers).", bool, [True], abbr="O")
main.add_option("ascii", "Show an ASCII translation (text).", bool, [True], abbr="A") main.add_option("ascii", "Show an ASCII translation (text).", bool, [True], abbr="A")
main.add_option("offset", "How many bytes per line of output to show.", int, [16], count=1, abbr="o") main.add_option("width", "How many bytes per line of output to show.", int, [32], count=1, abbr="o")
main.add_option("seek", "Byte number at which output starts.", int, [0], count=1, abbr="s") main.add_option("seek", "Byte number at which output starts.", int, [0], count=1, abbr="s")
main.add_option("to", "Byte number where output ends. Use <m>0<.> to read the whole file but keep in mind that it has to fit in memory.", int, [10240], count=1, abbr="t") main.add_option("to", "Byte number where output ends. Use <m>0<.> to read the whole file but keep in mind that it has to fit in memory.", int, [10240], count=1, abbr="t")
@ -41,4 +41,4 @@ if __name__ == "__main__":
f.seek(main.cfg.seek) f.seek(main.cfg.seek)
data = f.read(main.cfg.to - main.cfg.seek) data = f.read(main.cfg.to - main.cfg.seek)
over.misc.hexdump(data, offset=main.cfg.offset, show_header=main.cfg.header, show_offsets=main.cfg.offsets, show_ascii=main.cfg.ascii, use_colors=main.cfg.color, initial_offset=main.cfg.seek) over.misc.hexdump(data, width=main.cfg.width, show_header=main.cfg.header, show_offsets=main.cfg.offsets, show_ascii=main.cfg.ascii, use_colors=main.cfg.color, initial_offset=main.cfg.seek)

View file

@ -4,5 +4,5 @@
major = 0 # VERSION_MAJOR_IDENTIFIER major = 0 # VERSION_MAJOR_IDENTIFIER
minor = 1 # VERSION_MINOR_IDENTIFIER minor = 1 # VERSION_MINOR_IDENTIFIER
# VERSION_LAST_MM 0.1 # VERSION_LAST_MM 0.1
patch = 2 # VERSION_PATCH_IDENTIFIER patch = 3 # VERSION_PATCH_IDENTIFIER
str = "0.1.2" # VERSION_STRING_IDENTIFIER str = "0.1.3" # VERSION_STRING_IDENTIFIER