Skip to content

Commit

Permalink
Change banner to say Lab is becoming deprecated
Browse files Browse the repository at this point in the history
Bump version to 1.9.1
  • Loading branch information
bashlund committed Nov 27, 2019
1 parent b8963b0 commit 3213508
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Superblocks Lab - Change log

## [1.9.1]
* Change banner to say that Superblocks Lab will become deprecated on December the 16th, 2019.

## [1.9.0]

+ Breaking change: update Solidity compiler to version 0.5.10 #430
Expand Down
2 changes: 1 addition & 1 deletion src/components/projecteditor/ProjectEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default class ProjectEditor extends Component {
<div className={style.projecteditor}>
<OnlyIf test={showBanner}>
<div className={style.banner}>
<p>Check out our new <a href="https://superblocks.com" target="_blank" rel="noopener noreferrer" title='Superblocks home site'>Superblocks</a> platform for building and releasing smart contracts. <a href="https://superblocks.com/blog/introducing-the-superblocks-platform/" target="_blank" rel="noopener noreferrer" title='Superblocks home site'>Read more about it!</a></p>
<p>PLEASE NOTE: Due to breaking changes in Metamask, <strong>Superblocks Lab will become deprecated on December the 16th</strong>. Please use the official <a href="https://studio.ethereum.org" target="_blank" rel="noopener noreferrer" title='Ethereum studio'>Ethereum Studio</a> instead. </p>
<button
className={classNames([ style.icon, 'btnNoBg', ])}
onClick={this.onCloseBannerClick}>
Expand Down
4 changes: 2 additions & 2 deletions src/components/projecteditor/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
}

.banner {
background: url(/static/img/img-blue-bg-1.png);
background-color: #671c1c;
background-size: cover;
background-position: 100% 30%;
color: black;
color: white;
padding: 10px 15px 10px 35px;
display: flex;
align-content: center;
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"display": "standalone",
"orientation": "portrait",
"icons": [ ],
"version": "1.9.0"
"version": "1.9.1"
}
2 changes: 1 addition & 1 deletion src/reducers/app.reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { AnyAction } from 'redux';
import { appActions } from '../actions';

export const initialState = {
version: '1.9.0',
version: '1.9.1',
isEmbeddedMode: false,
showBanner: getShowBanner()
};
Expand Down

0 comments on commit 3213508

Please sign in to comment.