aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2020-09-28 05:10:27 +0200
committerPřemysl Eric Janouch <p@janouch.name>2020-09-28 05:10:27 +0200
commitb3f117a7856f8aadd853b24f946d9807e1fa7197 (patch)
treea41dbd3f18eac2d01e3495e99f1954afbd509254
parentd87ae4bfba58429d0c55eb6db94489e8747dc1dd (diff)
downloadhex-b3f117a7856f8aadd853b24f946d9807e1fa7197.tar.gz
hex-b3f117a7856f8aadd853b24f946d9807e1fa7197.tar.xz
hex-b3f117a7856f8aadd853b24f946d9807e1fa7197.zip
Name change
-rw-r--r--CMakeLists.txt4
-rw-r--r--LICENSE2
-rw-r--r--hex.c2
-rw-r--r--plugins/bencode.lua2
-rw-r--r--plugins/elf.lua2
-rw-r--r--plugins/gzip.lua2
-rw-r--r--plugins/pcap.lua2
-rw-r--r--plugins/pdf.lua2
-rw-r--r--plugins/vdi.lua2
-rw-r--r--plugins/zip.lua2
-rw-r--r--plugins/zlib.lua2
11 files changed, 12 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f876920..b9b72e5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -122,8 +122,8 @@ endforeach ()
# CPack
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hex viewer")
-set (CPACK_PACKAGE_VENDOR "Premysl Janouch")
-set (CPACK_PACKAGE_CONTACT "Přemysl Janouch <p@janouch.name>")
+set (CPACK_PACKAGE_VENDOR "Premysl Eric Janouch")
+set (CPACK_PACKAGE_CONTACT "Přemysl Eric Janouch <p@janouch.name>")
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
set (CPACK_PACKAGE_VERSION_MAJOR ${project_VERSION_MAJOR})
set (CPACK_PACKAGE_VERSION_MINOR ${project_VERSION_MINOR})
diff --git a/LICENSE b/LICENSE
index 44aed90..ddfaee0 100644
--- a/LICENSE
+++ b/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
purpose with or without fee is hereby granted.
diff --git a/hex.c b/hex.c
index d29eb65..5cb1c3c 100644
--- a/hex.c
+++ b/hex.c
@@ -1,7 +1,7 @@
/*
* 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
* purpose with or without fee is hereby granted.
diff --git a/plugins/bencode.lua b/plugins/bencode.lua
index 8a73bdd..e395df5 100644
--- a/plugins/bencode.lua
+++ b/plugins/bencode.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/elf.lua b/plugins/elf.lua
index 2dfb812..f12cadf 100644
--- a/plugins/elf.lua
+++ b/plugins/elf.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/gzip.lua b/plugins/gzip.lua
index 7055c2c..4d8bf15 100644
--- a/plugins/gzip.lua
+++ b/plugins/gzip.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/pcap.lua b/plugins/pcap.lua
index 4c5f9b5..a02fc8f 100644
--- a/plugins/pcap.lua
+++ b/plugins/pcap.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/pdf.lua b/plugins/pdf.lua
index c8e7bbd..d4c7f26 100644
--- a/plugins/pdf.lua
+++ b/plugins/pdf.lua
@@ -5,7 +5,7 @@
-- 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.
--
--- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/vdi.lua b/plugins/vdi.lua
index 5f937e5..6124e43 100644
--- a/plugins/vdi.lua
+++ b/plugins/vdi.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/zip.lua b/plugins/zip.lua
index 0a2dd81..413dec8 100644
--- a/plugins/zip.lua
+++ b/plugins/zip.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.
diff --git a/plugins/zlib.lua b/plugins/zlib.lua
index b9afc9f..18d77b7 100644
--- a/plugins/zlib.lua
+++ b/plugins/zlib.lua
@@ -1,7 +1,7 @@
--
-- 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
-- purpose with or without fee is hereby granted.