Skip to content

Commit

Permalink
Release v1.2.4d (Krita installer only)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvinhochun committed Jun 15, 2022
1 parent 03713e1 commit 12a39b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion COPYING.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2016-2021 Alvin Wong <alvinhochun@gmail.com>
Copyright (c) 2016-2022 Alvin Wong <alvinhochun@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License

The MIT License

Copyright (c) 2016-2021 Alvin Wong
Copyright (c) 2016-2022 Alvin Wong

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
7 changes: 6 additions & 1 deletion installer/nsis/krita_shell_integration.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Shell extension constants
!define /ifndef KRITASHELLEX_DLL_SOURCE_DIR ""
!define KRITASHELLEX_VERSION "1.2.4.3"
!define KRITASHELLEX_VERSION "1.2.4.4"
!getdllversion "${KRITASHELLEX_DLL_SOURCE_DIR}kritashellex32.dll" KRITASHELLEX_DLLVER_32_
!define KRITASHELLEX_DLLVER_32 "${KRITASHELLEX_DLLVER_32_1}.${KRITASHELLEX_DLLVER_32_2}.${KRITASHELLEX_DLLVER_32_3}.${KRITASHELLEX_DLLVER_32_4}"
!getdllversion "${KRITASHELLEX_DLL_SOURCE_DIR}kritashellex64.dll" KRITASHELLEX_DLLVER_64_
Expand All @@ -21,6 +21,11 @@
!if "1.2.4.2" != ${KRITASHELLEX_DLLVER_32}
!error "Krita shell extension version 1.2.4.2 expected, got ${KRITASHELLEX_DLLVER_32} instead."
!endif
!else if ${KRITASHELLEX_VERSION} == "1.2.4.4"
# HACK: in v1.2.4d we reuse the old built DLLs
!if "1.2.4.2" != ${KRITASHELLEX_DLLVER_32}
!error "Krita shell extension version 1.2.4.2 expected, got ${KRITASHELLEX_DLLVER_32} instead."
!endif
!else
!if ${KRITASHELLEX_VERSION} != ${KRITASHELLEX_DLLVER_32}
!error "Krita shell extension version ${KRITASHELLEX_VERSION} expected, got ${KRITASHELLEX_DLLVER_32} instead."
Expand Down

0 comments on commit 12a39b0

Please sign in to comment.