Skip to content

Commit

Permalink
RELEASE: This is version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed May 9, 2024
1 parent c0b8a82 commit 06901a5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
Thursday, 2024-05-09 (Version 1.0.0)
- Implemented loading PDFs
- Implemented navigating through the PDF
- Implemented detecting text regions
- Implemented modifying text regions
- Implemented saving/loading text regions
- Implemented converting PDFs to text

Sunday, 2024-05-05 (Version 0.0.0)
- Started the PDF Textorizer project
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PROJECT_NAME = "PDF Textorizer"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.0.0
PROJECT_NUMBER = 1.0.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Changes in PDF Textorizer version 1.0.0
=======================================

This is the first official release of PDF Textorizer.

PDF Textorizer is a GUI application to interactively extract text from
multi-column PDFs, by allowing the user to modify the detected text regions
before converting the PDF to text.



2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import re
import subprocess

VERSION_FALLBACK = "0.0.0+unk"
VERSION_FALLBACK = "1.0.0+unk"


def get_version() -> str:
Expand Down

0 comments on commit 06901a5

Please sign in to comment.