Skip to content

Commit fa521d6

Browse files
committed
Updated for aseprite 1.3.14.4
1 parent f3e4d16 commit fa521d6

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## A customizable, automated Windows batch script for easily compiling Aseprite
66

7-
Please refer to Aseprite's [INSTALL.md](https://github.com/aseprite/aseprite/blob/v1.3.13/INSTALL.md) to check for any updates to Aseprite installation procedure.
7+
Please refer to Aseprite's [INSTALL.md](https://github.com/aseprite/aseprite/blob/v1.3.14.4/INSTALL.md) to check for any updates to Aseprite installation procedure.
88

99
This script was tested on Windows 10 & 11 with Visual Studio 2022 Community and is targeted at x64 based systems.
1010

@@ -15,16 +15,16 @@ both the Aseprite source code and a pre-built package of Skia then run the build
1515

1616
There is currently an issue with Windows Defender falsely identify the aseprite source code zip file as containing a trojan. This will cause an error during the download portion of the script.
1717
Temporarily disable real-time protection in Windows Defender before running the script and remember to re-enable protection afterwards.
18-
PLEASE MAKE SURE YOU FULLY TRUST THE CONTENTS OF THE SCRIPT BEFORE RUNNING AND THAT YOU HAVE DOWNLOADED IT ONLY FROM THE ORIGINAL GITHUB PAGE!
18+
PLEASE MAKE SURE YOU FULLY TRUST THE CONTENTS OF THE SCRIPT BEFORE RUNNING AND THAT YOU HAVE DOWNLOADED IT ONLY FROM THE ORIGINAL GITHUB OR CODEBERG PAGE!
1919

2020
## Dependencies
2121

2222
* Tar (Bundled with recent releases of Windows 10 and newer)
23-
* The latest version of [Cmake](https://cmake.org) (3.16 or greater)
23+
* The latest version of [Cmake](https://cmake.org)
2424
* [Curl](https://curl.se/) (Bundled with recent releases of Windows 10 and newer)
2525
* [Ninja](https://ninja-build.org/) build system
2626
* [Visual Studio 2022](https://visualstudio.microsoft.com/) + Desktop Development with C++
27-
* Windows SDK 10.0.20348.0 (Available via Visual Studio)
27+
* Windows SDK 10.0.26100.0 (Available via Visual Studio)
2828
* Installing [scoop](<https://scoop.sh/>) is recommended to install several dependencies:
2929

3030
scoop install ninja cmake
@@ -76,13 +76,13 @@ The user customizable portion of this script consists of paths. Most of these pa
7676

7777
## Details
7878

79-
Aseprite recommends using Visual Studio 2022 and the latest version of the Windows 10 SDK (Currently 20348).
79+
Aseprite recommends using Visual Studio 2022 and the latest version of the Windows 11 SDK (Currently 26100).
8080

8181
After adjusting paths to fit your build environment simply execute the script and it will run completely hands off, creating your specified working directory and all subdirectories.
8282

8383
Aseprite source code and a pre-built copy of Skia are curled into the temp directory and extracted into their respective subdirectories.
8484

85-
The script will then begin the build process based on instructions from [INSTALL.md](https://github.com/aseprite/aseprite/blob/main/INSTALL.md).
85+
The script will then begin the build process based on instructions from [INSTALL.md](https://github.com/aseprite/aseprite/blob/v1.3.14.4/INSTALL.md).
8686

8787
Upon completion the script will output a directory listing of the newly compiled aseprite.exe located in the
8888
%ASEPRITE%\build\bin directory. You can freely copy the executable and data folder located in the previously mentioned bin directory to a new location of your choosing.
@@ -91,4 +91,6 @@ Enjoy using Aseprite!
9191

9292
## Changelog
9393

94+
* 08/15/2025 - Updated to aseprite 1.3.14.4 & Skia m124. Windows SDK updated to 10.0.26100.0.
95+
9496
* 12/13/2024 - Updated to aseprite 1.3.10.1, added script to automatically create the TEMP directory. Encapsulated DEPS and TEMP into WORKING directory for easy cleanup. Addressed issue with Windows Defender false-positive and a temporary workaround.

aseprite-build-script.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SETLOCAL EnableDelayedExpansion
33

44
:: REMEMBER TO CONSULT README.MD FIRST!
5-
:: IF YOU RECIEVED THIS SCRIPT FROM ANYWHERE OTHER THAN https://github.com/Chasnah7/aseprite-build-script
5+
:: IF YOU RECIEVED THIS SCRIPT FROM ANYWHERE OTHER THAN https://github.com/Chasnah7/aseprite-build-script OR https://codeberg.org/Chasnah/aseprite-build-script
66
:: DOUBLE CHECK TO MAKE SURE IT HAS NOT BEEN MALICIOUSLY EDITED.
77
:: THE AUTHOR CLAIMS NO LIABILITY NOR WARRANTY FOR THIS SCRIPT
88
:: USE AT YOUR OWN RISK.
@@ -17,13 +17,13 @@ set ASEPRITE=%DEPS%\aseprite
1717

1818
set SKIA=%DEPS%\skia
1919

20-
set ASEZIP=https://github.com/aseprite/aseprite/releases/download/v1.3.13/Aseprite-v1.3.13-Source.zip
20+
set ASEZIP=https://github.com/aseprite/aseprite/releases/download/v1.3.14.2/Aseprite-v1.3.14.4-Source.zip
2121

22-
set SKIAZIP=https://github.com/aseprite/skia/releases/download/m102-861e4743af/Skia-Windows-Release-x64.zip
22+
set SKIAZIP=https://github.com/aseprite/skia/releases/download/m124-08a5439a6b/Skia-Windows-Release-x64.zip
2323

2424
set VISUALSTUDIO="C:\Program Files\Microsoft Visual Studio\2022\Community"
2525

26-
set WINSDK="C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.UniversalCRT.Debug\10.0.20348.0"
26+
set WINSDK="C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.UniversalCRT.Debug\10.0.26100.0"
2727

2828
set TEMP=%WORKING%\temp
2929

0 commit comments

Comments
 (0)