diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5c933..149bf6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 2.0.33 + +#### NEW + +- Use %date, %slugdate, %title, and %slug in --file paths +- %slug for url scheme templates + +#### IMPROVED + +- Sanitize filenames where needed + ## 2.0.32 #### IMPROVED diff --git a/README.md b/README.md index fe8eb49..45339b8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Howzit banner image](https://cdn3.brettterpstra.com/uploads/2022/08/gatherheader-rb.webp) -Current version: 2.0.32 +Current version: 2.0.33 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. diff --git a/Sources/gather/gather.swift b/Sources/gather/gather.swift index b638e9c..5d131af 100644 --- a/Sources/gather/gather.swift +++ b/Sources/gather/gather.swift @@ -4,7 +4,7 @@ import Cocoa import Foundation import HTML2Text import Readability -var VERSION = "2.0.32" +var VERSION = "2.0.33" var acceptedAnswerOnly = false var disableReadability = false diff --git a/buildnotes.md.secret b/buildnotes.md.secret index 3cd14ad..c4d8844 100644 Binary files a/buildnotes.md.secret and b/buildnotes.md.secret differ