Merge branch 'master' of https://github.com/highfidelity/hifi into propertyRangeAudit

This commit is contained in:
David Back 2019-01-07 18:29:36 -08:00
commit 0791443c5c
4 changed files with 6 additions and 5 deletions

View file

@ -25,12 +25,12 @@ float ClipboardScriptingInterface::getClipboardContentsLargestDimension() {
return qApp->getEntityClipboard()->getContentsLargestDimension();
}
bool ClipboardScriptingInterface::exportEntities(const QString& filename, const QVector<EntityItemID>& entityIDs) {
bool ClipboardScriptingInterface::exportEntities(const QString& filename, const QVector<QUuid>& entityIDs) {
bool retVal;
BLOCKING_INVOKE_METHOD(qApp, "exportEntities",
Q_RETURN_ARG(bool, retVal),
Q_ARG(const QString&, filename),
Q_ARG(const QVector<EntityItemID>&, entityIDs));
Q_ARG(const QVector<QUuid>&, entityIDs));
return retVal;
}

View file

@ -63,7 +63,7 @@ public:
* @param {Uuid[]} entityIDs Array of IDs of the entities to export.
* @returns {boolean} <code>true</code> if the export was successful, otherwise <code>false</code>.
*/
Q_INVOKABLE bool exportEntities(const QString& filename, const QVector<EntityItemID>& entityIDs);
Q_INVOKABLE bool exportEntities(const QString& filename, const QVector<QUuid>& entityIDs);
/**jsdoc
* Export the entities with centers within a cube to a JSON file.

View file

@ -33,7 +33,7 @@ PacketVersion versionForPacketType(PacketType packetType) {
case PacketType::EntityEdit:
case PacketType::EntityData:
case PacketType::EntityPhysics:
return static_cast<PacketVersion>(EntityVersion::FixPropertiesFromCleanup);
return static_cast<PacketVersion>(EntityVersion::FixProtocolVersionBumpMismatch);
case PacketType::EntityQuery:
return static_cast<PacketVersion>(EntityQueryPacketVersion::ConicalFrustums);
case PacketType::AvatarIdentity:

View file

@ -254,7 +254,8 @@ enum class EntityVersion : PacketVersion {
GrabTraits,
MorePropertiesCleanup,
FixPropertiesFromCleanup,
UpdatedPolyLines
UpdatedPolyLines,
FixProtocolVersionBumpMismatch
};
enum class EntityScriptCallMethodVersion : PacketVersion {