Skip to content
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

Added several more necessary file types to _FILE_TYPES #350

Merged
merged 7 commits into from
Jun 26, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Added .blend to _FILE_TYPES
  • Loading branch information
Just-Feeshy committed May 19, 2024
commit 9c2a0c91c1cb3c6a4003839d4079382b1ff69138
3 changes: 2 additions & 1 deletion pbxproj/pbxextensions/ProjectFiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ class ProjectFiles:
'.html':('text.html', 'PBXResourcesBuildPhase'),
'.entitlements': ('text.plist.entitlements', 'PBXResourcesBuildPhase'),
'.xcprivacy': ('text.plist.xml', 'PBXResourcesBuildPhase'),
'.md': ('text', 'PBXResourcesBuildPhase')
'.md': ('text', 'PBXResourcesBuildPhase'),
'.blend': ('file.blender', 'PBXResourcesBuildPhase')
}
_SPECIAL_FOLDERS = [
'.bundle',
Expand Down