Skip to content

Commit

Permalink
Merge pull request #3 from breezedeus/fix
Browse files Browse the repository at this point in the history
Fix: remove the character which causes error on Windows
  • Loading branch information
breezedeus committed Oct 21, 2022
2 parents 70bd4bd + f4f0905 commit 8fd3e2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
python setup.py sdist bdist_wheel

VERSION = 0.1
VERSION = 0.1.1
upload:
python -m twine upload dist/pix2text-$(VERSION)* --verbose

Expand Down
2 changes: 1 addition & 1 deletion pix2text/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# coding: utf-8
# Copyright (C) 2022, [Breezedeus](https://github.com/breezedeus).

__version__ = '0.1'
__version__ = '0.1.1'
2 changes: 1 addition & 1 deletion pix2text/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def render_html(newest_fp, image_type, text, out_html_fp):
"""
html_str += fr'<img src="{newest_fp}" />' + '\n </div>'
html_str += """
<button class="refresh btn" onClick="document.location.reload()">🔄 Refresh</button>
<button class="refresh btn" onClick="document.location.reload()">Refresh</button>
</div>
<hr />
Expand Down

0 comments on commit 8fd3e2a

Please sign in to comment.