diff --git a/src/app/appState.js b/src/app/appState.js index e34c4de..5b01d98 100644 --- a/src/app/appState.js +++ b/src/app/appState.js @@ -6,7 +6,7 @@ export default class AppState { this.uiTheme = persistData.uiTheme || 'dark'; this.debugMode = false; - this.version = 2; + this.version = 3; this.persistedVersion = persistData.version || 0.1; this.wasOldVersion = persistData.version && this.version > this.persistedVersion; } diff --git a/src/app/components/results/WhatsnewResultView.jsx b/src/app/components/results/WhatsnewResultView.jsx index 9c1e360..ae4916f 100644 --- a/src/app/components/results/WhatsnewResultView.jsx +++ b/src/app/components/results/WhatsnewResultView.jsx @@ -4,13 +4,18 @@ import CommandLink from '../misc/CommandLink' export default class WhatsnewResultView extends React.Component { render() { return
-

BitwiseCmd Changelog

-
-

May 20th, 2017 New theme added.

+

Changelog

+
+

May 27th, 2017
+ Added support of binary number notation (e.g. ).

-

May 16th, 2017 Complete rewrite using React. Old implementation is available at http://bitwisecmd.com/old.

-

Please let me know if you have problems with this release by creating issue in Github Repo.

+

May 20th, 2017
+ New theme added.

+
+
+

May 16th, 2017
+ Complete rewrite using React. Old implementation is available at http://bitwisecmd.com/old. Please let me know if you have problems with this release by creating issue in Github Repo.

; } diff --git a/src/app/index.jsx b/src/app/index.jsx index 2d50a84..c904bba 100644 --- a/src/app/index.jsx +++ b/src/app/index.jsx @@ -51,7 +51,5 @@ function executeStartupCommands() { startupCommands = hashArgs.commands; } - log.info('starup commands', startupCommands); - startupCommands.forEach(cmd.execute.bind(cmd)); } \ No newline at end of file diff --git a/src/css/styles.css b/src/css/styles.css index a55756f..99d3a69 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -112,6 +112,7 @@ code { font-size: 1.2em; font-weight: bold; } .midnight .hashLink:hover { color: #9FBAC7 } .midnight ul.top-links li:hover { background: #132537 } .midnight .error { color:#da586d} +.midnight .changelog .item-new .date { font-weight: bold } /* Top Links Shrink */ @media (max-width: 800px) {