From 4d20552ef82ce0f9eee5be3c156e34dcdd40b583 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sat, 13 Jun 2015 02:41:51 -0700 Subject: [PATCH 1/3] Rename gui/hack-wish to gui/create-item After an [extensive, in-depth discussion about the merits of the name](https://github.com/DFHack/dfhack/issues/634), I decided that "hack-wish" was a dumb name and figure changing it will make everything easier for everyone forever. --- scripts/gui/{hack-wish.lua => create-item.lua} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename scripts/gui/{hack-wish.lua => create-item.lua} (98%) diff --git a/scripts/gui/hack-wish.lua b/scripts/gui/create-item.lua similarity index 98% rename from scripts/gui/hack-wish.lua rename to scripts/gui/create-item.lua index 65b81236c..05cc2fc42 100644 --- a/scripts/gui/hack-wish.lua +++ b/scripts/gui/create-item.lua @@ -1,5 +1,5 @@ --- hack-wish.lua --- Allows for script-based wishing. +-- create-item.lua +-- A gui-based item creation script. -- author Putnam -- edited by expwnent @@ -235,7 +235,7 @@ if not args.startup then if unit then hackWish(unit) else - qerror('A unit needs to be selected to use hackwish.') + qerror('A unit needs to be selected to use gui/create-item.') end else eventful.onReactionComplete.hackWishP=function(reaction,unit,input_items,input_reagents,output_items,call_native) From dd8c5195e51aed8ff0bf3583918b40d18cfcebb1 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sat, 13 Jun 2015 02:43:17 -0700 Subject: [PATCH 2/3] Update NEWS with hack-wish rename. --- NEWS | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS b/NEWS index f6d2458d3..8a54be241 100644 --- a/NEWS +++ b/NEWS @@ -30,6 +30,7 @@ DFHack Future dwarfmonitor date format can be modified (see Readme) dwarfmonitor weather display can be configured separately gui/gm-editor: Pointers can now be displaced + gui/hack-wish: renamed to gui/create-item "keybinding list" accepts a context nyan: Can now be stopped with dfhack-run quicksave: Restricted to fortress mode From 8132e34240f368961cdf680c84bf9f2d2afd6ef3 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sat, 13 Jun 2015 21:24:59 -0700 Subject: [PATCH 3/3] Update readme with hack-wish rename. --- Readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.rst b/Readme.rst index bd97755f8..107d25ecf 100644 --- a/Readme.rst +++ b/Readme.rst @@ -2226,7 +2226,7 @@ gui/* Scripts that implement dialogs inserted into the main game window are put in this directory. -* gui/hack-wish +* gui/create-item A graphical interface for creating items.