From 0f931244c485cbc1cca627aa7ee21c953e92e953 Mon Sep 17 00:00:00 2001 From: PeridexisErrant Date: Thu, 13 Feb 2020 22:57:06 +1100 Subject: [PATCH] Release 0.47.02-r01 --- base/changelog.txt | 10 ++++++++++ components.yml | 15 +++++++++++++-- starterpack/paths.py | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/base/changelog.txt b/base/changelog.txt index 239ebca..33f9517 100644 --- a/base/changelog.txt +++ b/base/changelog.txt @@ -1,3 +1,13 @@ +0.47.02-r01 + (preview/unstable; not yet recommended for new players) + - updated Vettlingr graphics to 1.3-1 + - updated Dwarf Fortress to v0.47.02 + - updated graphics packs for compatibility - CLA, Ironhand, Mayday, Meph, Obsidian, Phoebus, Spacefox + - updated Legends Browser to 1.18.1 + - updated Legends Viewer to 1.20.01 + - updated Dwarf Therapist to v41.1.3 + - updated DFHack to 0.47.02-alpha0-200213001 (a nightly build - may be unstable) + 0.44.12-r08 - fixed DFHack, I hope - updated Vettlingr graphics to version 1.2 diff --git a/components.yml b/components.yml index f0fa0e3..b844712 100644 --- a/components.yml +++ b/components.yml @@ -16,6 +16,16 @@ files: ident: DFHack/dfhack extract_to: df install_after: Dwarf Fortress + ## These lines can be un-commented and edited as appropriate to get a + ## nightly build of DFHack from https://buildmaster.lubar.me/applications/3/overview + ## You'll need to go to the latest build page, download the appropriate artifact + ## (e.g. Windows64.zip), then *extract the zipfile inside that zip* to the + ## components cache. With the keys below also updated, it should then work... + ## TODO: consider automating this process when passed --unstable + # host: manual + # dl_link: http://example.com/dfhack-0.47.02-alpha0-200213001-Windows-64.zip + # version: "0.47.02-alpha0-200213001" + # updated: "2020-02-13" PyLNP: bay12: 140808 host: bitbucket @@ -53,7 +63,7 @@ files: updated: "2017-03-10" extract_to: lnp/utilities/Quickfort install_after: Quickfort - Announcement window icons: + Ann. window icons: requires_os: win bay12: 153777 host: manual @@ -73,6 +83,8 @@ utilities: bay12: 146473 ident: JapaMala/armok-vision needs_dfhack: True + manifest: + tooltip: Armok Vision visualises your fortress in real-time true 3D! DF Story Maker: requires_os: win bay12: 128570 @@ -99,7 +111,6 @@ utilities: manifest: tooltip: View generated sketch versions of any creature in DF Dwarf Therapist: - requires_os: win bay12: 168411 ident: Dwarf-Therapist/Dwarf-Therapist Isoworld: diff --git a/starterpack/paths.py b/starterpack/paths.py index 0648130..219fa9b 100644 --- a/starterpack/paths.py +++ b/starterpack/paths.py @@ -19,7 +19,7 @@ parser = argparse.ArgumentParser() parser.add_argument('--os', choices=['win', 'linux', 'osx'], default=native_os) -parser.add_argument('--bits', choices=['32', '64',], default='64') +parser.add_argument('--bits', choices=['32', '64'], default='64') parser.add_argument('--stable', dest='stable', action='store_true') parser.add_argument('--unstable', dest='stable', action='store_false') parser.set_defaults(stable=True)