diff --git a/README.md b/README.md index c2363a2b89..e032ff2b77 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ changes to a city affect the movement of drivers, cyclists, transit users, and pedestrians. - Play on - [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_windows_v0_2_21.zip), - [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_mac_v0_2_21.zip), - [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_linux_v0_2_21.zip), + [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.22/abstreet_windows_v0_2_22.zip), + [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.22/abstreet_mac_v0_2_22.zip), + [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.22/abstreet_linux_v0_2_22.zip), [FreeBSD](https://www.freshports.org/games/abstreet/), [your web browser](http://abstreet.s3-website.us-east-2.amazonaws.com/dev), or [read all instructions](https://dabreegster.github.io/abstreet/howto/index.html) diff --git a/book/src/howto/README.md b/book/src/howto/README.md index ad2bf1e125..3241772100 100644 --- a/book/src/howto/README.md +++ b/book/src/howto/README.md @@ -9,10 +9,10 @@ hit problems. Grab a pre-built binary release -- updated every Sunday, announced at [r/abstreet](http://old.reddit.com/r/abstreet): -- [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_windows_v0_2_21.zip) +- [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.22/abstreet_windows_v0_2_22.zip) - Unzip the folder, then run `play_abstreet.bat`. You'll probably getting a warning about running software from an unknown publisher. -- [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_mac_v0_2_21.zip) +- [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.22/abstreet_mac_v0_2_22.zip) - Unzip the directory, then run `play_abstreet.sh`. - If you get an error about the developer unverified, [follow this](https://support.apple.com/guide/mac-help/open-a-mac-app-from-an-unidentified-developer-mh40616/mac). @@ -23,7 +23,7 @@ Grab a pre-built binary release -- updated every Sunday, announced at `cd game; RUST_BACKTRACE=1 ./game 1> ../output.txt 2>&1` - [Help needed](https://github.com/dabreegster/abstreet/issues/77) to package this as a Mac .app, to make this process simpler -- [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_linux_v0_2_21.zip) +- [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.22/abstreet_linux_v0_2_22.zip) - Unzip the directory, then run `play_abstreet.sh`. - [FreeBSD](https://www.freshports.org/games/abstreet/), thanks to [Yuri](https://github.com/yurivict) diff --git a/book/src/project/CHANGELOG.md b/book/src/project/CHANGELOG.md index 51cf43bcac..760d43dd5d 100644 --- a/book/src/project/CHANGELOG.md +++ b/book/src/project/CHANGELOG.md @@ -667,3 +667,15 @@ changes here. - misc bug fixes and other refactoring, focused on GUI code mostly - most of a prototype done for an experiment - map added for north seattle + +0.2.22 + +- vehicles will lane-change less erratically during uber-turns (sequences of turns through multiple traffic signals close together) +- debug mode has a "blocked-by graph" tool to understand dependencies between waiting agents +- try multiple OpenGL video mode options if the first choice fails (thanks Michael!) +- refactoring trip starting code and the minimap +- non-Latin fonts now supported on web too, thanks to rustybuzz release +- new small maps in Seattle included in the release, and NYC added to optional cities +- saving some player state on the web (mostly camera position per map, for the main game) +- partial prototype of a new census-based scenario generator, thanks to help from the Amazon SSPA hackathon +- significant progress on the experiment, about one week left... diff --git a/map_gui/src/tools/updater.rs b/map_gui/src/tools/updater.rs index 7cd6769c02..5bb8b6c525 100644 --- a/map_gui/src/tools/updater.rs +++ b/map_gui/src/tools/updater.rs @@ -11,7 +11,7 @@ use crate::tools::PopupMsg; use crate::AppLike; // Update this ___before___ pushing the commit with "[rebuild] [release]". -const NEXT_RELEASE: &str = "0.2.22"; +const NEXT_RELEASE: &str = "0.2.23"; pub struct Picker { panel: Panel,