Skip to content

Commit

Permalink
[Release] v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptkdev committed May 7, 2020
1 parent d95ddad commit 422beed
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 35 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# v1.2.0 (May 06, 2020)
* Fix: security patch
* Translations: 🇪🇸 🇵🇹 (Thanks: Bruno Kummel)
# v1.3.0 (May 07, 2020)
* Translations: 🇷🇺 🇩🇪 (Thanks: Alina Osv)

[![](https://img.shields.io/badge/donate-paypal-005EA6.svg?logo=paypal)](https://www.paypal.me/ptkdev) [![](https://img.shields.io/badge/donate-patreon-F87668.svg?logo=patreon)](https://www.patreon.com/ptkdev) [![](https://img.shields.io/badge/donate-sponsors-ea4aaa.svg?logo=github)](https://github.com/sponsors/ptkdev/) [![](https://img.shields.io/badge/donate-ko--fi-29abe0.svg?logo=ko-fi)](https://ko-fi.com/ptkdev)


# v1.2.0 (May 06, 2020)
* Fix: security patch
* Translations: 🇪🇸 🇵🇹 (Thanks: Bruno Kummel)

# v1.1.2 (March 28, 2020)
* Fix: security patch

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# 🦒 Beautiful Logger for Node.js

[![](https://img.shields.io/badge/version-v1.2.0-lightgrey.svg)](https://github.com/ptkdev/ptkdev-logger/releases) [![](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/ptkdev/ptkdev-logger/blob/master/LICENSE.md) [![](https://img.shields.io/badge/ES-9-F7DF1E.svg)](https://wikipedia.org/wiki/ECMAScript) [![](https://snyk.io/test/github/ptkdev/ptkdev-logger/badge.svg)](https://snyk.io/test/github/ptkdev/ptkdev-logger) [![](https://discordapp.com/api/guilds/383373985666301975/embed.png)](http://discord.ptkdev.io)
[![](https://img.shields.io/badge/version-v1.3.0-lightgrey.svg)](https://github.com/ptkdev/ptkdev-logger/releases) [![](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/ptkdev/ptkdev-logger/blob/master/LICENSE.md) [![](https://img.shields.io/badge/ES-9-F7DF1E.svg)](https://wikipedia.org/wiki/ECMAScript) [![](https://snyk.io/test/github/ptkdev/ptkdev-logger/badge.svg)](https://snyk.io/test/github/ptkdev/ptkdev-logger) [![](https://discordapp.com/api/guilds/383373985666301975/embed.png)](http://discord.ptkdev.io)

> The best alternative to the console.log statement
Expand Down Expand Up @@ -31,7 +31,7 @@
* [✔️] The best alternative to the console.log statement
* [✔️] Write stdout logs to file (supported format: text/log and json)
* [✔️] The JSON logs format is compatible with [pinojs](https://github.com/pinojs/pino)
* [✔️] Translations: 🇬🇧 🇮🇹 🇵🇱 🇪🇸 🇵🇹 (Help me ❤️)
* [✔️] Translations: 🇬🇧 🇮🇹 🇵🇱 🇪🇸 🇵🇹 🇷🇺 🇩🇪 (Help me ❤️)

## 👔 Screenshot
[![Beautiful Logger for Node.js](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/screenshot/ptkdev-logger-screen1.png)](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/screenshot/ptkdev-logger-screen1.png)
Expand Down Expand Up @@ -75,7 +75,7 @@ See folder `examples`, run with `node example.js`. Below is available a descript

| Parameter | Description | Values | Default value |
| --- | --- | --- | --- |
| language | Set language of log type | en / it / pl / es / pt | en |
| language | Set language of log type | en / it / pl / es / pt / de / ru | en |
| colors | Enable colors in terminal | true / enabled / false / disabled | true |
| debug | Enable all logs with method debug | true / enabled / false / disabled | true |
| info | Enable all logs with method info | true / enabled / false / disabled | true |
Expand Down
68 changes: 47 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ptkdev/logger",
"description": "Beautiful Logger for Node.js: the best alternative to the console.log statement",
"version": "1.2.0",
"version": "1.3.0",
"main": "modules/logger.js",
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions translations/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
*
*/
module.exports = {
INFO: " | INFORMATION ",
WARNING: " | WARNUNG ",
ERROR: " | FEHLER ",
INFO: " | INFORMATION ",
WARNING: " | WARNUNG ",
ERROR: " | FEHLER ",
DEBUG: " | DEBUG ",
DOCS: " | DOKUMENTATION ",
DOCS: " | DOKUMENTATION ",
STACKOVERFLOW: " | STACKOVERFLOW ",
SPONSOR: " | SPONSOR "
};
6 changes: 3 additions & 3 deletions translations/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
*/
module.exports = {
INFO: " | ИНФОРМАЦИЯ ",
WARNING: " | ПРЕДУПРЕЖДЕНИЕ ",
ERROR: " | ОШИБКА ",
DEBUG: " | ОТЛАДКА ",
WARNING: " | ПРЕДУПРЕЖДЕНИЕ ",
ERROR: " | ОШИБКА ",
DEBUG: " | ОТЛАДКА ",
DOCS: " | ДОКУМЕНТАЦИЯ ",
STACKOVERFLOW: " | STACKOVERFLOW ",
SPONSOR: " | СПОНСОР "
Expand Down

0 comments on commit 422beed

Please sign in to comment.