* Add PeachScan
* I love linting
* Also remove old WickedWitchScan
* It's not novo anymore
* Remove unneeded className declaration
* Filter light novel entries from latest view (because we can here)
* ACTUALLY filter light novel entries from latest view (because we can here)
* Fix icon path + add Dango Scan
* Move image-decoder dependency to multisrc project
* shut up android studio
* fix dep specifier in additional.gradle
* Update multisrc/overrides/peachscan/default/additional.gradle
Co-authored-by: stevenyomi <95685115+stevenyomi@users.noreply.github.com>
* Revert "Update multisrc/overrides/peachscan/default/additional.gradle"
This reverts commit 6b8722193a2181a8e9d8f6b65fb24afd30e5a548.
The comment serves as an explanation for why the dependency shouldn't
be in the Gradle version catalog; because no one else cares about this
dependency.
* Optimize icons
---------
Co-authored-by: stevenyomi <95685115+stevenyomi@users.noreply.github.com>
* Use Gradle version catalog to simplify dependencies
* Changes based on review comments
* Remove libs variables in buildScript
- Not needed in this Gradle version
* Potential fix for the multi-sources not being generated properly
As described here https://www.infoworld.com/article/2071275/when-runtime-exec---won-t.html under "Listing 4.2 BadExecJavac2.java" the limited buffer size of the standard input associated with the sub-process can cause problems with the Runtime exec method.
Consuming what the sub-process outputs should in theory allow for the process to finish (+ if you enable log level debug we could get some nice debug information in the future).
I've tested this on my local machine and it works there, please do not accept the PR with this commit before the Github checks pass successfully and I've looked further into this.
* Multi-sources not being generated properly - ErrorStream redirect
Now redirecting the errorStream of the sub-process to the standard output of the subprocess, so that we can consume it with the `javaProcess.inputStream` stream.