Downloads:
5,133
Downloads of v 3.2.2:
4
Last Update:
28 Jan 2025
Published Date:
28 Jan 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.2 | Updated: 28 Jan 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,133
Downloads of v 3.2.2:
4
Published:
28 Jan 2025
Maintainer(s):
Software Author(s):
- CELSYS Inc.
Clip Studio Paint 3.2.2
(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.2
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.2 | 4 | Tuesday, January 28, 2025 |
Waiting for Maintainer
|
|
Clip Studio Paint 3.2.0 | 194 | Tuesday, December 3, 2024 | Approved | |
Clip Studio Paint 3.1.4 | 141 | Tuesday, September 24, 2024 | Approved | |
Clip Studio Paint 3.1.1 | 139 | Saturday, August 17, 2024 | Approved | |
Clip Studio Paint 3.1.0 | 44 | Saturday, August 17, 2024 | Approved | |
Clip Studio Paint 3.0.4 | 188 | Tuesday, May 28, 2024 | Approved | |
Clip Studio Paint 3.0.2 | 107 | Tuesday, April 16, 2024 | Approved | |
Clip Studio Paint 3.0.0 | 96 | Sunday, March 17, 2024 | Approved | |
Clip Studio Paint 2.3.4 | 125 | Wednesday, January 31, 2024 | Approved | |
Clip Studio Paint 2.3.2 | 127 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.3.1 | 72 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.3.0 | 57 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.2.2 | 65 | Friday, December 15, 2023 | Approved | |
Clip Studio Paint 2.2.1 | 201 | Monday, October 2, 2023 | Approved | |
Clip Studio Paint 2.2.0 | 70 | Tuesday, September 26, 2023 | Approved | |
Clip Studio Paint 2.1.4 | 132 | Wednesday, August 30, 2023 | Approved | |
Clip Studio Paint 2.1.3 | 83 | Tuesday, August 29, 2023 | Approved | |
Clip Studio Paint 2.1.2 | 128 | Thursday, August 10, 2023 | Approved | |
Clip Studio Paint 2.1.0 | 105 | Friday, July 28, 2023 | Approved | |
Clip Studio Paint 2.0.6 | 130 | Tuesday, June 27, 2023 | Approved | |
Clip Studio Paint 2.0.3 | 163 | Friday, May 5, 2023 | Approved | |
Clip Studio Paint 1.13.2 | 211 | Tuesday, January 31, 2023 | Approved | |
Clip Studio Paint 1.13.0 | 153 | Tuesday, December 6, 2022 | Approved | |
Clip Studio Paint 1.12.11 | 146 | Tuesday, October 25, 2022 | Approved | |
Clip Studio Paint 1.12.8 | 141 | Thursday, September 29, 2022 | Approved | |
Clip Studio Paint 1.12.7 | 90 | Wednesday, September 28, 2022 | Approved | |
Clip Studio Paint 1.12.3 | 205 | Tuesday, June 28, 2022 | Exempted | |
Clip Studio Paint 1.12.1 | 118 | Sunday, June 12, 2022 | Approved | |
Clip Studio Paint 1.12.0 | 117 | Thursday, May 26, 2022 | Approved | |
Clip Studio Paint 1.11.14 | 128 | Thursday, May 5, 2022 | Approved | |
Clip Studio Paint 1.11.10 | 211 | Wednesday, March 9, 2022 | Approved | |
Clip Studio Paint 1.11.9 | 169 | Thursday, February 10, 2022 | Approved | |
Clip Studio Paint 1.11.8 | 185 | Tuesday, December 21, 2021 | Exempted | |
Clip Studio Paint 1.11.6 | 131 | Tuesday, December 14, 2021 | Approved | |
Clip Studio Paint 1.11.4 | 172 | Friday, October 22, 2021 | Approved | |
Clip Studio Paint 1.11.2 | 129 | Thursday, October 7, 2021 | Approved | |
Clip Studio Paint 1.11.1 | 161 | Thursday, September 30, 2021 | Exempted | |
Clip Studio Paint 1.11.0 | 120 | Tuesday, September 28, 2021 | Approved | |
Clip Studio Paint 1.10.13 | 124 | 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 28 Jan 2025 07:03:35 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 28 Jan 2025 07:35:32 +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 28 Jan 2025 08:31:35 +00:00:
clipstudio-paint has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/4835880f605ae7185483c36680822519 for details.
The package status will be changed and will be waiting on your next actions.