Johannes Künsebeck
                                            Johannes Künsebeck
                                        
                                    I'm facing the same problem, although I do call $flow->bind($data) with an array, but the data disappears, the array stays empty. With standard Symfony Forms binding to an array is...
Yes, it kind of works this way ``` $data = (object)array( 'enrol' => array( 'email' => '[email protected]' ), 'debit' => array(), 'address' => array(), 'message' => array(), ); $this->flow->bind($data); ```...
Oh, I just found this PR https://github.com/OCR-D/core/pull/425#pullrequestreview-346994175
Oh, wow, I'm honored! I just tested it from a fresh ubuntu-18.04.4-desktop-amd64.iso installation and I needed these packages: `CUSTOM_DEPS += libcairo2-dev libgtk-3-dev libglib2.0-dev libgtksourceview-3.0-dev libgirepository1.0-dev pkg-config cmake` `pkg-config` and `cmake`...
See [support_remote_images](https://github.com/hnesk/browse-ocrd/tree/support_remote_images) branch for progress
This is of course the simplest solution possible and I like it, but I'm a bit worried about UI responsiveness at startup when a lot of files need to be...
Can you try if the [support_remote_images](https://github.com/hnesk/browse-ocrd/tree/support_remote_images) branch works for you? I implemented the threaded download solution there. I'm not sure yet if we need additionally "download on demand"/"download by priority"-functionality,...