Skip to content

Commit

Permalink
Update to 0.15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ZwerOxotnik committed Nov 2, 2023
1 parent 34f597c commit 275ccf4
Show file tree
Hide file tree
Showing 10 changed files with 72 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ This project contains work from multiple sources + [addons](#overview).
* [Sounds from other authors](/sound/README.txt)

Also, this project used [Mod generator](https://github.com/ZwerOxotnik/Mod-generator).\
Some images were copied from the game "Factorio" and changed, please, read terms of service: https://www.factorio.com/terms-of-service.
Some images were copied from the game "Factorio" and changed, please, read terms of service: https://www.factorio.com/terms-of-service.\
[./fonts/NerdFontsSymbolsOnly](./fonts/NerdFontsSymbolsOnly) is licensed under the [MIT](./fonts/NerdFontsSymbolsOnly/LICENSE) licence. Original source: https://www.nerdfonts.com/font-downloads

Artwork
-------
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.15.6
Date: 02. 11. 2023
Scripting:
- Added new fonts: "SymbolsNerdFont16", "SymbolsNerdFontMono16", "SymbolsNerdFont32", "SymbolsNerdFontMono32" from https://www.nerdfonts.com/font-downloads
---------------------------------------------------------------------------------------------------
Version: 0.15.5
Date: 01. 11. 2023
Scripting:
Expand Down
1 change: 1 addition & 0 deletions data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ warn "@on"

require("prototypes/sprites")
require("prototypes/styles")
require("prototypes/fonts")


lazyAPI.attach_custom_input_event("move-down")
Expand Down
21 changes: 21 additions & 0 deletions fonts/NerdFontsSymbolsOnly/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 Ryan L McIntyre

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions fonts/NerdFontsSymbolsOnly/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

# Nerd Fonts

This is an archived font from a Nerd Fonts release.

For more information see:
* https://github.com/ryanoasis/nerd-fonts/
* https://github.com/ryanoasis/nerd-fonts/releases/latest/
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zk-lib",
"version": "0.15.5",
"version": "0.15.6",
"factorio_version": "1.1",
"title": "ZwerOxotnik's extendable mod with 8 addons",
"author": "ZwerOxotnik",
Expand Down
11 changes: 11 additions & 0 deletions locale/en/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"language-name": "English",
"font": {
"SymbolsNerdFont": [
"__zk-lib__/fonts/NerdFontsSymbolsOnly/SymbolsNerdFont-Regular.ttf"
],
"SymbolsNerdFontMono": [
"__zk-lib__/fonts/NerdFontsSymbolsOnly/SymbolsNerdFontMono-Regular.ttf"
]
}
}
23 changes: 23 additions & 0 deletions prototypes/fonts.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
data:extend{
{
type = "font",
name = "SymbolsNerdFont16",
from = "SymbolsNerdFont",
size = 16,
}, {
type = "font",
name = "SymbolsNerdFontMono16",
from = "SymbolsNerdFontMono",
size = 16,
}, {
type = "font",
name = "SymbolsNerdFont32",
from = "SymbolsNerdFont",
size = 32,
}, {
type = "font",
name = "SymbolsNerdFontMono32",
from = "SymbolsNerdFontMono",
size = 32,
}
}

0 comments on commit 275ccf4

Please sign in to comment.