Skip to content

Releases: UpliftGames/rojo

v7.4.0-uplift.syncback.rc.9

15 Apr 17:41
a4c8e29
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.10

This release continues the work on developing syncback. Since syncback is primarily feature complete at this point, this release primarily contains bug fixes.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have bugs and you should be careful about using it for serious work. Among other things, syncback can delete files from your disk so you should be careful using it.

Please check out the section at the bottom of these notes for a list of changes.

If you are new to syncback, click here for a rundown!

Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
            "ignoreReferents": false,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.
  • ignoreReferents is a toggle for whether to sync back referent properties like Model.PrimaryPart. Defaults to false, which means that they will be included.

This feature will have bugs. Please report them to us as you encounter them!

Changes

  • rc.9
    • Started using UniqueId for referent links instead of a random 128-bit integer
    • CSV files are now sorted by Key instead of Source and preserve the Example field now
    • All Value objects (StringValue, IntValue, etc.) now syncback as a JSON model by default
    • ignore_paths globs now ignore src if your glob is src/**. This behavior can be reverted by setting create_ignore_dir_paths to false in syncbackRules.
    • Made it so diffing takes place after referent links, fixing cases where referents wouldn't be linked in files that were otherwise identical
    • Improved performance of writing to file system
  • rc.8
    • Fixed a regression wherein Directories wouldn't fallback to syncing back as an Rbxm if the initial syncback attempt failed
  • rc.7
    • Rewrote the majority of the path resolution logic, resulting in much more accurate syncback of Project files
    • CSV files should now syncback correctly
    • Properties are filtered differently now, resulting in less data being stripped out of rbxm and rbxmx files as well as all JSON formats
    • SharedString properties should no longer show up unexpectedly in directory metadata
  • rc.6
    • Ported the fix for model pivots from 7.4.1
  • rc.5
    • Updated the version tags for Rojo's CLI and Plugin to actually say "7.4.0-uplift.syncback.rc.5" instead of "7.4.0"
  • rc.4
    • Rewrote syncback for project files to accurately run syncback on nodes with $path
    • This rewrite should correct a problem with nested projects, among other things
    • syncCurrentCamera now does what it says instead of the opposite
    • SharedString properties (such as the collision of MeshParts and Unions) are saved in rbxm and rbxmx models now
    • If a project cannot be serialized as a directory, it will instead be serialized as an rbxm file rather than raising an error
    • Syncback will now emit rbxmx files rather than rbxm if the enviroment variable ROJO_SYNCBACK_DEBUG is set to 1
    • Similarly, it will emit model.json files if it is set to 2.
  • rc.3
    • Fixes ref properties not saving correctly when a model is saved via syncback
  • rc.2
    • Fixes cross-file referent support
    • Fixes attribute/tag deletion
    • Fixes massive diffs
    • Added prompt to confirm before writing files. Bypass with -y or --non-interactive.

v7.4.0-uplift.syncback.rc.8

04 Apr 18:06
19acf61
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.9

This release continues the work on developing syncback. Since syncback is primarily feature complete at this point, this release primarily contains bug fixes.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't send things to the recycling bin like the previous implementation of syncback did.

Please check out the section at the bottom of these notes for a list of changes.

If you are new to syncback, click here for a rundown!

Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
            "ignoreReferents": false,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.
  • ignoreReferents is a toggle for whether to sync back referent properties like Model.PrimaryPart. Defaults to false, which means that they will be included.

This feature will have bugs. Please report them to us as you encounter them!

Changes

  • rc.8
    • Fixed a regression wherein Directories wouldn't fallback to syncing back as an Rbxm if the initial syncback attempt failed
  • rc.7
    • Rewrote the majority of the path resolution logic, resulting in much more accurate syncback of Project files
    • CSV files should now syncback correctly
    • Properties are filtered differently now, resulting in less data being stripped out of rbxm and rbxmx files as well as all JSON formats
    • SharedString properties should no longer show up unexpectedly in directory metadata
  • rc.6
    • Ported the fix for model pivots from 7.4.1
  • rc.5
    • Updated the version tags for Rojo's CLI and Plugin to actually say "7.4.0-uplift.syncback.rc.5" instead of "7.4.0"
  • rc.4
    • Rewrote syncback for project files to accurately run syncback on nodes with $path
    • This rewrite should correct a problem with nested projects, among other things
    • syncCurrentCamera now does what it says instead of the opposite
    • SharedString properties (such as the collision of MeshParts and Unions) are saved in rbxm and rbxmx models now
    • If a project cannot be serialized as a directory, it will instead be serialized as an rbxm file rather than raising an error
    • Syncback will now emit rbxmx files rather than rbxm if the enviroment variable ROJO_SYNCBACK_DEBUG is set to 1
    • Similarly, it will emit model.json files if it is set to 2.
  • rc.3
    • Fixes ref properties not saving correctly when a model is saved via syncback
  • rc.2
    • Fixes cross-file referent support
    • Fixes attribute/tag deletion
    • Fixes massive diffs
    • Added prompt to confirm before writing files. Bypass with -y or --non-interactive.

v7.4.0-uplift.syncback.rc.7

02 Apr 23:42
ad15475
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.8

This release continues the work on developing syncback. Since syncback is primarily feature complete at this point, this release primarily contains bug fixes.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't send things to the recycling bin like the previous implementation of syncback did.

Please check out the section at the bottom of these notes for a list of changes.

If you are new to syncback, click here for a rundown!

Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
            "ignoreReferents": false,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.
  • ignoreReferents is a toggle for whether to sync back referent properties like Model.PrimaryPart. Defaults to false, which means that they will be included.

This feature will have bugs. Please report them to us as you encounter them!

Changes

  • rc.7
    • Rewrote the majority of the path resolution logic, resulting in much more accurate syncback of Project files
    • CSV files should now syncback correctly
    • Properties are filtered differently now, resulting in less data being stripped out of rbxm and rbxmx files as well as all JSON formats
    • SharedString properties should no longer show up unexpectedly in directory metadata
  • rc.6
    • Ported the fix for model pivots from 7.4.1
  • rc.5
    • Updated the version tags for Rojo's CLI and Plugin to actually say "7.4.0-uplift.syncback.rc.5" instead of "7.4.0"
  • rc.4
    • Rewrote syncback for project files to accurately run syncback on nodes with $path
    • This rewrite should correct a problem with nested projects, among other things
    • syncCurrentCamera now does what it says instead of the opposite
    • SharedString properties (such as the collision of MeshParts and Unions) are saved in rbxm and rbxmx models now
    • If a project cannot be serialized as a directory, it will instead be serialized as an rbxm file rather than raising an error
    • Syncback will now emit rbxmx files rather than rbxm if the enviroment variable ROJO_SYNCBACK_DEBUG is set to 1
    • Similarly, it will emit model.json files if it is set to 2.
  • rc.3
    • Fixes ref properties not saving correctly when a model is saved via syncback
  • rc.2
    • Fixes cross-file referent support
    • Fixes attribute/tag deletion
    • Fixes massive diffs
    • Added prompt to confirm before writing files. Bypass with -y or --non-interactive.

v7.4.0-uplift.syncback.rc.6

29 Mar 18:37
4d1f483
Compare
Choose a tag to compare
Pre-release

This release ports fixes for model pivots from upstream Rojo to this branch. It is otherwise identical to v7.4.0-uplift.syncback.rc.5, so see that release's notes for more details.

v7.4.0-uplift.syncback.rc.5

12 Mar 19:35
ec8658c
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.6

As mentioned in the last releases, this is a total rewrite of syncback and compatibility with v7.3.0-uplift.12.pre.2+syncback.experimental.1 is not guaranteed nor tested for.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't send things to the recycling bin like the previous implementation of syncback did.

Please check out the section at the bottom of these notes for a list of changes.


Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.

This feature will have bugs. Please report them to us as you encounter them!

Changes

  • rc.5
    • Updated the version tags for Rojo's CLI and Plugin to actually say "7.4.0-uplift.syncback.rc.5" instead of "7.4.0"
  • rc.4
    • Rewrote syncback for project files to accurately run syncback on nodes with $path
    • This rewrite should correct a problem with nested projects, among other things
    • syncCurrentCamera now does what it says instead of the opposite
    • SharedString properties (such as the collision of MeshParts and Unions) are saved in rbxm and rbxmx models now
    • If a project cannot be serialized as a directory, it will instead be serialized as an rbxm file rather than raising an error
    • Syncback will now emit rbxmx files rather than rbxm if the enviroment variable ROJO_SYNCBACK_DEBUG is set to 1
    • Similarly, it will emit model.json files if it is set to 2.
  • rc.3
    • Fixes ref properties not saving correctly when a model is saved via syncback
  • rc.2
    • Fixes cross-file referent support
    • Fixes attribute/tag deletion
    • Fixes massive diffs
    • Added prompt to confirm before writing files. Bypass with -y or --non-interactive.

v7.4.0-uplift.syncback.rc.4

08 Mar 23:54
71c17a2
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.5

As mentioned in the last releases, this is a total rewrite of syncback and compatibility with v7.3.0-uplift.12.pre.2+syncback.experimental.1 is not guaranteed nor tested for.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't send things to the recycling bin like the previous implementation of syncback did.

Please check out the section at the bottom of these notes for a list of changes.


Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.

This feature will have bugs. Please report them to us as you encounter them!

Changes

  • rc.4
    • Rewrote syncback for project files to accurately run syncback on nodes with $path
    • This rewrite should correct a problem with nested projects, among other things
    • syncCurrentCamera now does what it says instead of the opposite
    • SharedString properties (such as the collision of MeshParts and Unions) are saved in rbxm and rbxmx models now
    • If a project cannot be serialized as a directory, it will instead be serialized as an rbxm file rather than raising an error
    • Syncback will now emit rbxmx files rather than rbxm if the enviroment variable ROJO_SYNCBACK_DEBUG is set to 1
    • Similarly, it will emit model.json files if it is set to 2.
  • rc.3
    • Fixes ref properties not saving correctly when a model is saved via syncback
  • rc.2
    • Fixes cross-file referent support
    • Fixes attribute/tag deletion
    • Fixes massive diffs
    • Added prompt to confirm before writing files. Bypass with -y or --non-interactive.

v7.4.0-uplift.syncback.rc.3

15 Feb 22:56
84a96ec
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.4

As mentioned in the last release, this is a total rewrite of syncback and compatibility with v7.3.0-uplift.12.pre.2+syncback.experimental.1 is not guaranteed nor tested for.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't send things to the recycling bin like the previous implementation of syncback did.


Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.

This feature will have bugs. Please report them to us as you encounter them!


Changes:

  • rc.3
    • Fixes ref properties not saving correctly when a model is saved via syncback
  • rc.2
    • Fixes cross-file referent support
    • Fixes attribute/tag deletion
    • Fixes massive diffs
    • Added prompt to confirm before writing files. Bypass with -y or --non-interactive.

v7.4.0-uplift.syncback.rc.2

09 Feb 23:45
0c4057f
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.3

This is a release with what is considered the second 'usable' build for Syncback. It fixes several bugs and problems with the first build, including referent support, attributes/tags sometimes being deleted, and diffs being extremely large when there were many rbxms in the project.

This release has also added a prompt to confirm before writing files, as well as some CLI flags for quality of life. You can bypass the prompt by passing -y. See rojo syncback --help for more information.

As mentioned in the last release, this is a total rewrite of syncback and compatibility with v7.3.0-uplift.12.pre.2+syncback.experimental.1 is not guaranteed nor tested for.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't send things to the recycling bin like the previous implementation of syncback did.


Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.

This feature will have bugs. Please report them to us as you encounter them!

v7.4.0-uplift.syncback.rc.1

05 Feb 20:17
67e74d3
Compare
Choose a tag to compare
Pre-release
This release has been superseded by v7.4.0-uplift.syncback.rc.2

This is a release with what is considered the first 'usable' build for Syncback. It is a total rewrite of the feature and compatibility with v7.3.0-uplift.12.pre.2+syncback.experimental.1 is not guaranteed nor tested for.

Note that this is a pre-release build. Despite being labeled as a release candidate, it will almost certainly have serious bugs and you should not consider it safe for production unless you're very brave. Among other things, this release doesn't prompt before deleting or overwriting files nor does it send things to the recycle bin. You may lose your entire project as a result, so please use source control like git.


Syncback is a feature designed to solve the long-standing problem of converting an existing place file into a Rojo project. It is configured by a new field in projects, and is invoked with a CLI subcommand rojo syncback.

The command itself is rojo syncback path/to/project --input path/to/file.rbxl. This will run syncback and pull things from the provided file to place on the operating system. Instances are attempted to be written in a reasonable manner but what Instances become what is still up in the air.

Instances will only be pulled from the file system if they are a descendant of a node in the provided project file. That is, in order to syncback the children of Workspace, Workspace must be in your project file. You may wish to have a separate project.json for running syncback as a result.

To control the behavior of syncback more, there's a new field in project files named syncbackRules:

    {
        "syncbackRules": {
            "ignoreTrees": [
                "DataModel/ServerStorage/ImportantSecrets",
            ],
            "ignorePaths": [
                "src/ServerStorage/Secrets/*"
            ],
            "ignoreProperties": {
                "BasePart": ["Color"]
            },
            "syncCurrentCamera": false,
            "syncUnscriptable": true,
        }
    }

A brief explanation of each field:

  • ignoreTrees is a list of paths in the roblox file that should be ignored
  • ignorePaths is a list of paths in the file system that should be ignored
  • ignoreProperties is a list of properties that won't be synced back
  • syncCurrentCamera is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to false.
  • syncUnscriptable is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to false.

This feature will have bugs. Please report them to us as you encounter them!

v7.3.0-uplift.12.pre.8

27 Sep 17:32
Compare
Choose a tag to compare
Pre-release

Changes:

  • Corrected version string
  • Fixed sourcemap generation for descendant projects
  • Diffs for added/removed items under projects are now hidden, as these won't be acted upon.