Skip to content

Latest commit

 

History

History
86 lines (60 loc) · 3.33 KB

CHANGELOG.md

File metadata and controls

86 lines (60 loc) · 3.33 KB

Changelog

1.2.0 (2023-08-11)

Improvements

  • Add keyword "virtual" to onBounce method
  • Added external signature verification

1.1.4 (2022-08-17)

Improvements

  • A new version of the compiler is installed ton-solidity >= 0.58.1 (old: ton-solidity = 0.58.1)

Bugfixes

  • access/OwnableExternal.sol The owner method explicitly states bounce: false

1.1.3 (2022-05-27)

Improvements

  • [TIP4_2] getJson is now virual

1.1.2 (2022-05-16)

Improvements

  • [TIP4_1] Override onBounce for safer operation of the changeManager method to Nft
  • [TIP4_3] The index deployment constants have been changed (_indexDeployValue 0.4 ever => 0.15 ever, _deployIndexBasisValue 0.4 ever => 0.15 ever)

Bugfixes

  • [TIP4_3] Add transfer to TIP6 ITIP4_1NFT selector

Deprecated:

  • Remove buildIndexCode and buildIndexState from Collection

1.1.1 (2022-04-28)

Bugfixes

  • [TIP4_3] Redeploy Indexes for transfer func.

1.1.0 (2022-04-28)

Improvements

  • [TIP4_1] Add: function transfer(address to, address sendGasTo, mapping(address => CallbackParams) callbacks) external to Nft

1.0.1 (2022-04-21)

Bugfixes

  • [TIP4_3] Recompile indexes

1.0.0 (2022-04-15)

TIP4_4 standard has been temporarily removed.

Improvements

  • Remove OwnableExternal, add _isOwner()

0.9.0 (2022-04-14)

Improvements

Deprecations

0.8.1 (2022-04-13)

Improvements

Bugfixes

  • Fix OwnableExternal (b03dcb6d5f36e8cac1fe08882e867e24d9bc3b91):
    modifier onlyOwner() virtual {
    -   require(owner() == msg.pubkey(), 100);
    +   require(owner() == msg.sender, 100);
        require(msg.value != 0, 101);
    -   tvm.accept();
        _;
    }