Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Apr 9, 2021
1 parent f401582 commit 1ef5376
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 56 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Remodel Changelog

## Unreleased Changes

## 0.8.0 (2021-04-09)
* Ported to rbx-dom v2, which includes full support for binary and XML model files.
* Changed all upload commands to upload as binary instead of XML.
* Added support for CSRF negotiation to fix asset uploading. ([#25][#25])
* Added support for Vector3int16.
* Added support for BinaryString values.
* Added :GetDescendants().
* Added Instance:GetDescendants().

[#25]: https://github.com/rojo-rbx/remodel/issues/25

Expand Down
98 changes: 55 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 6 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "remodel"
version = "0.7.1"
version = "0.8.0"
description = "A tool to read, modify, and write Roblox objects."
authors = ["Lucien Greathouse <[email protected]>"]
edition = "2018"
Expand All @@ -20,17 +20,11 @@ panic = "abort"
panic = "abort"

[dependencies]
rbx_binary = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
rbx_dom_weak = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
rbx_reflection = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
rbx_reflection_database = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }
rbx_xml = { git = "https://github.com/rojo-rbx/rbx-dom", branch = "master" }

# rbx_binary = "0.6.0-alpha.1"
# rbx_dom_weak = "2.0.0-alpha.1"
# rbx_reflection = "4.0.0-alpha.1"
# rbx_reflection_database = "0.1.0"
# rbx_xml = "0.12.0-alpha.1"
rbx_binary = "0.6.0-alpha.4"
rbx_dom_weak = "2.0.0-alpha.1"
rbx_reflection = "4.0.0-alpha.1"
rbx_reflection_database = "0.1.0"
rbx_xml = "0.12.0-alpha.1"

anyhow = "1.0.27"
backtrace = "0.3.45"
Expand Down

0 comments on commit 1ef5376

Please sign in to comment.