Checking the box for Tweets is also difficult let's try another.
The tweet is created, but link is not added. This is quite strange.
In the development environment the syndication url gets added, but not in the production environment.
Yesterday I improved the authorization endpoint. It will work now with more clients. I found that still quite a few clients need the "me" parameter, which I think should not be needed, because there is a "state" parameter.
Next I will need to implement the channels that I added to the authentication screen. This will allow to connect auth tokens with channels. The channels will be special "feeds" so not all items will end up on the homepage.
Screenshot tool
This is a simple screenshot tool that I wrote to send screenshots to this weblog. It works by connecting gnome-screenshot, pinta and shpub.
#!/bin/bash bkdest=$HOME/Desktop/Screenshots/ target=${bkdest}/$(date +%Y_%m_%d_%H_%M_%S).png mkdir -p $bkdest /usr/bin/gnome-screenshot -f $target -a /usr/bin/pinta "$target" MEDIA=`shpub -d -s $SHPUB_SERVER upload $target | tail -n 1` shpub -d -s $SHPUB_SERVER note -c screenshots -f $MEDIA --json Screenshot
Test note from shpub
test