Skip to content

Commit

Permalink
Error solution when opening 'pdftohtml' window (#1)
Browse files Browse the repository at this point in the history
## Fixed Bugs:
- Bug fix in the main window **pdfgui_tools.py** when trying to open
**pdfgui_pdftotext.py**
-  Change version
  • Loading branch information
TheWatcherMultiversal authored Aug 26, 2023
2 parents 2e4dc59 + 08f5c27 commit 8f78708
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
## Install via deb package
To install pdfgui_tools, you will first need to download the **Debian package**, which can be found at the following link:

<a href="https://github.com/TheWatcherMultiversal/pdfgui_tools/releases/download/v1.0.0/pdfgui_tools_stable-release_1.0.0_all.deb" target="_blank">📦 Download deb package</a>
<a href="https://github.com/TheWatcherMultiversal/pdfgui_tools/releases/download/v1.0.1/pdfgui_tools_stable-release_1.0.0_all.deb" target="_blank">📦 Download deb package</a>

Once we have our **Debian package** installed, simply execute the following command, and it will be downloaded to our system:

sudo dpkg -i pdfgui_tools_stable-release_1.0.0_all.deb
sudo dpkg -i pdfgui_tools_stable-release_1.0.1_all.deb

- Note: If we find any missing dependencies, it's just a matter of installing them with the `sudo apt install -f` command

Expand Down
2 changes: 1 addition & 1 deletion code/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "About"))
self.label.setText(_translate("MainWindow", "PDF GUI Tools"))
self.label_3.setText(_translate("MainWindow", "Version 1.0.0"))
self.label_3.setText(_translate("MainWindow", "Version 1.0.1"))
self.label_2.setText(_translate("MainWindow", "PDF GUI Tools is a graphical user interface tool that integrates the features of poppler-utils."))
self.label_4.setText(_translate("MainWindow", "© Angel M 2021 - 2023"))
self.label_5.setText(_translate("MainWindow", "GNU GENERAL PUBLIC LICENSE v3"))
Expand Down
2 changes: 1 addition & 1 deletion code/pdfgui_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def setupUi(self, MainWindow):
# Buttons
self.pdfunite_button.clicked.connect(self.pdfunite)
self.pdftohtml_button.clicked.connect(self.pdftohtml)
self.pdftotext_button.clicked.connect(self.pdftohtml)
self.pdftotext_button.clicked.connect(self.pdftotext)


# ==============================================================+
Expand Down
2 changes: 1 addition & 1 deletion command/pdfgui_tools
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

set -e

PDFGUI_TOOLS_VERSION="v1.0.0"
PDFGUI_TOOLS_VERSION="v1.0.1"

case "$1" in
-h|--help)
Expand Down
2 changes: 1 addition & 1 deletion designer/about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Version 1.0.0</string>
<string>Version 1.0.1</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit 8f78708

Please sign in to comment.