Skip to content
Merged
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
52 changes: 52 additions & 0 deletions Applications/Office/Microsoft Office 2013/Local/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
include(["Engines", "Wine", "QuickScript", "LocalInstallerScript"]);

new LocalInstallerScript()
.name("Microsoft Office 2013")
.editor("Microsoft")
.applicationHomepage("https://products.office.com/fr-be/microsoft-office-2013")
.wineVersion("2.14")
.wineDistribution("staging")
.author("ImperatorS79")
.category("Office")
// exe set with WineShorcut
.postInstall(function(wine, wizard) {
wine.overrideDLL()
.set("native, builtin", ["riched20"])
.do();

new WineShortcut()
.name("Microsoft Word 2013")
.prefix("Microsoft Office 2013")
.search("WINWORD.EXE")
.miniature(["Office", "Microsoft Office 2013"])
.create();

new WineShortcut()
.name("Microsoft Excel 2013")
.prefix("Microsoft Excel 2013")
.search("EXCEL.EXE")
.miniature(["Office", "Microsoft Office 2013"])
.create();

new WineShortcut()
.name("Microsoft PowePoint 2013")
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here is a spelling error

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh yes. Didn't see that.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes indeed

.prefix("Microsoft Office 2013")
.search("POWERPNT.EXE")
.miniature(["Office", "Microsoft Office 2013"])
.create();

new WineShortcut()
.name("Microsoft OneNote 2013")
.prefix("Microsoft Office 2013")
.search("ONENOTE.EXE")
.miniature(["Office", "Microsoft Office 2013"])
.create();

new WineShortcut()
.name("Microsoft Outlook 2013")
.prefix("Microsoft Office 2013")
.search("OUTLOOK.EXE")
.miniature(["Office", "Microsoft Office 2013"])
.create();
})
.go();
7 changes: 7 additions & 0 deletions Applications/Office/Microsoft Office 2013/Local/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"scriptName": "Local",
"compatibleOperatingSystems": ["LINUX"],
"testingOperatingSystems": ["LINUX"],
"free": false,
"requiresPatch": false
}
4 changes: 4 additions & 0 deletions Applications/Office/Microsoft Office 2013/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "Microsoft Office 2013",
"description": "Microsoft Office 2013 is a version of Microsoft Office, a productivity suite for Microsoft Windows. It is the successor to Microsoft Office 2010"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.