New release, with 15-minute Santa!

This commit is contained in:
Dustin Carlino 2020-12-21 08:03:06 -08:00
parent b2dcf93b68
commit d0995f5b77
5 changed files with 19 additions and 11 deletions

View File

@ -6,15 +6,16 @@ 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.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),
[Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_windows_v0_2_23.zip),
[Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_mac_v0_2_23.zip),
[Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_linux_v0_2_23.zip),
[FreeBSD](https://www.freshports.org/games/abstreet/),
[your web browser](http://abstreet.s3-website.us-east-2.amazonaws.com/dev/game), or
[read all instructions](https://dabreegster.github.io/abstreet/howto/index.html)
(new releases every Sunday)
- [build from source](https://dabreegster.github.io/abstreet/dev/index.html)
(new changes daily)
- Try the Dec 2020 surprise: [15-minute Santa](https://dabreegster.github.io/abstreet/side_projects/santa.html)
## Show, don't tell

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.22/abstreet_windows_v0_2_22.zip)
- [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_windows_v0_2_23.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.22/abstreet_mac_v0_2_22.zip)
- [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_mac_v0_2_23.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.22/abstreet_linux_v0_2_22.zip)
- [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_linux_v0_2_23.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

@ -679,3 +679,9 @@ changes here.
- 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...
0.2.23
- released the 15-minute Santa experiment!
- trip info panels now show more continuous progress along a route
- fixing inactive buttons stretching too much

View File

@ -18,9 +18,9 @@ Contact <dabreegster@gmail.com> with any feedback or
- [Play online](http://abstreet.s3-website.us-east-2.amazonaws.com/dev/santa)
(slower and no music -- download below if possible)
- Windows
- Mac
- Linux
- [Windows](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_windows_v0_2_23.zip)
- [Mac](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_mac_v0_2_23.zip)
- [Linux](https://github.com/dabreegster/abstreet/releases/download/v0.2.23/abstreet_linux_v0_2_23.zip)
Unzip, then run `santa.exe` or `santa`.
@ -72,4 +72,5 @@ of technical experience,
and then the above instructions for modding the game. Otherwise, draw the map
boundaries in <http://geojson.io> and
[send it to us](https://github.com/dabreegster/abstreet/issues/new) along with a
time limit, goal, and starting point on the map.
time limit, goal, and starting point on the map. If you have a public data
source for the number of housing units per building, please include it!

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