Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions Applications/Graphics/Adobe Photoshop/Zip/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
const ZipScript = include("engines.wine.quick_script.zip_script");
const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions");
include("engines.wine.plugins.font_smoothing");
include("engines.wine.verbs.corefonts");
include("engines.wine.verbs.gdiplus");
include("engines.wine.verbs.vcrun2015");
include("engines.wine.verbs.msxml3");
include("engines.wine.verbs.msxml6");
include("engines.wine.verbs.atmlib");
include("engines.wine.verbs.adobeair");


new ZipScript()
.name("Adobe Photoshop")
.editor("Adobe Inc.")
.applicationHomepage("https://www.adobe.com/")
.author("Jacob Hrbek")
.category("Graphics")
.wineVersion(LATEST_STAGING_VERSION)
.wineDistribution("staging")
.setupPathInsidePrefix("Adobe Photoshop/Set-up.exe")
.url("http://prdl-download.adobe.com/Photoshop/55E8FC8663C847F08BFBCD8DFE336AE8/1546595903133/AdobePhotoshop20-mul_x64.zip")
.preInstall(function (wine /*, wizard*/) {
wine.corefonts();
//wine.gdiplus();
wine.vcrun2015();
wine.atmlib();
wine.msxml3();
wine.msxml6();
wine.adobeair();
wine.fontSmoothing("RGB");
});
14 changes: 14 additions & 0 deletions Applications/Graphics/Adobe Photoshop/Zip/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"scriptName" : "Zip",
"id" : "applications.graphics.photoshop.zip",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX",
"LINUX"
],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Graphics/Adobe Photoshop/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Adobe Photoshop",
"id" : "applications.graphics.photoshop",
"description" : "Adobe Photoshop is a raster graphics editor developed and published by Adobe Systems for macOS and Windows"
}