Skip to content

Releases: kravetsone/enkaNetwork

[email protected]

22 Jul 15:48
Compare
Choose a tag to compare

Release 2.0.0

  • Fully rewriten.
  • Add auto-updating of assets.
  • Add documentation.

And more you can see in the documentation

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@2.0.0

[email protected]

10 Feb 21:00
Compare
Choose a tag to compare

Release 1.3.0

  • Added new 3.4 version data
  • Bought a laptop (due to computer death)
  • Followed the api update
  • Added error handler
  • Added fetchPlayerInfo and fetchProfileAccount(-s) methods

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.3.0

[email protected]

07 Dec 12:56
Compare
Choose a tag to compare

Release 1.2.2

  • Added new 3.3 version data
  • Fixed missing some data from travelers
  • And etc...

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.2.2

[email protected]

10 Nov 15:00
Compare
Choose a tag to compare

Release 1.1.6

  • Added a key userAgent that can change or remove User-Agent header.

Example usage to remove: (this fixes the issue #4, thank you for finding it, @eris-vn)

const enka = new EnkaNetwork({ language: "RU", userAgent: false });

Example usage to set your own value:

const enka = new EnkaNetwork({ language: "RU", userAgent: "ERIS-VN Project" });

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.1.6

[email protected]

08 Nov 15:07
Compare
Choose a tag to compare

Release 1.1.5

  • FIxed Issue #3 when you request data for empty accounts, it could contain an error. At the moment, this is taken into account and will not cause errors. Thank you again @kadistudio
    image

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.1.5

[email protected]

06 Nov 13:45
Compare
Choose a tag to compare

Release 1.1.3

  • Added new 3.2 game data. Sorry it's so late
  • FIxed Issue #2 when the user received the same picture banner and navbar for namecard. Thank you @kadistudio

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.1.3

[email protected]

08 Oct 20:47
Compare
Choose a tag to compare

Release 1.1.1

  • Added support caching in fetchUser method around response ttl
  • Added key caching in EnkaNetwork class
import { EnkaNetwork } from "enkanetwork"; //const { EnkaNetwork } = require("enkanetwork");
const enka = new EnkaNetwork({ language: "EN", caching: false }); //responses will not be cached
  • Moved fetch profile in fetchUser to a separate method fetchProfile
const user = await enka.fetchProfile("kaito", "RU");
  • Swapped import and require in ReadMe
import { EnkaNetwork } from "enkanetwork"; //const { EnkaNetwork } = require("enkanetwork");
  • and refactored code...

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.1.1

[email protected]

05 Oct 19:19
Compare
Choose a tag to compare

Release 1.1.0

  • Fixed classes starting with a lowercase letter
const { EnkaNetwork } = require("enkanetwork"); //import { EnkaNetwork } from "enkanetwork";
const enka = new EnkaNetwork({ language: "EN" });
  • Refactored code
  • Added key language in fetchUser method
const user = await enka.fetchUser(700832641, "RU");
  • Added support for enka profile
const user = await enka.fetchUser("kaito", "RU");
const accounts = await enka.fetchAccounts("kaito", "RU");

Full Changelog: https://github.com/kravetsone/enkaNetwork/compare/[email protected]@1.1.0

[email protected]

28 Sep 19:54
Compare
Choose a tag to compare

1.0.0

17 Sep 15:59
Compare
Choose a tag to compare

First release of the this module

  • add README and all package code

Full Changelog: https://github.com/kravetsone/enkaNetwork/commits/[email protected]