screencloud
screencloud copied to clipboard
1.3.1 version not available
I see the tag, but there is no download available.
I haven't seen any activity from @olav-st in a while. No idea what's going on.
I haven't pushed out a release yet for two reasons:
- I simply don't have time at the moment. Pushing out a new release on all platforms takes a lot of manual work (ideally it shouldn't, but it does). I won't have time to do that before December (earliest) or January (realistically).
- In order to reduce the amount of manual work I have to do when pushing out a new release, I'm looking into dropping support for
.deb
and.rpm
and use snap packages instead. However, there are a few bugs in snapd that's holding me back.
It's understandable that you don't want to have too much work on your hands. Also I get that you don't have time for ScreenCloud right now. Weird things happen in real life that stop us from doing stuff. I don't have anything against you and I totally support you. Do release when you'll have time for it. No demands on my end.
The only thing now is that on ubuntu 16.04.1 I haven't been using ScreenCloud for over 2 months now because I couldn't get it to work after the latest update. I've tried few solutions here in issues on github but none of them worked for me. Probably I've done something wrong or I don't know actually...
The only thing now is that on ubuntu 16.04.1 I haven't been using ScreenCloud for over 2 months now because I couldn't get it to work after the latest update.
This is is the reason why I've come to hate .deb
packages with a passion. Almost every Ubuntu release manages to break compatibility in some way. It's a huge headache every time and I spend hours figuring out why packages ScreenCloud depended on suddenly have been split, merged or just removed entirely.
I could go on and on about this, but I'll leave the rest of the rant for another time. The good news is that snap packages should theoretically fix these issues and make maintaining the Linux version of ScreenCloud a lot easier in the future. :)
I'm looking forward to new release fixing Linux issues. :)
What about the Windows version ? :)
Waiting snap package :dancer:
If you're a plugin developer and want to support {rnd_s}
for your plugin until @olav-st can get 1.3.1 out for all platforms, use this:
import re
def fix_filename(name):
pattern = re.compile("^b'(.*)'(\.%s)$" % ScreenCloud.getScreenshotFormat())
match = pattern.match(name)
return match and ''.join(match.groups()) or name
Then everywhere you would normally use ScreenCloud.formatFilename(s)
you'd encase it like this: fix_filename(ScreenCloud.formatFilename(s))
.
Implementation example (from my plugin): https://github.com/p3lim/screencloud-caddy/commit/77b0726ecf0a62b6597e9a5f5009815e793065ab#diff-5bc02cefb3ea9e27f1a6776eabd1935d
This issue has had no activity in the last 60 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed after 30 days.