Name change
This commit is contained in:
parent
d87ae4bfba
commit
b3f117a785
|
@ -122,8 +122,8 @@ endforeach ()
|
||||||
|
|
||||||
# CPack
|
# CPack
|
||||||
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hex viewer")
|
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hex viewer")
|
||||||
set (CPACK_PACKAGE_VENDOR "Premysl Janouch")
|
set (CPACK_PACKAGE_VENDOR "Premysl Eric Janouch")
|
||||||
set (CPACK_PACKAGE_CONTACT "Přemysl Janouch <p@janouch.name>")
|
set (CPACK_PACKAGE_CONTACT "Přemysl Eric Janouch <p@janouch.name>")
|
||||||
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
|
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
|
||||||
set (CPACK_PACKAGE_VERSION_MAJOR ${project_VERSION_MAJOR})
|
set (CPACK_PACKAGE_VERSION_MAJOR ${project_VERSION_MAJOR})
|
||||||
set (CPACK_PACKAGE_VERSION_MINOR ${project_VERSION_MINOR})
|
set (CPACK_PACKAGE_VERSION_MINOR ${project_VERSION_MINOR})
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2016 - 2017, Přemysl Janouch <p@janouch.name>
|
Copyright (c) 2016 - 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
purpose with or without fee is hereby granted.
|
purpose with or without fee is hereby granted.
|
||||||
|
|
2
hex.c
2
hex.c
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* hex -- hex viewer
|
* hex -- hex viewer
|
||||||
*
|
*
|
||||||
* Copyright (c) 2016 - 2017, Přemysl Janouch <p@janouch.name>
|
* Copyright (c) 2016 - 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted.
|
* purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- bencode.lua: BitTorrent data encoding
|
-- bencode.lua: BitTorrent data encoding
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- elf.lua: Executable and Linkable Format
|
-- elf.lua: Executable and Linkable Format
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- gzip.lua: GZIP File Format
|
-- gzip.lua: GZIP File Format
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- pcap.lua: libpcap file format
|
-- pcap.lua: libpcap file format
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
-- In practice almost useless, I just wanted to learn about the file format.
|
-- In practice almost useless, I just wanted to learn about the file format.
|
||||||
-- FIXME: it's also not very robust and doesn't support all documents.
|
-- FIXME: it's also not very robust and doesn't support all documents.
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- vdi.lua: VirtualBox Disk Image
|
-- vdi.lua: VirtualBox Disk Image
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- zip.lua: ZIP archives
|
-- zip.lua: ZIP archives
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
--
|
--
|
||||||
-- zlib.lua: ZLIB Compressed Data Format
|
-- zlib.lua: ZLIB Compressed Data Format
|
||||||
--
|
--
|
||||||
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
-- Copyright (c) 2017, Přemysl Eric Janouch <p@janouch.name>
|
||||||
--
|
--
|
||||||
-- Permission to use, copy, modify, and/or distribute this software for any
|
-- Permission to use, copy, modify, and/or distribute this software for any
|
||||||
-- purpose with or without fee is hereby granted.
|
-- purpose with or without fee is hereby granted.
|
||||||
|
|
Loading…
Reference in New Issue