Last active
March 12, 2019 09:35
-
-
Save knzm/6447ffb745e21d97d16ff3460935d095 to your computer and use it in GitHub Desktop.
Replace style.css in Jasper.app to fix broken layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install asar | |
npm install -g asar | |
# extract, patch, then pack | |
mkdir out | |
asar extract /Applications/Jasper.app/Contents/Resources/app.asar out/ | |
cd out | |
curl -s https://patch-diff.githubusercontent.com/raw/jasperapp/jasper/pull/85.diff | patch -p1 | |
cd .. | |
asar pack out app.asar | |
# overwrite app.asar | |
cp app.asar /Applications/Jasper.app/Contents/Resources/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jasperapp/jasper#85