Thank you!
Yes, this is working fine now.
Edit: Now I discovered that your first blog entry links to the RSS feed of your blog. The content of the very first entry on 04 Aug 2018 is available only there as part of the RSS feed! You may want to create a separate entry for this first blog entry of your (new) blog.
BTW, the first entry of @piggz’ blog reads as follows:
Welcome back to my blog after being offline for 2 years, since the drupal instance I was running was hacked with a crypto miner!
I finally got around to setting up a pico_cms instance on Nextcloud, so lets see how this works out!
So, what have I been doing lately? After I was successfully crowd-funded a new Amazfit GTS watch, i've polished up the support for it a bit more in Amazfish, my watch app for Sailfish, and while I was at it, I added basic support for a few other models which use basically the same protocol. These are untested, but should have basic functionality. A lot of the protocol implementation is taken from GadgetBridge, the android app, so, if GB supports it, I should be able to make it work.
https://openrepos.net/content/piggz/amazfish
Also recently we got some great support from the Lima GPU mesa developers in getting the driver to work on Sailfish. This was likely due to a compiler bug in the GCC version used on sfos, which meant the following code returnd 0 on sailfish, where it should be 4.
union u { int i; float f; }; int main(void) { union u test, test2, res; test.i = 4; test2.f = 1.0f; res.f = test.f * test2.f; printf("%f %.8x\n", res.f, res.i); return 0; }
The new improved driver brought a revived effort back to the sailfish port for the Pinephone, and the team have made great improvements over the last few weeks.