From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links ec9ef1c..0b765b2 master -> master
From Peter Sanchez to ~netlandish/links-dev
Now you can now do the following to specify a specific organization: - Use the "use_org" query string parameter in your API calls - Give the organization slug as the username value when using Basic Authorization. See documention for more details. References: https://todo.code.netlandish.com/~netlandish/links/76 Changelog-added: Ability to specify organization in Pinboard API bridge calls --- pinboard/middleware.go | 2 + pinboard/responses.go | 40 +++++++---- [message trimmed]
From Peter Sanchez to ~netlandish/links-dev
Hi all, I am happy to announce the release of links 0.5.0. https://git.code.netlandish.com/~netlandish/links/refs/0.5.0 Release highlights: # Added - Ability to hide spammers or seo farms from the recent or popular pages. - Pinboard API to GraphQL bridge # Fixed
From Peter Sanchez to ~netlandish/links-discuss
Hi all, I am happy to announce the release of links 0.5.0. https://git.code.netlandish.com/~netlandish/links/refs/0.5.0 Release highlights: # Added - Ability to hide spammers or seo farms from the recent or popular pages. - Pinboard API to GraphQL bridge # Fixed
From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links 943c898..43ae7d2 master -> master
From Peter Sanchez to ~netlandish/links-dev
Implements: https://todo.code.netlandish.com/~netlandish/links/76 Changelog-added: Pinboard API to GraphQL bridge --- CLAUDE.md | 116 ++++ cmd/links/main.go | 6 +- pinboard/input.go | 47 ++ pinboard/middleware.go | 45 ++ pinboard/responses.go | 122 ++++ pinboard/routes.go | 737 ++++++++++++++++++++++++ pinboard/routes_test.go | 1168 +++++++++++++++++++++++++++++++++++++++ pinboard/utils.go | 145 +++++ pinboard/utils_test.go | 112 ++++ 9 files changed, 2496 insertions(+), 2 deletions(-) create mode 100644 CLAUDE.md [message trimmed]
From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links af4a4e4..943c898 master -> master
From Peter Sanchez to ~netlandish/links-dev
--- config.example.ini | 1 + go.mod | 2 +- go.sum | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config.example.ini b/config.example.ini index c26190a..98a7864 100644 --- a/config.example.ini +++ b/config.example.ini @@ -119,6 +119,7 @@ entropy=Entropy value [graphql] max-complexity=250 max-upload-size=10737418 [message trimmed]
From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links fdea1e2..af4a4e4 master -> master
From Peter Sanchez to ~netlandish/links-dev
Fixes: https://todo.code.netlandish.com/~netlandish/links/85 Changelog-fixed: tag autocomplete issues with selection and navigation using the keyboard. --- static/css/style.css | 7 ++ static/js/advancedsearch.js | 223 +++++++++++++++++++++++++++++++----- static/js/autocomplete.js | 170 +++++++++++++++++++++++---- templates/link_list.html | 2 +- 4 files changed, 353 insertions(+), 49 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 36ba467..bd7d408 100644 --- a/static/css/style.css +++ b/static/css/style.css [message trimmed]