Tidy up errors

This commit is contained in:
Bryan Ashby 2023-02-04 13:54:16 -07:00
parent b20b6cc5ca
commit 21fb688bf6
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
2 changed files with 6 additions and 3 deletions

View File

@ -13,6 +13,7 @@ This document attempts to track **major** changes and additions in ENiGMA½. For
* New users now have randomly generated avatars assigned to them that can be served up via the new System General [Web Handler](/docs/_docs/servers/contentservers/web-handlers.md). * New users now have randomly generated avatars assigned to them that can be served up via the new System General [Web Handler](/docs/_docs/servers/contentservers/web-handlers.md).
* CombatNet has shut down, so the module (`combatnet.js`) has been removed. * CombatNet has shut down, so the module (`combatnet.js`) has been removed.
* New `NewUserPrePersist` system event available to developers to 'hook' account creation and add their own properties/etc. * New `NewUserPrePersist` system event available to developers to 'hook' account creation and add their own properties/etc.
* The signature for `viewValidationListener`'s callback has changed: It is now `(err, newFocusId)`. To ignore a validation error, implementors can simply call the callback with a `null` error, else they should forward it on.
## 0.0.13-beta ## 0.0.13-beta
* **Note for contributors**: ENiGMA has switched to [Prettier](https://prettier.io) for formatting/style. Please see [CONTRIBUTING](CONTRIBUTING.md) and the Prettier website for more information. * **Note for contributors**: ENiGMA has switched to [Prettier](https://prettier.io) for formatting/style. Please see [CONTRIBUTING](CONTRIBUTING.md) and the Prettier website for more information.

View File

@ -400,6 +400,7 @@
TL1: { width: 19, textOverflow: "..." } TL1: { width: 19, textOverflow: "..." }
ET2: { width: 19, textOverflow: "..." } ET2: { width: 19, textOverflow: "..." }
ET3: { width: 19, textOverflow: "..." } ET3: { width: 19, textOverflow: "..." }
ET4: { width: 21, textOverflow: "..." }
} }
} }
1: { 1: {
@ -491,15 +492,15 @@
width: 10 width: 10
} }
TL5: { TL5: {
width: 4 width: 4
} }
TL6: { TL6: {
width: 4 width: 4
} }
MT7: { MT7: {
focus: true focus: true
width: 69 width: 69
height: 3 height: 3
mode: preview mode: preview
} }
BT8: { BT8: {
@ -773,6 +774,7 @@
TL1: { width: 19, textOverflow: "..." } TL1: { width: 19, textOverflow: "..." }
ET2: { width: 19, textOverflow: "..." } ET2: { width: 19, textOverflow: "..." }
ET3: { width: 19, textOverflow: "..." } ET3: { width: 19, textOverflow: "..." }
ET4: { width: 21, textOverflow: "..." }
//TL4: { width: 25 } //TL4: { width: 25 }
} }
} }