diff --git a/CHANGELOG b/CHANGELOG
index 67efd4f0..501e7d94 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/src/components/projecteditor/ProjectEditor.js b/src/components/projecteditor/ProjectEditor.js
index 5f63549e..b7e3ffe2 100644
--- a/src/components/projecteditor/ProjectEditor.js
+++ b/src/components/projecteditor/ProjectEditor.js
@@ -130,7 +130,7 @@ export default class ProjectEditor extends Component {
-
Check out our new Superblocks platform for building and releasing smart contracts. Read more about it!
+
PLEASE NOTE: Due to breaking changes in Metamask, Superblocks Lab will become deprecated on December the 16th . Please use the official Ethereum Studio instead.
diff --git a/src/components/projecteditor/style.less b/src/components/projecteditor/style.less
index 55063aa2..05ddca3b 100644
--- a/src/components/projecteditor/style.less
+++ b/src/components/projecteditor/style.less
@@ -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;
diff --git a/src/manifest.json b/src/manifest.json
index 8ac15da6..f30d4f53 100644
--- a/src/manifest.json
+++ b/src/manifest.json
@@ -5,5 +5,5 @@
"display": "standalone",
"orientation": "portrait",
"icons": [ ],
- "version": "1.9.0"
+ "version": "1.9.1"
}
diff --git a/src/reducers/app.reducer.ts b/src/reducers/app.reducer.ts
index f362e6d8..b4002306 100644
--- a/src/reducers/app.reducer.ts
+++ b/src/reducers/app.reducer.ts
@@ -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()
};