diff --git a/CHANGELOG b/CHANGELOG index e1b99215..0aa613b1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,38 @@ # Superblocks Lab - Change log +## [1.1.0] + ++ Addition: Show the actual underlying filesystem in the left menu #166 ++ Addition: Ability to hide the left side menu #114 ++ Addition: Ability to inspect compiled contract data #122 ++ Addition: Ability to inspect the contract ABI #123 ++ Addition: Change cursor state when hovering buttons in Interact #208 ++ Addition: New Preferences dialog (settings) ++ Addition: Enable custom Network parameters (new dialog) ++ Addition: New voting example template ++ Addition: New ERC20 example template ++ Addition: New SafeMath example template +* Improvement: Change project download format from JSON to ZIP #169 +* Improvement: Change from Preact to React +* Fix: Buffer deprecation warning during package install #23 +* Fix: Unmet dependencies warning during yarn install #24 +* Fix: Clicking the window tab opens up a new browser tab #60 +* Fix: Unable to click on highlighted area in Help/General #137 +* Fix: Unable to see left menu actions when contract name is too long #164 +* Miscellaneous other minor improvements and bug fixes + + ## [1.0.4] * Fix: Changed Discord's link from a temporary one to a permanent one + ## [1.0.3] * Improvement: Changed telegram for discord (community) #193 * Improvement: Update welcome screen #195 + ## [1.0.2] * Fix: list changes in CHANGELOG file #178 diff --git a/src/manifest.json b/src/manifest.json index 32bfe9b4..f7a76853 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -5,5 +5,5 @@ "display": "standalone", "orientation": "portrait", "icons": [ ], - "version": "1.0.4" + "version": "1.1.0" } diff --git a/src/reducers/app.js b/src/reducers/app.js index 46f630b6..a19d1bf6 100644 --- a/src/reducers/app.js +++ b/src/reducers/app.js @@ -1,5 +1,5 @@ export const initialState = { - version: '1.0.4', + version: '1.1.0', }; export default function appReducer(state = initialState, action) {