diff --git a/README.md b/README.md index 024c2b9..bef6a77 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository allows you to compile Aseprite without installing any build tool After spending hours trying to get Aseprite to compile, I decided to just make a Docker image for it -Currently the script checks out Skia version `m96` and Aseprite version `1.2.34.1`. You can easily change this in `compile.sh` by changing the `-b` flag to the desired versions. +Currently the script checks out Skia version `m102` and Aseprite version `1.2.40`. You can easily change this in `compile.sh` by changing the `-b` flag to the desired versions. If any of the folders of the projects folder isn't empty, the script will skip checking out the latest versions. In order to re-download, delete the according folder. * ./dependencies/depot_tools diff --git a/compile.sh b/compile.sh index 5a7f576..d53eafb 100755 --- a/compile.sh +++ b/compile.sh @@ -13,7 +13,7 @@ fi if [ ! -d "/dependencies/skia" ] then - git clone -b aseprite-m96 https://github.com/aseprite/skia.git + git clone -b aseprite-m102 https://github.com/aseprite/skia.git fi export PATH="${PWD}/depot_tools:${PATH}" @@ -32,7 +32,7 @@ cd /output if [ ! -d "/output/aseprite" ] then - git clone -b v1.2.34.1 --recursive https://github.com/aseprite/aseprite.git + git clone -b v1.2.40 --recursive https://github.com/aseprite/aseprite.git fi cd aseprite