Peter Uithoven
Peter Uithoven
@SolarLiner You have seen the latest updates regarding the AppCenter? - https://medium.com/elementaryos/juno-progress-for-march-6fd2d553c237 - https://github.com/elementary/appcenter/issues/548
Ow whow, that PR seems great! I'm happy to close this issue or you could add it to the Fixes list in the PR.
Thanks for clarifying Jeremy. Should we close the issue and reopen when such a system database is created?
Interesting: https://www.gimp.org/tutorials/Basic_Batch/ I've been testing with the following file as it should clearly be changed:  The command `gimp-context-set-palette` seems what we want? ``` (define (inky filename) (let* ((image (car...
`gimp-image-convert-indexed` seems what I needed. ``` (define (inky filename) (let* ((image (car (gimp-file-load RUN-NONINTERACTIVE filename filename))) (drawable (car (gimp-image-get-active-layer image)))) (gimp-image-convert-indexed image CONVERT-DITHER-NONE CONVERT-PALETTE-CUSTOM 3 FALSE TRUE "inky") (gimp-file-save RUN-NONINTERACTIVE...
I tried to disable font rule detection ``` js { fonts: [], } ``` Overriding css: ``` js { modifyCss() { return ""; }, } ``` And ``` js {...
Going through the [mdi font css file](https://github.com/Templarian/MaterialDesign-Webfont/blob/master/css/materialdesignicons.css) and removing parts I've been able to track the issue down to one rule that causes the issue: ``` .mdi-sign-direction-remove::before { content: "\FFFE";...
If I don't import the mdi font file but I just include the following rule it fails, both in Firefox and Chrome. ``` css .someselector { content: "\FFFE"; } ```...
I'm having the same issue. I opened: http://stackoverflow.com/questions/37330642/passport-local-mongoose-how-to-get-authentication-error-message You could provide a callback to Passport's authenticate middleware, but then you'd have to parse the challenge string to get the useful...
Maybe close this issue if it's fixed?