Change Log

Further change log can be seen in GitHub releases:

https://github.com/damian-pastorini/reldens/releases

4.0.0-beta.16.5

  • [Bug] - Players position at top.
  • [Bug] - Fix update SQL script to disable / enable FOREING KEYS.
  • [Bug] - Bullet hit moving the player.
  • [Bug] - Pathfinder on narrow paths.
  • [Feature] - Make player set the direction to the target when cast a skill.

4.0.0-beta.16

  • Implemented dynamic stats, all coming from storage and configurable to display the current value or value/max.
  • Removed all the HP hardcoded references.
  • Included W-A-S-D controllers.
  • Refactored buttons hover effects to use classes.
  • Implemented dynamic skills and new 4 types (attacks, effects, physical attacks, physical effects).
  • Implemented levels based on experience.
  • Implemented class paths based on levels, all coming from @reldens/skills pack.
  • Replaced hardcoded animations by dynamic actions related animations (for example, instead of a single hit animation for everything now you can have a fireball hit, attackShort hit, etc.). This apply to ATTACK, HIT, BULLET.
  • Included dynamic CAST animations.
  • Refactored players life bar and removed from player engine.
  • Created users client pack and refactored code to use events.
  • Implemented events using remove and master keys to handle events easily per user, object or room.
  • Refactored Models and started to extract Objection in a single wrapper.
  • Styles fixes.
  • Included new examples in the default package for items and skills.
  • New chat balloon alert and new example notifications.
  • Upgraded @reldens/utils pack with shortcuts and events improvements.
  • Fixed issues on @reldens/items-system package.
  • Upgraded @reldens/skills with complete storage and basic events.
  • Fixed player sprite position issues.
  • Fixed respawn issues.
  • 3rd party packages updates.
  • Yeah... a lot... and probably some other refactoring I'm missing (for next beta I will write down the logs while I do the changes).

4.0.0-beta.15

  • Implemented Forgot Password feature for default storage registration / login / users.
  • Implemented Firebase as additional login option.
  • Fixed inventory modifiers, made them load from the storage.
  • Upgrade Phaser and other packages to the last available version.

4.0.0-beta.14

  • Improved rooms loading.
  • Fixed storage issues.
  • Improved game UI for small resolutions.
  • Fixed packages.

4.0.0-beta.13

  • Fixed database connections limit.
  • Fixed database upgrade script.
  • Minor updates and fixes.

4.0.0-beta.12

  • Removed package-lock and updated all dependencies except for Colyseus (we are on v0.12 and last one is 0.13), we will wait in favor of a new version 0.14 seems to be coming soon, or v1.
  • Fixed client screen size and behavior. Now the screen will adapt for full-size using a "base map size" to avoid excessive zoom on small maps, and a maximum map size to avoid showing more map than what we like.
  • Implemented @reldens/items-system for inventory and equipment. Using different "items types" and "modifiers" the system flexibility is huge.
  • Implemented a basic but a bit more complex than what we had battle damage calculation so when you have an item equipped you will do or get less damage.
  • Though we still have Parcel as dependency, the bundle is fully optional now. I actually recommend to run the bundle locally and deploy client static files ready to be served. This also made me found an issue with the regenerator-runtime which is now fixed and the client can be easily imported without need the dist/manage file which was removed.
  • A new GameDom class was created to easily handle the client updates. Right now is using jQuery by default but I'm planning to replace both Phaser DOM and jQuery UI by something like React.
  • The NPC's UI was also improved to handle dynamic options.
  • The preloader scene now is saving the reference for all the UI instances created.
  • The .env implementation was fixed, it wasn't working properly an some values were always empty.
  • Since I've been working in both OS (Linux and Windows), I've found a lot of issues with hardcoded paths and Windows which are now fixed (but I didn't looked for absolute every path in the project, so probably could find some more).
  • I've included some additional methods to help on the dist reset and themes installation process but I will publish the run-scripts on the skeleton repository.
  • There's an issue with the double login with Colyseus, but we are still doing the validation, so instead of
    login A > login B > logout A > B will be still connected
    now we have:
    login A > login B > both logout
    We hope this issue in Colyseus get's fixed soon.
  • The example client has a new option to go full screen which improves even more the mobile experience.