Go to file
ice_iix deb35db895 Use more descriptive name to fix blacklisted_name 'bar' (as in foobar) 2020-07-02 17:17:51 -07:00
blocks blocks: fix redundant_field_names in macro 2020-06-28 18:24:28 -07:00
gl steven_gl: suppress clippy warnings in gl-generated code 2020-06-30 18:36:20 -07:00
protocol protocol: use mutable iterator populating Biomes3D (needless_range_loop) 2020-06-29 17:43:49 -07:00
resources resources: use writeln macro, fixing write_with_newline 2020-06-29 17:50:08 -07:00
shared Reformat all source with cargo fmt (#335) 2020-06-21 12:17:24 -07:00
src Use more descriptive name to fix blacklisted_name 'bar' (as in foobar) 2020-07-02 17:17:51 -07:00
std_or_web Update dependencies: base64, flate2, num-traits, and more (#257) 2020-01-05 08:00:55 -08:00
www www: npm audit fix, closes #300, closes #324 2020-06-20 11:58:36 -07:00
.build.yml blocks: split macro into multiple functions, fast! (#267) 2020-01-09 20:08:28 -08:00
.gitignore Add rustfmt backup files to .gitignore, from #337 2020-06-21 12:32:11 -07:00
.travis.yml Add support for compiling WebAssembly wasm32-unknown-unknown target (#92) 2019-03-03 08:32:36 -08:00
Cargo.lock Update sha-1 dependency to 0.9.1. Closes #342 2020-06-28 09:15:01 -07:00
Cargo.toml Update sha-1 dependency to 0.9.1. Closes #342 2020-06-28 09:15:01 -07:00
LICENSE-APACHE Duel license under MIT and ApacheV2 2016-03-26 17:34:47 +00:00
LICENSE-MIT Duel license under MIT and ApacheV2 2016-03-26 17:34:47 +00:00
README.md Remove nonfunctional matrix-irc bridge, closes #336 2020-06-28 08:52:26 -07:00
appveyor.yml Update to Rust stable 1.44.1, closes #258 2020-06-21 11:35:20 -07:00
azure-pipelines.yml Allow float_cmp since we use it to check if floating point values changed from the last value assigned, not compare two different floating point values; downgrade not_unsafe_ptr_arg_deref to warning 2020-06-30 19:01:17 -07:00

README.md

Stevenarella

builds.sr.ht status

Multi-protocol Minecraft-compatible client written in Rust

Don't expect it to go anywhere, just doing this for fun.

Images

Steven on Hypixel Steven

In action: http://gfycat.com/NeedyElaborateGypsymoth

Community chatroom

We have a chatroom on EsperNet: irc.esper.net server, #stevenarella channel.

Join with your favorite IRC client.

Protocol support

Game version Protocol version Supported?
1.16.1 736
1.16 735
1.15.2 578
1.15.1 575
1.14.4 498
1.14.3 490
1.14.2 485
1.14.1 480
1.14 477
19w02a 452
18w50a 451
1.13.2 404
1.12.2 340
1.11.2 316
1.11 315
1.10.2 210
1.9.2 109
1.9 107
15w39c 74
1.8.9 47
1.7.10 5

Stevenarella is designed to support multiple protocol versions, so that client development is not in lock-step with the server version. The level of support varies, but the goal is to support major versions from 1.7.10 up to the current latest major version. Occasionally, snapshots are also supported.

Forge servers are currently supported on 1.7.10 - 1.12.2.

Support for older protocols will not be dropped as newer protocols are added.

Downloads

Windows users can download pre-compiled builds from here: https://ci.appveyor.com/project/iceiix/stevenarella (Select your platform, Click the artifacts tab and download Steven.zip)

The Visual Studio 2017 Redistributable is required to run these builds.

Building

Requires Rust stable version 1.44.1 or newer to build.

Compile and run:

cargo run --release

Just compile:

cargo build --release

For progress on web support, see www/.

Running

Standalone

Just running Stevenarella via a double click (Windows) or ./stevenarella (everything else) will bring up a login screen followed by a server list which you can select a server from.

Contributions

Stevenarella is an OPEN Open Source Project:

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

Rules

There are a few basic ground-rules for contributors:

  1. No --force pushes or modifying the Git history on the master branch.
  2. Non-master branches ought to be used for ongoing work.
  3. External API changes and significant modifications ought to be subject to an internal pull-request to solicit feedback from other contributors.
  4. Internal pull-requests to solicit feedback are encouraged for any other non-trivial contribution but left to the discretion of the contributor.
  5. Contributors should attempt to adhere to the prevailing code-style. Please install and run cargo fmt before merging any changes.

Changes to this arrangement

This is an experiment and feedback is welcome! This document may also be subject to pull-requests or changes by contributors where you believe you have something valuable to add or change.

Credits

Thanks to @thinkofname for the original Steven (Rust), which Stevenarella is an updated and enhanced version of.

License

Dual-licensed MIT and ApacheV2