Skip to content

Commit

Permalink
Bump to 0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dynobo committed Aug 3, 2022
1 parent 1bc3d1b commit 2d3f2fe
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -22,11 +22,11 @@
Install a pre-build release:

- **Windows**:
[NormCap-0.3.6-Windows.msi](https://github.com/dynobo/normcap/releases/download/v0.3.6/NormCap-0.3.6-Windows.msi)
[NormCap-0.3.7-Windows.msi](https://github.com/dynobo/normcap/releases/download/v0.3.7/NormCap-0.3.7-Windows.msi)
- **Linux**:
[NormCap-0.3.6-x86_64.AppImage](https://github.com/dynobo/normcap/releases/download/v0.3.6/NormCap-0.3.6-x86_64.AppImage)
[NormCap-0.3.7-x86_64.AppImage](https://github.com/dynobo/normcap/releases/download/v0.3.7/NormCap-0.3.7-x86_64.AppImage)
- **macOS**:
[NormCap-0.3.6-MacOS.dmg](https://github.com/dynobo/normcap/releases/download/v0.3.6/NormCap-0.3.6-MacOS.dmg)
[NormCap-0.3.7-MacOS.dmg](https://github.com/dynobo/normcap/releases/download/v0.3.7/NormCap-0.3.7-MacOS.dmg)
\
<sub>(On macOS, allow the unsigned application on first start: "System Preferences"
→ "Security & Privacy" → "General" → "Open anyway". You might also need to allow
Expand Down
8 changes: 4 additions & 4 deletions docs/index.html
Expand Up @@ -48,7 +48,7 @@
<a id="link-to-source" href="https://github.com/dynobo/normcap" target="_blank"></a>
<div>
<div class="hgroup">
<h1>NormCap v0.3.6</h1>
<h1>NormCap v0.3.7</h1>
<h2>
<a href="https://en.wikipedia.org/wiki/Optical_character_recognition" target="_blank">OCR</a>
-powered screenshot tool to capture text instead of images.
Expand All @@ -62,19 +62,19 @@ <h2>
<ul>
<li>
<a
href="https://github.com/dynobo/normcap/releases/download/v0.3.6/NormCap-0.3.6-Windows.msi">NormCap-<strong>Windows</strong>.msi</a>
href="https://github.com/dynobo/normcap/releases/download/v0.3.7/NormCap-0.3.7-Windows.msi">NormCap-<strong>Windows</strong>.msi</a>
<small>~85 MB</small>
<span data-tooltip="Run installer and start through start menu">🛈</span>
</li>
<li>
<a
href="https://github.com/dynobo/normcap/releases/download/v0.3.6/NormCap-0.3.6-x86_64.AppImage">NormCap-<strong>Linux</strong>.AppImage</a>
href="https://github.com/dynobo/normcap/releases/download/v0.3.7/NormCap-0.3.7-x86_64.AppImage">NormCap-<strong>Linux</strong>.AppImage</a>
<small>~85 MB</small>
<span data-tooltip="Make the file executable and run it">🛈</span>
</li>
<li>
<a
href="https://github.com/dynobo/normcap/releases/download/v0.3.6/NormCap-0.3.6-MacOS.dmg">NormCap-<strong>MacOS</strong>.dmg</a>
href="https://github.com/dynobo/normcap/releases/download/v0.3.7/NormCap-0.3.7-MacOS.dmg">NormCap-<strong>MacOS</strong>.dmg</a>
<small>~75 MB</small>
<span class="wide-tooltip"
data-tooltip="Unsigned application! You have to grant permissions on first start:&#10;'System Preferences' → 'Security & Privacy' → 'General' → 'Open anyway'.&#10;(You might have to grant permissions to take screenshots, too.)">🛈</span>
Expand Down
2 changes: 1 addition & 1 deletion package/normcap.wxs
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<?define ProductVersion = "0.3.6" ?>
<?define ProductVersion = "0.3.7" ?>
<?define ProductUpgradeCode = "63ee06c1-0030-59d7-a5ae-31b45fc8261a" ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="$(var.ProductUpgradeCode)" Name="NormCap" Version="$(var.ProductVersion)" Manufacturer="dynobo" Language="1033">
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "normcap"
version = "0.3.6"
version = "0.3.7"
description = "OCR-powered screen-capture tool to capture information instead of images."
keywords = ["screenshot", "ocr", "capture", "clipboard"]
license = "GPLv3"
Expand Down Expand Up @@ -133,7 +133,7 @@ build-backend = "poetry.core.masonry.api"
[tool.briefcase]
project_name = "NormCap"
bundle = "eu.dynobo"
version = "0.3.6"
version = "0.3.7"
url = "https://github.com/dynobo/normcap"
license = "GPLv3"
author = 'dynobo'
Expand All @@ -160,7 +160,7 @@ system_requires = ["tesseract-ocr", "pkg-config", "libtiff-dev", "libfuse2"]
[tool.tbump]

[tool.tbump.version]
current = "0.3.6"
current = "0.3.7"
regex = '''
(?P<major>\d+)
\.
Expand Down
2 changes: 1 addition & 1 deletion src/normcap/__init__.py
@@ -1,3 +1,3 @@
"""Normcap Package."""

__version__ = "0.3.6"
__version__ = "0.3.7"

0 comments on commit 2d3f2fe

Please sign in to comment.