2020-08-27 03:41:22
*https://github.com/snowblossomcoin/snowblossom/compare/65d5a96ad4e8...25c99a4a0e39*
https://github.com/snowblossomcoin/snowblossom/commit/25c99a4a0e39903834e295ad0d0a9fd781b7f061 - Adding monitoring tool
GitHub
2020-08-27 03:53:07
*https://github.com/snowblossomcoin/snowblossom/compare/25c99a4a0e39...7bfed44ac172*
https://github.com/snowblossomcoin/snowblossom/commit/7bfed44ac172fdb69d477c3d4772eefd32e33e72 - Push release 1.7.1
GitHub
2020-08-27 03:54:52
[snowblossomcoin/snowblossom] Issue opened by fireduck64
GitHub
2020-08-27 03:55:16
It will avoid having requery and make it update faster on changes
GitHub
2020-08-27 04:01:34
[snowblossomcoin/snowblossom] Release - 1.7.1 Mail Sort
GitHub
2020-08-27 04:37:08
*https://github.com/snowblossomcoin/channels/compare/66ca43a993f4...216a9201c86d*
https://github.com/snowblossomcoin/channels/commit/216a9201c86d06142b60855fadf9d42c9233bf35 - Update to newest snowblossom
GitHub
2020-08-27 05:32:32
*https://github.com/snowblossomcoin/channels/compare/216a9201c86d...6515d2fa5b6e*
https://github.com/snowblossomcoin/channels/commit/6515d2fa5b6e5118245f57a0f85324db759dfa9d - Encryption settings from json file
GitHub
2020-08-27 06:55:22
Currently returns 200 with truncated result of the error message. Bah
GitHub
2020-08-27 07:58:05
releases on channel node soon?
Rotonen
2020-08-27 17:08:00
Yeah... I also need to get this silly chrome extension packaged up. I have a hacked up proxy config thing that works but I need to cut out the things that aren't relevant and make it simpler
Fireduck
2020-08-27 17:08:32
unfortunately can't do socks5 for only certain domains but can at least do it just for the browser and be able to turn it on and off
Fireduck
2020-08-27 18:35:46
starting to think of rolling an electron app
Rotonen
2020-08-27 19:40:32
yeah, that might make sense. Maybe. We do want it to be in the browser and have links work in and out
Fireduck
2020-08-27 19:40:47
A packaged firefox like tor does might make sense
Fireduck
2020-08-27 19:41:05
but really need more time
Fireduck
2020-08-27 19:42:25
you can register an url handler on the os level
Rotonen
2020-08-27 19:42:30
and you have something like snow:hash anyway
Rotonen
2020-08-27 19:44:09
just don't transfer anything confidential over that handler
Rotonen
2020-08-27 19:45:31
that seems to be down the road of per-OS integration that I'd like to avoid. The socks5 method seems to work well.
Fireduck
2020-08-27 19:45:47
A mobile story would be nice, but that is a little tricky
Fireduck
2020-08-27 19:46:56
it is platform specific, but it is also trivial - you need to have a build tool and if you have an installer, you can register that in the installer
Rotonen
2020-08-27 19:47:23
there's a certain baseline of platform specificity you need to deal with in any case, and that IMO fits in as a rounding error
Rotonen
2020-08-27 19:47:45
whether or not that's useful at this point, i have no idea, but i'm certain it's trivial enough
Rotonen
2020-08-27 19:48:10
currently fighting this stupid problem were ECIES works fine on linux openjdk, but not on sun jvm on windows
Fireduck
2020-08-27 19:48:16
works with openjdk on windows
Fireduck
2020-08-27 19:48:25
handling URLs on native mobile is likewise easy, packaging your software onto ios would be the challenging bit
Rotonen
2020-08-27 19:48:38
which makes no sense - it is from a crypto provider that I am including and loading
Fireduck
2020-08-27 19:50:55
i have time tomorrow, what'd be more useful as a PoC, electron stuff or ios stuff?
Rotonen
2020-08-27 19:51:12
or something else, i think with that java ecosystem curiosity i could not help too much
Rotonen
2020-08-27 19:51:48
I think I have that solved anyways, I suspect sun jvm has a broken ECIES and I need to specify provider with the Cipher.init
Fireduck
2020-08-27 19:52:39
i guess with the electron stuff you have a wider range of people whom could help, i'll try to jam something snowblossomy into ios tomorrow
Rotonen
2020-08-27 19:53:11
that would be cool
Fireduck
2020-08-27 19:53:19
the outlook of using a whatever bojoing JVM implementation to try to do something more hardcore than a 2d games engine is not great, but gotta try
Rotonen
2020-08-27 19:53:28
I wish I had a way to just use the same swing code for the GUI and have that work on Android
Fireduck
2020-08-27 19:53:44
I know it would be ugly, but it would be much more full featured than the existing android app
Fireduck
2020-08-27 19:53:57
unusable in fact
Rotonen
2020-08-27 20:07:35
*https://github.com/snowblossomcoin/snowblossom/compare/7bfed44ac172...e76954523b6d*
https://github.com/snowblossomcoin/snowblossom/commit/e76954523b6dc5a6befde257f3ae771f0f109fbb - Use specific provider
GitHub
2020-08-27 20:12:24
the plot tickens: java.lang.SecurityException: JCE cannot authenticate the provider BC
Fireduck
2020-08-27 20:16:08
ok, seems to be about the fact that I am taking the signed jars from maven and bazel is repackaging them, breaking the signing
Fireduck
2020-08-27 20:26:20
fair
Rotonen
2020-08-27 20:26:31
and better than expected tbh
Rotonen
2020-08-27 20:37:16
yeah, I am pretty surprised that most things are working on windows apparently without bouncycastle
Fireduck
2020-08-27 20:53:09
it is really puzzling...I know some transactions are signed with DSTU and there is no DSTU in sunjvm
Fireduck
2020-08-27 21:33:43
my only conclusion is that java.security stuff has different signing requirements from javax.crypto
Fireduck