- No changes
- Defensively insert existing instances into RouteMap; should fix most duplication cases when syncing into existing trees.
- Fixed incorrect synchronization from
Plugin:_pull
that would cause polling to create issues - Fixed incorrect file routes being assigned to
init.lua
andinit.model.json
files - Untangled route handling-internals slightly
- Added support for
init.model.json
files, which enable versioningTool
instances (among other things) with Rojo. (#66) - Fixed obscure error when syncing into an invalid service.
- Fixed multiple sync processes occurring when a server ID mismatch is detected.
- Fixed warning when renaming or removing files that would sometimes corrupt the instance cache (#72)
- JSON models are no longer as strict --
Children
andProperties
are now optional.
- Hotfix to prevent errors from being thrown when objects managed by Rojo are deleted
- Added icons to the Rojo plugin, made by @Vorlias! (#70)
- Server will now issue a warning if no partitions are specified in
rojo serve
(#40)
- Rojo handles being restarted by Roblox Studio more gracefully (#67)
- Folders should no longer get collapsed when syncing occurs.
- Significant robustness improvements with regards to caching.
- This should catch all existing script duplication bugs.
- If there are any bugs with script duplication or caching in the future, restarting the Rojo server process will fix them for that session.
- Fixed message in plugin not being prefixed with
Rojo:
.
- Rojo messages are now prefixed with
Rojo:
to make them stand out in the output more. - Fixed server to notice file changes much more quickly. (200ms vs 1000ms)
- Server now lists name of project when starting up.
- Rojo now throws an error if no project file is found. (#63)
- Fixed multiple sync operations occuring at the same time. (#61)
- Partitions targeting files directly now work as expected. (#57)
- Fix small regression introduced in 0.4.3
- Plugin now automatically selects
HttpService
if it determines that HTTP isn't enabled (#58) - Plugin now has much more robust handling and will wipe all state when the server changes.
- This should fix issues that would otherwise be solved by restarting Roblox Studio.
- Fixed final case of duplicated instance insertion, caused by reconciled instances not being inserted into
RouteMap
.- The reconciler is still not a perfect solution, especially if script instances get moved around without being destroyed. I don't think this can be fixed before a big refactor.
- Merged plugin repository into main Rojo repository for easier tracking.
- Improved
RouteMap
object tracking; this should fix some cases of duplicated instances being synced into the tree.
- Protocol version 1, which shifts more responsibility onto the server
- This is a major breaking change!
- The server now has a content of 'filter plugins', which transform data at various stages in the pipeline
- The server now exposes Roblox instance objects instead of file contents, which lines up with how
rojo pack
will work, and paves the way for more robust syncing.
- Added
*.model.json
files, which let you embed small Roblox objects into your Rojo tree. - Improved error messages in some cases (#46)
- Fixed
rojo serve
failing to correctly construct an absolute root path when passed as an argument - Fixed intense CPU usage when running
rojo serve
- Improved error reporting when invalid JSON is found in a
rojo.json
project- These messages are passed on from Serde
- Factored out the plugin into a separate repository
- Fixed server when using a file as a partition
- Previously, trailing slashes were put on the end of a partition even if the read request was an empty string. This broke file reading on Windows when a partition pointed to a file instead of a directory!
- Started running automatic tests on Travis CI (#9)
- Plugin only release
- Tightened
init
file rules to only match script files- Previously, Rojo would sometimes pick up the wrong file when syncing
- Plugin only release
- Fixed broken reconciliation behavior with
init
files
- Plugin only release
- Changes default port to 8000
- Support for
init.lua
like rbxfs and rbxpacker - More robust syncing with a new reconciler
- Initial release, functionally very similar to rbxfs