Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
x87 committed Jul 1, 2022
1 parent 34f6a5e commit bb01d62
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
### 1.0.0 - July 01, 2022

- add initial support for GTA IV (The Complete Edition)
- all GTA games now use [compound definitions](https://re.cleo.li/docs/en/definitions.html) (a combination of the primary JSON file and a JSON file for the Unknown host from Sanny Builder library)
- fix an issue when CLEO stopped loading FXT files after encountering non-UTF8 characters
- add [CLEO.apiVersion](https://re.cleo.li/docs/en/api.html#cleo) property

**SDK AND PLUGINS**

- two new plugins: [MemoryOperations](https://library.sannybuilder.com/#/unknown_x86/memops) and [Input](https://library.sannybuilder.com/#/unknown_x86/input)
- new SDK methods `OnBeforeScripts`, `OnAfterScripts`, `OnRuntimeInit` to register and run callbacks on each game tick or after game reload. [See example](https://github.com/cleolibrary/CLEO-Redux/blob/master/plugins/Input/src/lib.rs#L23) of usage in the Input plugin.

**INSTALLER**

- installer now includes all files needed to setup and run CLEO Redux in offline mode


**BREAKING CHANGES**

- bumped minimum required versions of [command definitions](https://re.cleo.li/docs/en/definitions.html)

### 0.9.4 - May 12, 2022

- add support for custom file loaders allowing [import of various file formats](https://re.cleo.li/docs/en/imports.html)
Expand Down
6 changes: 3 additions & 3 deletions docs/en/definitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ On the first run CLEO tries to download a definition file (see the table below)
| ----------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------ |
| GTA III, re3 | [gta3.json](https://github.com/sannybuilder/library/blob/master/gta3/gta3.json) | `0.224` |
| GTA VC, reVC | [vc.json](https://github.com/sannybuilder/library/blob/master/vc/vc.json) | `0.225` |
| GTA San Andreas (Classic) 1.0 | [sa.json](https://github.com/sannybuilder/library/blob/master/sa/sa.json) | `0.250` |
| GTA IV | [gta_iv.json](https://github.com/sannybuilder/library/blob/master/gta_iv/gta_iv.json) | `0.35` |
| GTA San Andreas (Classic) 1.0 | [sa.json](https://github.com/sannybuilder/library/blob/master/sa/sa.json) | `0.253` |
| GTA IV | [gta_iv.json](https://github.com/sannybuilder/library/blob/master/gta_iv/gta_iv.json) | `0.38` |
| GTA III: The Definitive Edition | [gta3_unreal.json](https://github.com/sannybuilder/library/blob/master/gta3_unreal/gta3_unreal.json) | `0.213` |
| Vice City: The Definitive Edition | [vc_unreal.json](https://github.com/sannybuilder/library/blob/master/vc_unreal/vc_unreal.json) | `0.215` |
| San Andreas: The Definitive Edition | [sa_unreal.json](https://github.com/sannybuilder/library/blob/master/sa_unreal/sa_unreal.json) | `0.224` |
| San Andreas: The Definitive Edition | [sa_unreal.json](https://github.com/sannybuilder/library/blob/master/sa_unreal/sa_unreal.json) | `0.227` |
| Unknown (32-bit) | [unknown_x86.json](https://github.com/sannybuilder/library/blob/master/unknown_x86/unknown_x86.json) | `0.211` |
| Unknown (64-bit) | [unknown_x64.json](https://github.com/sannybuilder/library/blob/master/unknown_x64/unknown_x64.json) | `0.215` |

Expand Down
2 changes: 1 addition & 1 deletion website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ <h1 class="font-weight-bold d-flex justify-content-center">
data-translate="download"
>Download</a
>
<small class="pt-1 text-muted">v0.9.4 | May 12, 2022</small>
<small class="pt-1 text-muted">v1.0.0 | July 01, 2022</small>
</div>
</div>
</div>
Expand Down

0 comments on commit bb01d62

Please sign in to comment.