Skip to content

Commit

Permalink
org and repo rename
Browse files Browse the repository at this point in the history
  • Loading branch information
K0lb3 committed Jul 25, 2023
1 parent adb0e5b commit 2eada96
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Short version for non-lawyers:

The UnityRustExtractor Project is dual-licensed under Apache 2.0 and MIT
The RustyAssetBundleEXtractor Project is dual-licensed under Apache 2.0 and MIT
terms.


Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "urex"
name = "rabex"
version = "0.0.3"
edition = "2021"
include = [
Expand All @@ -12,11 +12,11 @@ include = [
]
authors = ["Rudolf Kolbe <rkolbe96@gmail.com>"]
description = "wip UnityRustExtractor and patcher"
documentation = "https://docs.rs/urex"
homepage = "https://crates.io/crates/urex"
documentation = "https://docs.rs/rabes"
homepage = "https://crates.io/crates/rabex"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/UnityRustEXtractor/urex"
repository = "https://github.com/UniversalGameExtraction/RustyAssetBundleEXtractor"


[dependencies]
Expand Down
33 changes: 17 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# UnityRustEXtractor [![Build Status]][actions] [![Latest Version]][crates.io] [![Docs]][docs.rs] [![License_MIT]][license_mit] [![License_APACHE]][license_apache]

[Build Status]: https://img.shields.io/github/actions/workflow/status/UnityRustEXtractor/urex/ci.yml?branch=main
[actions]: https://github.com/UnityRustEXtractor/urex/actions?query=branch%3Amain
[Latest Version]: https://img.shields.io/crates/v/urex.svg
[crates.io]: https://crates.io/crates/urex
[Docs]: https://docs.rs/urex/badge.svg
[docs.rs]: https://docs.rs/crate/urex/
# RustyAssetBundleEXtractor (rabex) [![Build Status]][actions] [![Latest Version]][crates.io] [![Docs]][docs.rs] [![License_MIT]][license_mit] [![License_APACHE]][license_apache]

[Build Status]: https://img.shields.io/github/actions/workflow/status/UniversalGameExtraction/RustyAssetBundleEXtractor/ci.yml?branch=main
[actions]: https://github.com/UniversalGameExtraction/RustyAssetBundleEXtractor/actions?query=branch%3Amain
[Latest Version]: https://img.shields.io/crates/v/RustyAssetBundleEXtractor.svg
[crates.io]: https://crates.io/crates/rabex
[Docs]: https://docs.rs/rabex/badge.svg
[docs.rs]: https://docs.rs/crate/rabex/
[License_MIT]: https://img.shields.io/badge/License-MIT-yellow.svg
[license_mit]: https://raw.githubusercontent.com/UnityRustEXtractor/urex/main/LICENSE-MIT
[license_mit]: https://raw.githubusercontent.com/UniversalGameExtraction/RustyAssetBundleEXtractor/main/LICENSE-MIT
[License_APACHE]: https://img.shields.io/badge/License-Apache%202.0-blue.svg
[license_apache]: https://raw.githubusercontent.com/UnityRustEXtractor/urex/main/LICENSE-APACHE
[license_apache]: https://raw.githubusercontent.com/UniversalGameExtraction/RustyAssetBundleEXtractor/main/LICENSE-APACHE


A work-in-progress extractor and patcher for Unity Engine asset files.
Expand Down Expand Up @@ -43,8 +43,8 @@ use std::{
path::Path,
};

use urex::files::{BundleFile, SerializedFile};
use urex::config::ExtractionConfig;
use rabex::files::{BundleFile, SerializedFile};
use rabex::config::ExtractionConfig;

let mut reader = File::open(fp).unwrap();
let export_dir = Path::new("dump");
Expand Down Expand Up @@ -110,9 +110,9 @@ for directory in &bundle.m_DirectoryInfo {

// serialize as actual class
// note: a small part of the object classes isn't implemented yet
if object.m_ClassID == urex::objects::map::AssetBundle {
if object.m_ClassID == rabex::objects::map::AssetBundle {
let ab = handler
.parse::<urex::objects::classes::AssetBundle>()
.parse::<rabex::objects::classes::AssetBundle>()
.unwrap();
println!("{:?}", ab);
}
Expand Down Expand Up @@ -148,8 +148,9 @@ let bundle = crate::files::BundleFile::from_reader(&mut reader, &config).unwrap(

- Parsers:

- [ ] WebFile
- [x] SerializedFile
- [x] BundleFile
- [ ] WebFile

- Object Classes:

Expand Down Expand Up @@ -181,7 +182,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).

## License

UnityRustEXtractor is primarily distributed under the terms of both the MIT license and the
RustyAssetBundleEXtractor is primarily distributed under the terms of both the MIT license and the
Apache License (Version 2.0).

See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and
Expand Down

0 comments on commit 2eada96

Please sign in to comment.