Skip to content

Commit

Permalink
Preparing for 2.1.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ttscoff committed Sep 18, 2023
1 parent a7c0c26 commit 3c83b7b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.1.6

## 2.1.5

## 2.1.4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![Howzit banner image](https://cdn3.brettterpstra.com/uploads/2022/08/gatherheader-rb.webp)


Current version: 2.1.5
Current version: 2.1.6

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.

Expand Down
2 changes: 1 addition & 1 deletion Sources/gather/gather.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Foundation
import HTML2Text
import Readability
import Yams
var VERSION = "2.1.5"
var VERSION = "2.1.6"

var acceptedAnswerOnly = false
var disableReadability = false
Expand Down
18 changes: 10 additions & 8 deletions scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ notarizefile() { # $1: path to file to notarize, $2: identifier
fi

# # wait for status to be not "in progress" any more
request_status="In Progress"

while [[ "$request_status" == "In Progress" ]]; do
echo -n "waiting... "
sleep 10
request_status=$(requeststatus "$requestUUID")
echo "$request_status"
done
# request_status="In Progress"

# while [[ "$request_status" == "In Progress" ]]; do
# echo -n "waiting... "
# sleep 10
# request_status=$(requeststatus "$requestUUID")
# echo "$request_status"
# done

# print status information
xcrun notarytool info \
Expand Down Expand Up @@ -93,6 +93,8 @@ pkgbuild --root "$pkgroot" \
"$pkgpath"

# upload for notarization
echo "Path: $pkgpath"
echo "Identifier $identifier"
notarizefile "$pkgpath" "$identifier"

# staple result
Expand Down
2 changes: 1 addition & 1 deletion src/_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!--README--><!--GITHUB-->![Howzit banner image](https://cdn3.brettterpstra.com/uploads/2022/08/gatherheader-rb.webp)<!--END GITHUB-->
<!--JEKYLL{% img aligncenter 800 220 /uploads/2022/08/gatherheader-rb.jpg "Howzit banner image" %}-->

Current version: <!--VER-->2.1.4<!--END VER-->
Current version: <!--VER-->2.1.5<!--END VER-->

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.

Expand Down

0 comments on commit 3c83b7b

Please sign in to comment.