Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
default (give the user "ui_full" priv to turn it on).
Also, a few whitespace fixes.
|
|
specific groups and (maybe) make it keep the meta of items, remove unused elseif, change a bit translation and use table.concat at one place because I read somewhere that it's faster than ..
|
|
when bags was first created, wool and farming were not in minetest_game, and so that people didnt have a load of dependancies I made the recipe from wood and sticks.
now that wool and cotton are available it makes a lot more sense to craft the bags from these items.
they are harder to obtain, but bags are valuable items in game, so i think the extra effort to obtain the items is justified.
|
|
into craft grid/trash image and a single slot image. The latter is now
used for a refill slot if user has creative priv or server is in
creative mode.
|
|
|
|
|
|
|
|
|
|
Also make sure to chech if lite mode before assuming 4x2 "tab" button layout.
|
|
Set unified_inventory_lite = true in minetest.conf to enable.
This mode reduces the feature-set of the mod as follows:
* no bags
* no waypoints,
* no home/go-home buttons,
* no set-day/-night buttons,
* smaller creative/craft guide inventory pages (4x6 instead of 8x10)
* fewer paging buttons
* smaller search field
* move "Result: foo" to below the crafting guide grid.
* Move main "tab" buttons to the right, below the search and paging buttons.
* Made "tab" buttons able to use to 2 rows if necessary (max 8 buttons)
|
|
|
|
|
|
|
|
|
|
changed bag recipes from default:stick to group:stick
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This also fixes waypoints not showing up on join.
|
|
|
|
|
|
|
|
Some polish and german translations.
Start adding tooltips.
|
|
When the craft guide is showing a craft, the output slot is now a button,
which causes the craft guide to show ways in which that output can be
used. This mirrors the way input slots are buttons that show recipes
for the selected ingredient. Usages of an item can be iterated through
in the same way as recipes for the item. This incidentally offers some
ability to retrace one's steps through a crafting chain, without storing
actual history.
|
|
When the current craft guide item has no recipes, show a "no" symbol
instead of an ingredient grid, alongside the "No recipes" message.
When no item is selected in the craft guide, leave the recipe space empty.
|
|
Commit 043f6081452365daaa033c58e0738527ccb64c3d made shaped crafting
recipes display in a grid of the recipe's minimum bounding box,
but broke the use of a fixed 1x1 grid shape for cooking recipes.
This commit generalises the dynamic-grid-shape facility, putting the
craft type registration in charge. This restores the correct shape for
cooking recipes.
Also change the logic for dynamic grid sizes for regular shaped and
shapeless crafting. We'd like to always use a grid shape that is
reminiscent of a regular crafting grid, as a visual cue to the crafting
method. But it's also nice to show smaller recipes in a smaller grid.
In the expectation that crafting grids will always be square, show the
recipe in the smallest square grid that will accommodate it.
|
|
Extend the representative-item logic to handle ingredients specified
as the intersection of multiple groups. Also add mangling of item
button content, because comma for a multi-group ingredient is getting
formspec-escaped and then not de-escaped.
|
|
Commit 043f6081452365daaa033c58e0738527ccb64c3d broke a couple of things
in the course of its refactoring. This patch restores the "G" flag that
signals group ingredients, the preference for "default:" items as group
representatives (where a representative isn't specifically registered),
and the built-in registration of default:cobble as representative for
group:stone (because it's the most commonly-used item in that group).
|
|
The user input was being erroneously treated as a lua regexp.
|
|
|
|
|
|
|
|
|
|
(and shrunk them accordingly)
|
|
|
|
|
|
This also keeps recipes aligned to the right, close to the arrow.
It also calculates the craft's height.
|
|
|
|
|
|
|
|
Previous commit left this in.
|
|
Where a recipe specifies an ingredient by group, show a typical group
item pictorially, with a label flag to indicate that it's a group rather
than the single item. This is the inverse of the previous arrangement,
which identified the group by label and dipicted groupiness pictorially.
The new arrangement is easier to interpret, and if the labels are ignored
it actually shows a correct input to the crafting grid.
|