Downloads:
5,339
Downloads of v 3.2.3:
10
Last Update:
05 Feb 2025
Published Date:
05 Feb 2025
Package Maintainer(s):
Software Author(s):
- CELSYS Inc.
Tags:
art manga comics illustration animation draw drawing paint painting tablet pen graphics design celsys trial- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Clip Studio Paint
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
3.2.3 | Updated: 05 Feb 2025
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
5,339
Downloads of v 3.2.3:
10
Published:
05 Feb 2025
Maintainer(s):
Software Author(s):
- CELSYS Inc.
Clip Studio Paint 3.2.3
(Waiting for Maintainer to take corrective action)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by CELSYS Inc. The inclusion of CELSYS Inc. trademark(s), if any, upon this webpage is solely to identify CELSYS Inc. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
NOTE: This is commercial software with a trial period, after expiration, a valid license is required. You can purchase one from the official website.
Clip Studio Paint
Clip Studio Paint is a software for digital creation of manga (comics), general illustrations and 2D animations. It is designed for use with a stylus and a graphics tablet or tablet computer. It has drawing tools which emulate natural media such as pencils, ink pens, and brushes, as well as patterns and decorations. It is distinguished from similar programs by features designed for creating comics: tools for creating panel layouts, perspective rulers, sketching, inking, applying tones and textures, coloring, and creating word balloons and captions.
Installation Parameters
/DesktopIcon:
- should desktop icons be created- Supported values:
yes
,no
- Default value:
no
- Supported values:
/InstallDir:
- where to install the binaries- Default value:
"$env:ProgramFiles\CELSYS"
- Default value:
/Language:
- which language edition to install- Supported values:
chinese
,english
,french
,german
,japanese
,korean
,spanish
- Default value:
english
- Supported values:
Examples
- Install into
D:\clipstudio-paint
directorychoco install clipstudio-paint --params "/InstallDir:D:\clipstudio-paint"
- Install Japanese language variant into
D:\clipstudio-paint
choco install clipstudio-paint --params "'/InstallDir:D:\clipstudio-paint /Language:japanese'"
- Install Spanish language variant
choco install clipstudio-paint --params "/Language:spanish"
- Install and create desktop icons
choco install clipstudio-paint --params "/DesktopIcon:yes"
$processes = Get-Process -Name 'clipstudio*' -ErrorAction SilentlyContinue
$processes | ? { $_.Name -notmatch 'Modeler' } | % { Stop-Process $_ -Force }
$ErrorActionPreference = 'Stop'
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
$defaultSilentArgs = "/runfromtemp /l0x0409 /uninst /f2`"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).InstallShield.uninstall.log`" /s /f1"
. "$toolsDir\utils.ps1"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'EXE'
softwareName = 'Clip Studio Paint*'
validExitCodes= @(0)
}
$keysToDelete = [System.Collections.ArrayList]@()
[array]$keys = Get-UninstallRegistryKey -SoftwareName 'Clip Studio*'
if($keys.Count -eq 3) { #'Clip Studio Modeler' is installed, keeping 'Clip Studio'
$keys | ? { $_.DisplayName -match 'Clip Studio Paint*' } | % { $keysToDelete.Add($_) }
}
elseif($keys.Count -le 2 -and $keys.Count -ge 1) { #Removing 'Clip Studio Paint' and 'Clip Studio'. ('Clip Studio Modeler' is not installed)
$keysToDelete.AddRange($keys)
}
elseif($keys.Count -eq 0) {
Write-Warning "$($packageArgs['packageName']) has already been uninstalled by other means."
}
else {
Write-Warning "$($keys.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$keys | % {Write-Warning "- $($_.DisplayName)"}
}
foreach($key in $keysToDelete) {
$packageArgs['file'] = $key.UninstallString.Substring(1, $key.UninstallString.LastIndexOf('"') - 1)
$packageArgs['silentArgs'] = $defaultSilentArgs
if($key.DisplayName -match 'Paint') {
$packageArgs['silentArgs'] += "`"$toolsDir\uninstallPaint.iss`""
}
else {
$packageArgs['silentArgs'] += "`"$toolsDir\uninstall.iss`""
}
Uninstall-ChocolateyPackage @packageArgs
}
#Forgotten quick launch icons
$quickLaunchFolder = "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\CLIP STUDIO"
if($keys.Count -eq 3) {
Remove-Item `
-Path "$quickLaunchFolder\CLIP STUDIO PAINT.lnk" `
-Force `
-ErrorAction SilentlyContinue
}
elseif($keys.Count -le 2) {
Remove-Item -Path $quickLaunchFolder `
-Recurse -Force `
-ErrorAction SilentlyContinue
#Forgotten desktop shortcuts
$desktopIcons = @('CLIP STUDIO.lnk', 'CLIP STUDIO PAINT.lnk')
$desktopIcons | % { Remove-DesktopIcon -ShortcutName $_ }
}
[InstallShield Silent]
Version=v7.00
File=Response File
[File Transfer]
OverwrittenReadOnly=NoToAll
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-DlgOrder]
Dlg0={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdWelcome-0
Count=5
Dlg1={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-LicenseDialog-0
Dlg2={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdAskDestPath2-0
Dlg3={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdStartCopy2-0
Dlg4={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdFinish-0
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdWelcome-0]
Result=1
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-LicenseDialog-0]
Result=1
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdAskDestPath2-0]
szDir=C:\Program Files\CELSYS
Result=1
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdStartCopy2-0]
Result=1
[Application]
Name=CLIP STUDIO PAINT
Version=3.2.3
Company=CELSYS
Lang=0409
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0
[InstallShield Silent]
Version=v7.00
File=Response File
[File Transfer]
OverwrittenReadOnly=NoToAll
[{49274EB8-4598-47E6-8039-9BB7CE07627E}-DlgOrder]
Dlg0={49274EB8-4598-47E6-8039-9BB7CE07627E}-MessageBox-0
Count=2
Dlg1={49274EB8-4598-47E6-8039-9BB7CE07627E}-SdFinish-0
[{49274EB8-4598-47E6-8039-9BB7CE07627E}-MessageBox-0]
Result=6
[{49274EB8-4598-47E6-8039-9BB7CE07627E}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0
[InstallShield Silent]
Version=v7.00
File=Response File
[File Transfer]
OverwrittenReadOnly=NoToAll
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-DlgOrder]
Dlg0={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-MessageBox-0
Count=2
Dlg1={1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdFinish-0
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-MessageBox-0]
Result=6
[{1E4572D2-28BC-4BC9-B743-13DC6CFD71DB}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0
function Set-FileLine {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string] $FileName,
[Parameter(Mandatory)]
[string] $LinePart,
[Parameter(Mandatory)]
[string] $NewContent
)
$content = Get-Content $FileName
$lineToReplace = $content | Select-String $LinePart | Select-Object -exp Line
$content | % { $_.Replace($lineToReplace, $NewContent) } | Set-Content $FileName -Force
}
function Remove-DesktopIcon {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string] $ShortcutName
)
$desktop = [Environment]::GetFolderPath("Desktop")
Remove-Item -Path "$desktop\$ShortcutName" -Force -ErrorAction SilentlyContinue
}
function New-DesktopIcon {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string] $ShortcutName,
[Parameter(Mandatory)]
[string] $TargetPath
)
$desktop = [Environment]::GetFolderPath("Desktop")
Install-ChocolateyShortcut `
-ShortcutFilePath "$desktop\$ShortcutName" `
-TargetPath $TargetPath
}
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Clip Studio Paint 3.2.3 | 10 | Wednesday, February 5, 2025 |
Waiting for Maintainer
|
|
Clip Studio Paint 3.2.2 | 18 | Wednesday, February 5, 2025 |
Waiting for Maintainer
|
|
Clip Studio Paint 3.2.0 | 237 | Tuesday, December 3, 2024 | Approved | |
Clip Studio Paint 3.1.4 | 143 | Tuesday, September 24, 2024 | Approved | |
Clip Studio Paint 3.1.1 | 141 | Saturday, August 17, 2024 | Approved | |
Clip Studio Paint 3.1.0 | 48 | Saturday, August 17, 2024 | Approved | |
Clip Studio Paint 3.0.4 | 191 | Tuesday, May 28, 2024 | Approved | |
Clip Studio Paint 3.0.2 | 114 | Tuesday, April 16, 2024 | Approved | |
Clip Studio Paint 3.0.0 | 101 | Sunday, March 17, 2024 | Approved | |
Clip Studio Paint 2.3.4 | 129 | Wednesday, January 31, 2024 | Approved | |
Clip Studio Paint 2.3.2 | 129 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.3.1 | 77 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.3.0 | 60 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.2.2 | 68 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.2.1 | 206 | Monday, October 2, 2023 | Approved | |
Clip Studio Paint 2.2.0 | 76 | Tuesday, September 26, 2023 | Approved | |
Clip Studio Paint 2.1.4 | 137 | Wednesday, August 30, 2023 | Approved | |
Clip Studio Paint 2.1.3 | 90 | Tuesday, August 29, 2023 | Approved | |
Clip Studio Paint 2.1.2 | 134 | Thursday, August 10, 2023 | Approved | |
Clip Studio Paint 2.1.0 | 108 | Friday, July 28, 2023 | Approved | |
Clip Studio Paint 2.0.6 | 132 | Tuesday, June 27, 2023 | Approved | |
Clip Studio Paint 2.0.3 | 165 | Friday, May 5, 2023 | Approved | |
Clip Studio Paint 1.13.2 | 215 | Tuesday, January 31, 2023 | Approved | |
Clip Studio Paint 1.13.0 | 157 | Tuesday, December 6, 2022 | Approved | |
Clip Studio Paint 1.12.11 | 151 | Tuesday, October 25, 2022 | Approved | |
Clip Studio Paint 1.12.8 | 147 | Thursday, September 29, 2022 | Approved | |
Clip Studio Paint 1.12.7 | 93 | Wednesday, September 28, 2022 | Approved | |
Clip Studio Paint 1.12.3 | 208 | Tuesday, June 28, 2022 | Exempted | |
Clip Studio Paint 1.12.1 | 120 | Sunday, June 12, 2022 | Approved | |
Clip Studio Paint 1.12.0 | 120 | Thursday, May 26, 2022 | Approved | |
Clip Studio Paint 1.11.14 | 130 | Thursday, May 5, 2022 | Approved | |
Clip Studio Paint 1.11.10 | 213 | Wednesday, March 9, 2022 | Approved | |
Clip Studio Paint 1.11.9 | 172 | Thursday, February 10, 2022 | Approved | |
Clip Studio Paint 1.11.8 | 187 | Tuesday, December 21, 2021 | Exempted | |
Clip Studio Paint 1.11.6 | 135 | Tuesday, December 14, 2021 | Approved | |
Clip Studio Paint 1.11.4 | 175 | Friday, October 22, 2021 | Approved | |
Clip Studio Paint 1.11.2 | 132 | Thursday, October 7, 2021 | Approved | |
Clip Studio Paint 1.11.1 | 165 | Thursday, September 30, 2021 | Exempted | |
Clip Studio Paint 1.11.0 | 123 | Tuesday, September 28, 2021 | Approved | |
Clip Studio Paint 1.10.13 | 128 | Thursday, August 26, 2021 | Approved |
Copyright (c) CELSYS, Inc. All Rights Reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about Clip Studio Paint and the Clip Studio Paint package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Clip Studio Paint, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
Kubikola (maintainer) on 05 Feb 2025 07:04:34 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 05 Feb 2025 07:36:24 +00:00:
clipstudio-paint has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 05 Feb 2025 10:02:37 +00:00:
clipstudio-paint has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/30ede30e277da3441123b8573f9dc2d3 for details.
The package status will be changed and will be waiting on your next actions.
chocolatey-ops (reviewer) on 25 Feb 2025 07:37:05 +00:00:
We've found clipstudio-paint v3.2.3 in a submitted status and waiting for your next actions. It has had no updates for 20 or more days since a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.
Take action:
If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.
Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.
Kubikola (maintainer) on 05 Mar 2025 18:38:22 +00:00:
try again
Verification Status Change - Verification tests have been set to rerun.
chocolatey-ops (reviewer) on 06 Mar 2025 02:00:42 +00:00:
clipstudio-paint has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/09c81b5994a86168da000b13ff560161 for details.
The package status will be changed and will be waiting on your next actions.