Josh Abernathy
Josh Abernathy
@mdaymond Ha, it's because the builds for the auto updater framework ([Squirrel.Mac](http://github.com/Squirrel/Squirrel.Mac/)) are done locally, usually by me. That looks like an issue specific to VSCode. I'd recommend contacting them...
Yeah, it looks like we just haven't added support back in since we removed it. Pull requests welcome :smile:
>We already have the ability to ship system configuration changes like this It looks like that's just for Windows? Can we do it across all platforms?
Not really. There's no good way to run a `CAKeyframeAnimation` manually with the animator proxy. For the dumb-guy version, the block would need to return a new signal to use...
In other words, something like: ``` objc RAC(self.view.rcl_frame) = [[[RACSignal return:frame1] animateWithDuration:0.3] animateNext:^{ return [[RACSignal return:frame2] animateWithDuration:0.6]; }]; ``` Where `-animateNext:` only continues to its block after the other animation...
Ehh, that API's fairly gross but I don't have any better suggestions :\
The [README](https://github.com/ReactiveCocoa/ReactiveViewModel#getting-started) contains some information about building.
Are there specific questions you have? Why do you want to use it in the first place?
True, it does not include ReactiveCocoa in the repository itself. ReactiveCocoa is a dependency included as a submodule, so you'd need to clone the repository and clone the submodules recursively...
I think both (2) and (3) are legitimate ways of solving the problem. If the cell is simple enough that it doesn't need its own view model, (2) seems perfectly...