mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 12:13:36 +02:00
bump protocol version
This commit is contained in:
parent
005bd8bda5
commit
9e8113a63c
3 changed files with 3 additions and 2 deletions
|
@ -73,7 +73,7 @@ PacketVersion versionForPacketType(PacketType packetType) {
|
|||
case PacketTypeEntityAdd:
|
||||
case PacketTypeEntityEdit:
|
||||
case PacketTypeEntityData:
|
||||
return VERSION_ENTITIES_FACE_CAMERA;
|
||||
return VERSION_ACTIONS_OVER_WIRE;
|
||||
case PacketTypeEntityErase:
|
||||
return 2;
|
||||
case PacketTypeAudioStreamStats:
|
||||
|
|
|
@ -184,5 +184,6 @@ const PacketVersion VERSION_NO_ENTITY_ID_SWAP = 27;
|
|||
const PacketVersion VERSION_ENTITIES_PARTICLE_FIX = 28;
|
||||
const PacketVersion VERSION_ENTITIES_LINE_POINTS = 29;
|
||||
const PacketVersion VERSION_ENTITIES_FACE_CAMERA = 30;
|
||||
const PacketVersion VERSION_ACTIONS_OVER_WIRE = 31;
|
||||
|
||||
#endif // hifi_PacketHeaders_h
|
||||
|
|
|
@ -43,7 +43,7 @@ namespace Setting {
|
|||
// set the associated application properties
|
||||
applicationInfo.beginGroup("INFO");
|
||||
QCoreApplication::setApplicationName(applicationInfo.value("name").toString());
|
||||
// QCoreApplication::setOrganizationName(applicationInfo.value("organizationName").toString());
|
||||
QCoreApplication::setOrganizationName(applicationInfo.value("organizationName").toString());
|
||||
QCoreApplication::setOrganizationDomain(applicationInfo.value("organizationDomain").toString());
|
||||
|
||||
// Let's set up the settings Private instance on its own thread
|
||||
|
|
Loading…
Reference in a new issue