new release

This commit is contained in:
Dustin Carlino 2020-11-29 17:02:34 -08:00
parent be3d1dc83b
commit 8ee3466815
4 changed files with 14 additions and 7 deletions

View File

@ -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.20/abstreet_windows_v0_2_20.zip),
[Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.20/abstreet_mac_v0_2_20.zip),
[Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.20/abstreet_linux_v0_2_20.zip),
[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),
[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)

View File

@ -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.20/abstreet_windows_v0_2_20.zip)
- [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_windows_v0_2_21.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.20/abstreet_mac_v0_2_20.zip)
- [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_mac_v0_2_21.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.20/abstreet_linux_v0_2_20.zip)
- [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.21/abstreet_linux_v0_2_21.zip)
- Unzip the directory, then run `play_abstreet.sh`.
- [FreeBSD](https://www.freshports.org/games/abstreet/), thanks to
[Yuri](https://github.com/yurivict)

View File

@ -660,3 +660,10 @@ changes here.
- prototyped a new 15-minute neighborhood tool
- overhaul internal simulation input code -- better performance, way simpler
- debug tool to record traffic around a few intersections and replay later
0.2.21
- split separate tools into their own executables
- misc bug fixes and other refactoring, focused on GUI code mostly
- most of a prototype done for an experiment
- map added for north seattle

View File

@ -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.21";
const NEXT_RELEASE: &str = "0.2.22";
pub struct Picker<A: AppLike> {
panel: Panel,