Skip to main content

Upgrading to 5.09

Download GoZync 5.09

Important:

  • First make a reliable backup of your files before making any changes.
  • Make sure you're already GoZync build 5.08. If not, follow the instructions here to get update to build 5.08
  • Follow these changes to be made in GoZyncMobile and your hosted file.

Remember that when this completed you'll need to distribute a new copy of GoZyncMobile to your users. If it's been a while since you've done that, instructions are easy to follow.

GoZyncMobile

  1. Edit the field definition for the field Tableoccurrences::LastTimeZync and change this storage of this field to a number.
  2. Edit the script "Pull TOs ( List ( TONames|RecordId ))" and find line 23 where the LastTimeZync is set. Change the value set to this:
    1. Get ( CurrentTimeUTCMilliseconds )
  3. Edit the script "Pull Selected TO" and find line 49 where the LastTimeZync is set. Change the value to this:
    1. Get ( CurrentTimeUTCMilliseconds )

Your Hosted File

  1. In each of the synced tables in your hosted file, you'll be changing the definition of the field "gz_ModTImeStamp". Make the following change to each instance of this field:
    1. Change the storage of this field to a number.
    2. Turn off the field's auto-enter of the modification timestamp
    3. Add an auto-enter calculated value with the following definitions:
      1. Let(
        [
        x= GetField("")
        ];
        Get(CurrentTimeUTCMilliseconds)
        )
      2. Be sure to uncheck "Do not replace existing value..."
    4. Update the "Get IDs Needed for Sync PSOS" script in your hosted file. Don't delete the script itself. Instead, find the script in your hosted file, use the "Select All" command to select and delete the entire contents. Then, copy the contents from the same script in the new WorxHosted file. Paste it into the corresponding script in your hosted file.