aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-04-20 19:04:49 +0200
committerMatěj Cepl <mcepl@cepl.eu>2024-05-16 19:38:13 +0200
commitdf2fb6387dc8523a26ef8ec15f80d86b2e1d0921 (patch)
tree5057669a706512044822a8c432626e5cec77822b
parentf03815055c4fae8acf8a00db0030223cbd375054 (diff)
downloadepubgrep-df2fb6387dc8523a26ef8ec15f80d86b2e1d0921.tar.gz
Add LICENSE and README.md
-rw-r--r--.gitignore1
-rw-r--r--CHANGES59
-rw-r--r--LICENSE23
-rw-r--r--README.md10
4 files changed, 93 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 7dfef7f..8636081 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ MANIFEST
.tox/
.coverage
.vscode/
+.ropeproject/
diff --git a/CHANGES b/CHANGES
new file mode 100644
index 0000000..831e455
--- /dev/null
+++ b/CHANGES
@@ -0,0 +1,59 @@
+- Add LICENSE, CHANGES, and README.md
+
+0.8.0 - 2022-09-07
+------------------
+
+- Add author search
+
+0.7.1 - 2022-02-01
+------------------
+
+- Make sure title is always assigned in _metadata search
+
+0.7.0 - 2021-05-09
+------------------
+
+- When searching through metadata, search through tags as well
+- Reorganize print of booktitles and use option dicts instead of
+ zillion params
+
+0.6.0 - 2020-12-09
+------------------
+
+- Add search in descriptions
+
+0.5.0 - 2020-09-06
+------------------
+
+- Add --weighted-count option (same as -c, but weight the count
+ negatively proportionally against the length of the text)
+
+0.4.1 - 2020-01-18
+------------------
+
+- Generate properly binary as an entry_point
+
+0.4.0 - 2020-01-18
+------------------
+
+- Make epubgrep concurrent for speed improvement
+ Surprisingly ProcessPoolExecutor is vastly faster and less
+ memory demanding than ThreadPoolExecutor
+
+0.3.0 - 2019-10-11
+------------------
+
+- Make marking found patterns with color default
+- Add -c (count occurences only) and -o (don't use colour for
+ marking found patterns) options
+- Add multi-line option
+
+0.2.0 - 2018-11-30
+------------------
+
+- Add minimal setup.py and test
+
+0.1.0 - 2018-11-30
+------------------
+
+- Initial version
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..12698eb
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,23 @@
+Copyright (c) 2023, Matěj Cepl
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom
+the Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice (including
+the next paragraph) shall be included in all copies or
+substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
+AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..08099ca
--- /dev/null
+++ b/README.md
@@ -0,0 +1,10 @@
+epubgrep
+========
+
+Simple tool to search through EPub files.
+
+All issues, questions, complaints, or (even better!) patches
+should be send via email to
+[~mcepl/devel@lists.sr.ht](mailto:~mcepl/devel@lists.sr.ht) email
+list (for patches use [git
+send-email](https://git-send-email.io/)).