Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
06ad52f
Merge pull request #1 from PhoenicisOrg/master
ImperatorS79 Aug 28, 2017
86fd07c
Update script.js
ImperatorS79 Aug 28, 2017
a6f232b
Merge pull request #2 from PhoenicisOrg/master
ImperatorS79 Aug 28, 2017
a80aa84
Merge pull request #3 from PhoenicisOrg/master
ImperatorS79 Sep 26, 2017
6da4a59
Merge pull request #4 from PhoenicisOrg/master
ImperatorS79 Mar 19, 2018
4a11f65
Merge pull request #8 from PhoenicisOrg/master
ImperatorS79 Apr 9, 2018
b2d5724
Merge pull request #9 from PhoenicisOrg/master
ImperatorS79 May 7, 2018
b7d1f0f
Merge pull request #10 from PhoenicisOrg/master
ImperatorS79 May 13, 2018
533df6e
Merge pull request #11 from PhoenicisOrg/master
ImperatorS79 May 22, 2018
186e4ed
Merge pull request #12 from PhoenicisOrg/master
ImperatorS79 May 29, 2018
99cf1db
Merge pull request #13 from PhoenicisOrg/master
ImperatorS79 Jun 13, 2018
87999b4
Merge pull request #15 from PhoenicisOrg/master
ImperatorS79 Oct 10, 2018
610b258
Merge pull request #16 from PhoenicisOrg/master
ImperatorS79 Oct 12, 2018
ad2ea01
Merge pull request #17 from PhoenicisOrg/master
ImperatorS79 Jan 12, 2019
2e53a22
Merge pull request #18 from PhoenicisOrg/master
ImperatorS79 Jan 18, 2019
10f93ca
Merge pull request #20 from PhoenicisOrg/master
ImperatorS79 Feb 2, 2019
ade899d
Merge pull request #21 from PhoenicisOrg/master
ImperatorS79 Feb 27, 2019
db6e1b9
Merge pull request #23 from PhoenicisOrg/master
ImperatorS79 May 9, 2019
da1a517
Merge pull request #26 from PhoenicisOrg/master
ImperatorS79 May 20, 2019
72863e6
Merge pull request #28 from PhoenicisOrg/master
ImperatorS79 Jun 2, 2019
f812551
Merge pull request #33 from PhoenicisOrg/master
ImperatorS79 Aug 24, 2019
00d878a
Create script.js
ImperatorS79 Sep 10, 2019
98f99ba
Create script.json
ImperatorS79 Sep 10, 2019
3867851
Create application.json
ImperatorS79 Sep 10, 2019
271412e
Add files via upload
ImperatorS79 Sep 10, 2019
8f0243e
Update script.js
ImperatorS79 Sep 10, 2019
aea37b7
Update script.js
ImperatorS79 Sep 10, 2019
b64b15b
Merge pull request #34 from PhoenicisOrg/master
ImperatorS79 Sep 11, 2019
dfd253a
Update script.js
ImperatorS79 Oct 5, 2019
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");
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();
});
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"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.