Skip to content
Merged
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
21 changes: 11 additions & 10 deletions ui/desktop/forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ let cfg = {
// Document types for drag-and-drop support onto dock icon
CFBundleDocumentTypes: [
{
CFBundleTypeName: "Folders",
CFBundleTypeRole: "Viewer",
LSHandlerRank: "Alternate",
LSItemContentTypes: ["public.directory", "public.folder"]
}
]
CFBundleTypeName: 'Folders',
CFBundleTypeRole: 'Viewer',
LSHandlerRank: 'Alternate',
LSItemContentTypes: ['public.directory', 'public.folder'],
},
],
},
};

Expand Down Expand Up @@ -73,8 +73,8 @@ module.exports = {
desktopTemplate: './forge.deb.desktop',
options: {
icon: 'src/images/icon.png',
prefix: '/opt'
}
prefix: '/opt',
},
},
},
{
Expand All @@ -88,8 +88,9 @@ module.exports = {
desktopTemplate: './forge.rpm.desktop',
options: {
icon: 'src/images/icon.png',
prefix: '/opt'
}
prefix: '/opt',
fpm: ['--rpm-rpmbuild-define', '_build_id_links none'],
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

this is the actual change

},
},
},
],
Expand Down