appscript icon indicating copy to clipboard operation
appscript copied to clipboard

Results 8 appscript issues
Sort by recently updated
recently updated
newest added

Howdy @mattneub! :wave: This Pull Request bumps the version number for this gem based on the fixes for Ruby 2.2.x that happened in #11. I'm not sure if a patch-level...

- Added one method, `+[AEMObjectRenderer setDataDescriptionTruncation:]`. When set to `maxBytes`, this affects the description of any descriptor that describes as hex bytes, so that only the first `maxBytes` will be...

- Many of the methods in `AEMApplication`, `AEMEvent`, etc. follow the usual ObjC idiom of taking an optional `NSError** error`, but some of the methods in `AEMApplication` are missing checks...

Updated releases to PyPI may never happen, and certainly won't be happening regularly in the near future. So, for people who need appscript, `pip install appscript` won't work. At present,...

- Inside ae.c, AE_GetCFStringRef assumes that the data inside a wide PyUnicode is in the same endianness that CF wants. But PyUnicode is native-endian, kCFStringEncodingUTF32 is big-endian (if no BOM)....

- One of these errors was causing a crash. I don't actually know which one. I had clang find all 64-bit warnings and fixed them the way it suggested, and...

- There are a few places that use `&&` instead of `&` to mask bits out of sendMode, which doesn't actually mask out the bits. - Another place is missing...

The test for whether a long long will fit in an SInt32 is incorrect in - (NSAppleEventDescriptor *)pack:(id)anObject. if (sint64 >= 0x80000000 && sint64 < 0x7FFFFFFF) should be: if (sint64