From 24a602c852a327ddbdc167d9dd78d135358f79c6 Mon Sep 17 00:00:00 2001 From: dabreegster Date: Tue, 14 Sep 2021 18:07:02 +0000 Subject: [PATCH] deploy: a12ceac38bc78e9de5e9ff75b14e08bca6b53111 --- .../game/pregame/built_info/constant.BUILT_TIME_UTC.html | 2 +- rustdoc/map_gui/tools/updater/fn.download_cities.html | 2 +- rustdoc/map_gui/tools/updater/index.html | 2 +- .../debug/build/game-0716a03cc01a18cb/out/built.rs.html | 2 +- rustdoc/src/map_gui/tools/updater.rs.html | 8 +------- rustdoc/src/updater/main.rs.html | 8 +------- rustdoc/updater/fn.compress.html | 2 +- rustdoc/updater/fn.download_file.html | 2 +- rustdoc/updater/fn.remove_empty_directories.html | 2 +- rustdoc/updater/index.html | 2 +- 10 files changed, 10 insertions(+), 22 deletions(-) diff --git a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html index a7c2425c17..b2acf89166 100644 --- a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html +++ b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html @@ -1,4 +1,4 @@ -BUILT_TIME_UTC in game::pregame::built_info - Rust

Constant game::pregame::built_info::BUILT_TIME_UTC[][src]

pub const BUILT_TIME_UTC: &str = r"Mon, 13 Sep 2021 21:09:30 +0000";
Expand description

The build time in RFC2822, UTC.

+BUILT_TIME_UTC in game::pregame::built_info - Rust

Constant game::pregame::built_info::BUILT_TIME_UTC[][src]

pub const BUILT_TIME_UTC: &str = r"Tue, 14 Sep 2021 18:05:39 +0000";
Expand description

The build time in RFC2822, UTC.

\ No newline at end of file diff --git a/rustdoc/map_gui/tools/updater/fn.download_cities.html b/rustdoc/map_gui/tools/updater/fn.download_cities.html index 85ba03ad8f..9a60215e48 100644 --- a/rustdoc/map_gui/tools/updater/fn.download_cities.html +++ b/rustdoc/map_gui/tools/updater/fn.download_cities.html @@ -1,3 +1,3 @@ -download_cities in map_gui::tools::updater - Rust

Function map_gui::tools::updater::download_cities[][src]

async fn download_cities(
    cities: Vec<String>,
    outer_progress: Sender<String>,
    inner_progress: Sender<String>
) -> Vec<String>
+download_cities in map_gui::tools::updater - Rust

Function map_gui::tools::updater::download_cities[][src]

async fn download_cities(
    cities: Vec<String>,
    outer_progress: Sender<String>,
    inner_progress: Sender<String>
) -> Vec<String>
\ No newline at end of file diff --git a/rustdoc/map_gui/tools/updater/index.html b/rustdoc/map_gui/tools/updater/index.html index 3de590b88a..7d96c677ac 100644 --- a/rustdoc/map_gui/tools/updater/index.html +++ b/rustdoc/map_gui/tools/updater/index.html @@ -1,4 +1,4 @@ -map_gui::tools::updater - Rust

Module map_gui::tools::updater[][src]

Constants

+map_gui::tools::updater - Rust

Module map_gui::tools::updater[][src]

Constants

Functions

Prompt to download a missing city. On either success or failure (maybe the player choosing to not download, maybe a network error), the new map isn’t automatically loaded or anything; up to diff --git a/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-0716a03cc01a18cb/out/built.rs.html b/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-0716a03cc01a18cb/out/built.rs.html index c56cec297b..1629ed9bca 100644 --- a/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-0716a03cc01a18cb/out/built.rs.html +++ b/rustdoc/src/game/home/runner/work/abstreet/abstreet/target/debug/build/game-0716a03cc01a18cb/out/built.rs.html @@ -175,7 +175,7 @@ pub const RUSTDOC_VERSION: &str = r"rustdoc 1.55.0 (c8dfcfe04 2021-09-06)"; #[doc=r#"The build time in RFC2822, UTC."#] #[allow(dead_code)] -pub const BUILT_TIME_UTC: &str = r"Mon, 13 Sep 2021 21:09:30 +0000"; +pub const BUILT_TIME_UTC: &str = r"Tue, 14 Sep 2021 18:05:39 +0000"; #[doc=r#"The target architecture, given by `CARGO_CFG_TARGET_ARCH`."#] #[allow(dead_code)] pub const CFG_TARGET_ARCH: &str = r"x86_64"; diff --git a/rustdoc/src/map_gui/tools/updater.rs.html b/rustdoc/src/map_gui/tools/updater.rs.html index 36efe6721e..2d8d435556 100644 --- a/rustdoc/src/map_gui/tools/updater.rs.html +++ b/rustdoc/src/map_gui/tools/updater.rs.html @@ -169,9 +169,6 @@ 169 170 171 -172 -173 -174

 use std::collections::BTreeSet;
 use std::fs::File;
@@ -310,10 +307,7 @@
     for (path, entry) in manifest.entries {
         files_so_far += 1;
         let local_path = abstio::path(path.strip_prefix("data/").unwrap());
-        let url = format!(
-            "http://abstreet.s3-website.us-east-2.amazonaws.com/{}/{}.gz",
-            version, path
-        );
+        let url = format!("http://play.abstreet.org/{}/{}.gz", version, path);
         if let Err(err) = outer_progress.try_send(format!(
             "Downloading file {}/{}: {} ({})",
             files_so_far,
diff --git a/rustdoc/src/updater/main.rs.html b/rustdoc/src/updater/main.rs.html
index fe1efb1762..78e2dd3c47 100644
--- a/rustdoc/src/updater/main.rs.html
+++ b/rustdoc/src/updater/main.rs.html
@@ -417,9 +417,6 @@
 417
 418
 419
-420
-421
-422
 
 use std::collections::BTreeMap;
 use std::fs::File;
@@ -787,10 +784,7 @@
         ));
     }
 
-    let url = format!(
-        "http://abstreet.s3-website.us-east-2.amazonaws.com/{}/{}.gz",
-        version, path
-    );
+    let url = format!("http://play.abstreet.org/{}/{}.gz", version, path);
     println!("> download {}", url);
     let (mut tx, rx) = futures_channel::mpsc::channel(1000);
     abstio::print_download_progress(rx);
diff --git a/rustdoc/updater/fn.compress.html b/rustdoc/updater/fn.compress.html
index 4430ca6910..54acd61dd5 100644
--- a/rustdoc/updater/fn.compress.html
+++ b/rustdoc/updater/fn.compress.html
@@ -1,3 +1,3 @@
-compress in updater - Rust

Function updater::compress[][src]

pub(crate) fn compress(path: &str, remote_path: &str)
+compress in updater - Rust

Function updater::compress[][src]

pub(crate) fn compress(path: &str, remote_path: &str)
\ No newline at end of file diff --git a/rustdoc/updater/fn.download_file.html b/rustdoc/updater/fn.download_file.html index 2938f0df70..c7ed623d76 100644 --- a/rustdoc/updater/fn.download_file.html +++ b/rustdoc/updater/fn.download_file.html @@ -1,3 +1,3 @@ -download_file in updater - Rust

Function updater::download_file[][src]

pub(crate) async fn download_file(
    version: &str,
    path: &str,
    dl_from_local: bool
) -> Result<Vec<u8>>
+download_file in updater - Rust

Function updater::download_file[][src]

pub(crate) async fn download_file(
    version: &str,
    path: &str,
    dl_from_local: bool
) -> Result<Vec<u8>>
\ No newline at end of file diff --git a/rustdoc/updater/fn.remove_empty_directories.html b/rustdoc/updater/fn.remove_empty_directories.html index 4718385f9e..345b2d594c 100644 --- a/rustdoc/updater/fn.remove_empty_directories.html +++ b/rustdoc/updater/fn.remove_empty_directories.html @@ -1,3 +1,3 @@ -remove_empty_directories in updater - Rust

Function updater::remove_empty_directories[][src]

pub(crate) fn remove_empty_directories(root: &str)
+remove_empty_directories in updater - Rust

Function updater::remove_empty_directories[][src]

pub(crate) fn remove_empty_directories(root: &str)
\ No newline at end of file diff --git a/rustdoc/updater/index.html b/rustdoc/updater/index.html index 2e225912c8..74632c80fa 100644 --- a/rustdoc/updater/index.html +++ b/rustdoc/updater/index.html @@ -1,4 +1,4 @@ -updater - Rust

Crate updater[][src]

Constants

+updater - Rust

Crate updater[][src]

Constants

Functions