diff --git a/Applications/Graphics/Adobe Photoshop/Zip/script.js b/Applications/Graphics/Adobe Photoshop/Zip/script.js new file mode 100644 index 0000000000..53da39819f --- /dev/null +++ b/Applications/Graphics/Adobe Photoshop/Zip/script.js @@ -0,0 +1,32 @@ +const ZipScript = include("engines.wine.quick_script.zip_script"); +const {LATEST_STAGING_VERSION} = include("engines.wine.engine.versions"); +const FontSmoothing = include("engines.wine.plugins.font_smoothing"); +const Corefonts = include("engines.wine.verbs.corefonts"); +const GDIPlus = include("engines.wine.verbs.gdiplus"); +const Vcrun2015 = include("engines.wine.verbs.vcrun2015"); +const Msxml3 = include("engines.wine.verbs.msxml3"); +const Msxml6 = include("engines.wine.verbs.msxml6"); +const Atmlib = include("engines.wine.verbs.atmlib"); +const AdobeAir = 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) { + new Corefonts(wine).go(); + new GDIPlus(wine).go(); + new Vcrun2015(wine).go(); + new Atmlib(wine).go(); + new Msxml3(wine).go(); + new Msxml6(wine).go(); + new AdobeAir(wine).go(); + new FontSmoothing(wine).withMode("RGB").go(); + }); diff --git a/Applications/Graphics/Adobe Photoshop/Zip/script.json b/Applications/Graphics/Adobe Photoshop/Zip/script.json new file mode 100644 index 0000000000..c3c19de6fb --- /dev/null +++ b/Applications/Graphics/Adobe Photoshop/Zip/script.json @@ -0,0 +1,14 @@ +{ + "scriptName" : "Zip", + "id" : "applications.graphics.photoshop.zip", + "compatibleOperatingSystems" : [ + "MACOSX", + "LINUX" + ], + "testingOperatingSystems" : [ + "MACOSX", + "LINUX" + ], + "free" : false, + "requiresPatch" : false +} diff --git a/Applications/Graphics/Adobe Photoshop/application.json b/Applications/Graphics/Adobe Photoshop/application.json new file mode 100644 index 0000000000..05449b0437 --- /dev/null +++ b/Applications/Graphics/Adobe Photoshop/application.json @@ -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" +} diff --git a/Applications/Graphics/Adobe Photoshop/miniatures/main.png b/Applications/Graphics/Adobe Photoshop/miniatures/main.png new file mode 100644 index 0000000000..559be58ffd Binary files /dev/null and b/Applications/Graphics/Adobe Photoshop/miniatures/main.png differ