diff options
author | Pierre-Yves Rollo <dev@pyrollo.com> | 2018-11-18 15:32:07 +0100 |
---|---|---|
committer | Pierre-Yves Rollo <dev@pyrollo.com> | 2018-11-18 15:32:07 +0100 |
commit | 1f8451567f4c753a3f848167051ff1de896e1d77 (patch) | |
tree | a215842927d9e7cfe3905aee0c14230fa3cde148 | |
parent | 4eb72f0c3f3bdbd7cd6f2320f508d4376b6ce3b5 (diff) | |
parent | d9b10f6c3e7b133b5539e39c6da0ffebde1f4b59 (diff) | |
download | display_modpack-1f8451567f4c753a3f848167051ff1de896e1d77.tar.gz display_modpack-1f8451567f4c753a3f848167051ff1de896e1d77.tar.bz2 display_modpack-1f8451567f4c753a3f848167051ff1de896e1d77.zip |
Merge local and origin 'master' branches
-rw-r--r-- | README.md | 25 | ||||
-rw-r--r-- | font_api/README.md | 9 | ||||
-rw-r--r-- | signs/depends.txt | 3 |
3 files changed, 28 insertions, 9 deletions
@@ -3,20 +3,29 @@ Version 1.2 This modpack provides mods with dynamic display. Mods are : -- **display_api**: A library for adding display entities to nodes; -- **font_api**: A library for displaying fonts on entities; -- **signs_api**: A library for the easy creation of signs; +- **[display_api](https://github.com/pyrollo/display_modpack/tree/master/display_api)**: A library for adding display entities to nodes; +- **[font_api](https://github.com/pyrollo/display_modpack/tree/master/font_api)**: A library for displaying fonts on entities; +- **[signs_api](https://github.com/pyrollo/display_modpack/tree/master/signs_api)**: A library for the easy creation of signs; +- **[font_metro](https://github.com/pyrollo/display_modpack/tree/master/font_metro)**: A font mod used as default font (includes uppercase, lowercase and accentuated latin letters, usual signs, cyrillic and greek letters) -- **boards**: A mod providing school boards; -- **ontime_clocks**: A mod providing clocks which display the ingame time; -- **signs**: A mod providing signs and direction signs displaying text; -- **signs_road**: A mod providing road signs displaying text; -- **steles**: A mod providing stone steles with text; +- **[boards](https://github.com/pyrollo/display_modpack/tree/master/boards)**: A mod providing school boards (includes *tiny cursive font*, a handwriting style font); +- **[ontime_clocks](https://github.com/pyrollo/display_modpack/tree/master/ontime_clocks)**: A mod providing clocks which display the ingame time; +- **[signs](https://github.com/pyrollo/display_modpack/tree/master/signs)**: A mod providing signs and direction signs displaying text; +- **[signs_road](https://github.com/pyrollo/display_modpack/tree/master/signs_road)**: A mod providing road signs displaying text; +- **[steles](https://github.com/pyrollo/display_modpack/tree/master/steles)**: A mod providing stone steles with text; For more information, see the [forum topic](https://forum.minetest.net/viewtopic.php?t=19365) at the Minetest forums. ![Presentation image of Display_Modpack](screenshot.png) +## Extra fonts + +*Metro* and *Tiny Cursive* fonts are provided in **Display Modpack** (in **font_metro** and **boards** mods) but you can add more fonts by installing font mods. Be aware that each font mod comes with numerous textures. This can result in slowing media downloading and/or client display. + +Extra font mods can be found here: + * [OldWizard](https://github.com/pyrollo/font_oldwizard): An old style gothic font. + * [Botic](https://github.com/pyrollo/font_botic): A scifi style font. + ## Changelog ### 2018-11-01 (Version 1.2) diff --git a/font_api/README.md b/font_api/README.md index 2c485d4..33af92b 100644 --- a/font_api/README.md +++ b/font_api/README.md @@ -12,3 +12,12 @@ This library for font display on entities (to be used with display_api for sign For more information, see the [forum topic](https://forum.minetest.net/viewtopic.php?t=13563) at the Minetest forums. +## Extra fonts + +You can add fonts by installing fonts mod. Be aware that each font comes with numerous textures. This can result in slowing media downloading and/or client display. + +Font mods can be found here: + + * [Metro](https://github.com/pyrollo/display_modpack/tree/master/font_metro): A multipurpose font with many chars (uppercase, lowercase and accentuated latin letters, usual signs, cyrillic and greek letters). + * [OldWizard](https://github.com/pyrollo/font_oldwizard): An old style gothic font. + * [Botic](https://github.com/pyrollo/font_botic): A scifi style font. diff --git a/signs/depends.txt b/signs/depends.txt index ad3bb8f..aaf5bff 100644 --- a/signs/depends.txt +++ b/signs/depends.txt @@ -1,5 +1,6 @@ default -intllib? +dye display_api font_api signs_api +intllib? |