Skip to content

Commit 3c83b7b

Browse files
committed
Preparing for 2.1.6 release
1 parent a7c0c26 commit 3c83b7b

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.1.6
2+
13
## 2.1.5
24

35
## 2.1.4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![Howzit banner image](https://cdn3.brettterpstra.com/uploads/2022/08/gatherheader-rb.webp)
44

55

6-
Current version: 2.1.5
6+
Current version: 2.1.6
77

88
This project is the successor to read2text, which was a Python based tool that used Arc90 Readability and html2text to convert web URLs to Markdown documents, ready to store in your notes. It takes its name from another of my similar projects that I've since retired. It was this, but with a GUI, and this is infinitely more scriptable and is designed to nestle into your favorite tools and projects.
99

Sources/gather/gather.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Foundation
55
import HTML2Text
66
import Readability
77
import Yams
8-
var VERSION = "2.1.5"
8+
var VERSION = "2.1.6"
99

1010
var acceptedAnswerOnly = false
1111
var disableReadability = false

scripts/package.sh

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ notarizefile() { # $1: path to file to notarize, $2: identifier
5252
fi
5353

5454
# # wait for status to be not "in progress" any more
55-
request_status="In Progress"
56-
57-
while [[ "$request_status" == "In Progress" ]]; do
58-
echo -n "waiting... "
59-
sleep 10
60-
request_status=$(requeststatus "$requestUUID")
61-
echo "$request_status"
62-
done
55+
# request_status="In Progress"
56+
57+
# while [[ "$request_status" == "In Progress" ]]; do
58+
# echo -n "waiting... "
59+
# sleep 10
60+
# request_status=$(requeststatus "$requestUUID")
61+
# echo "$request_status"
62+
# done
6363

6464
# print status information
6565
xcrun notarytool info \
@@ -93,6 +93,8 @@ pkgbuild --root "$pkgroot" \
9393
"$pkgpath"
9494

9595
# upload for notarization
96+
echo "Path: $pkgpath"
97+
echo "Identifier $identifier"
9698
notarizefile "$pkgpath" "$identifier"
9799

98100
# staple result

src/_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!--README--><!--GITHUB-->![Howzit banner image](https://cdn3.brettterpstra.com/uploads/2022/08/gatherheader-rb.webp)<!--END GITHUB-->
44
<!--JEKYLL{% img aligncenter 800 220 /uploads/2022/08/gatherheader-rb.jpg "Howzit banner image" %}-->
55

6-
Current version: <!--VER-->2.1.4<!--END VER-->
6+
Current version: <!--VER-->2.1.5<!--END VER-->
77

88
This project is the successor to read2text, which was a Python based tool that used Arc90 Readability and html2text to convert web URLs to Markdown documents, ready to store in your notes. It takes its name from another of my similar projects that I've since retired. It was this, but with a GUI, and this is infinitely more scriptable and is designed to nestle into your favorite tools and projects.
99

0 commit comments

Comments
 (0)