-
Notifications
You must be signed in to change notification settings - Fork 45
Add Adobe Photoshop #1122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ImperatorS79
wants to merge
29
commits into
PhoenicisOrg:master
Choose a base branch
from
ImperatorS79:photoshop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add Adobe Photoshop #1122
Changes from 28 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 86fd07c
Update script.js
ImperatorS79 a6f232b
Merge pull request #2 from PhoenicisOrg/master
ImperatorS79 a80aa84
Merge pull request #3 from PhoenicisOrg/master
ImperatorS79 6da4a59
Merge pull request #4 from PhoenicisOrg/master
ImperatorS79 4a11f65
Merge pull request #8 from PhoenicisOrg/master
ImperatorS79 b2d5724
Merge pull request #9 from PhoenicisOrg/master
ImperatorS79 b7d1f0f
Merge pull request #10 from PhoenicisOrg/master
ImperatorS79 533df6e
Merge pull request #11 from PhoenicisOrg/master
ImperatorS79 186e4ed
Merge pull request #12 from PhoenicisOrg/master
ImperatorS79 99cf1db
Merge pull request #13 from PhoenicisOrg/master
ImperatorS79 87999b4
Merge pull request #15 from PhoenicisOrg/master
ImperatorS79 610b258
Merge pull request #16 from PhoenicisOrg/master
ImperatorS79 ad2ea01
Merge pull request #17 from PhoenicisOrg/master
ImperatorS79 2e53a22
Merge pull request #18 from PhoenicisOrg/master
ImperatorS79 10f93ca
Merge pull request #20 from PhoenicisOrg/master
ImperatorS79 ade899d
Merge pull request #21 from PhoenicisOrg/master
ImperatorS79 db6e1b9
Merge pull request #23 from PhoenicisOrg/master
ImperatorS79 da1a517
Merge pull request #26 from PhoenicisOrg/master
ImperatorS79 72863e6
Merge pull request #28 from PhoenicisOrg/master
ImperatorS79 f812551
Merge pull request #33 from PhoenicisOrg/master
ImperatorS79 00d878a
Create script.js
ImperatorS79 98f99ba
Create script.json
ImperatorS79 3867851
Create application.json
ImperatorS79 271412e
Add files via upload
ImperatorS79 8f0243e
Update script.js
ImperatorS79 aea37b7
Update script.js
ImperatorS79 b64b15b
Merge pull request #34 from PhoenicisOrg/master
ImperatorS79 dfd253a
Update script.js
ImperatorS79 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"); | ||
| 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 /*, wizard*/) { | ||
| 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(); | ||
| wine.fontSmoothing("RGB"); | ||
|
madoar marked this conversation as resolved.
Outdated
|
||
| }); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.