-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
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
Linux/BSD platform: Change export name and fix bsd
feature tag
#76996
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,8 +40,8 @@ void register_linuxbsd_exporter_types() { | |
void register_linuxbsd_exporter() { | ||
Ref<EditorExportPlatformLinuxBSD> platform; | ||
platform.instantiate(); | ||
platform->set_name("Linux/X11"); | ||
platform->set_os_name("Linux"); | ||
platform->set_name("Linux/BSD"); | ||
platform->set_os_name("LinuxBSD"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What was the reasoning behind having both There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, Linux and BSD are not compatible systems. |
||
platform->set_chmod_flags(0755); | ||
|
||
EditorExport::get_singleton()->add_export_platform(platform); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps we should keep only
linuxbsd
in the list (withoutlinux
,bsd
and other "sub-platforms")? Project Settings UI now allows feature tags that are not in the list.