File tree Expand file tree Collapse file tree 5 files changed +30
-2
lines changed
drivers/FTDIUSBSerialDriver.kext/Contents Expand file tree Collapse file tree 5 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ function scanWPorts() {
420
420
// Get consistently formatted port path; If Windows, strip off possible leading port origin path for ease in comparison
421
421
var portPath = ( ( platform === pfWin ) && ( port . path . indexOf ( winPortOrigin ) === 0 ) ) ? port . path . slice ( winPortOriginLen ) : port . path ;
422
422
// Add only proper port types (platform specific and excluding bluetooth ports)
423
- if ( ( portPath . indexOf ( portPattern [ platform ] ) === 0 ) && ( port . displayName . indexOf ( ' bt ' ) === - 1 && port . displayName . indexOf ( 'bluetooth' ) === - 1 ) ) {
423
+ if ( ( portPath . indexOf ( portPattern [ platform ] ) === 0 ) && ( port . displayName . toLowerCase ( ) . indexOf ( ' bt ' ) === - 1 && port . displayName . toLowerCase ( ) . indexOf ( 'bluetooth' ) === - 1 ) ) {
424
424
addPort ( { path : port . path } ) ;
425
425
}
426
426
} ) ;
Original file line number Diff line number Diff line change 48
48
<key >weight</key >
49
49
<real >1100</real >
50
50
</dict >
51
+ <key >^Resources/Base\.lproj/</key >
52
+ <dict >
53
+ <key >weight</key >
54
+ <real >1010</real >
55
+ </dict >
51
56
<key >^version.plist$</key >
52
57
<true />
53
58
</dict >
107
112
<key >weight</key >
108
113
<real >1100</real >
109
114
</dict >
115
+ <key >^Resources/Base\.lproj/</key >
116
+ <dict >
117
+ <key >weight</key >
118
+ <real >1010</real >
119
+ </dict >
110
120
<key >^[^/]+$</key >
111
121
<dict >
112
122
<key >nested</key >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >com.apple.security.automation.apple-events</key >
6
+ <true />
7
+ <key >com.apple.security.device.audio-input</key >
8
+ <true />
9
+ <key >com.apple.security.device.camera</key >
10
+ <true />
11
+ <key >com.apple.security.personal-information.addressbook</key >
12
+ <true />
13
+ <key >com.apple.security.personal-information.calendars</key >
14
+ <true />
15
+ <key >com.apple.security.cs.allow-unsigned-executable-memory</key >
16
+ <true />
17
+ </dict >
18
+ </plist >
Original file line number Diff line number Diff line change 273
273
# Attempt to deeply codesign the app bundle
274
274
#
275
275
echo " Code signing the application bundle: ${DISTRIBUTION}${APP_BUNDLE} with identity: \" ${APP_IDENTITY} \" "
276
- codesign -s " $APP_IDENTITY " --deep -f -v " ${DISTRIBUTION}${APP_BUNDLE} "
276
+ codesign -s " $APP_IDENTITY " --deep -f -v --options runtime --timestamp --entitlements " ./mac-resources/neededToRun.entitlements " " ${DISTRIBUTION}${APP_BUNDLE} "
277
277
if [ " $? " != " 0" ]; then
278
278
echo " [Error] Codesigning the application bundle failed!" 1>&2
279
279
exit 1
You can’t perform that action at this time.
0 commit comments