chore(importer-web): bump version to 1.1.0

This commit is contained in:
thecodrr
2022-01-21 23:37:42 +05:00
parent 7286c60961
commit e2bd1cd1f1
4 changed files with 26 additions and 2 deletions

View File

@@ -1,9 +1,15 @@
const { version } = require("./package.json");
const fs = require("fs");
const path = require("path");
const APP_VERSION = version;
const CHANGELOG = fs.readFileSync(path.join(__dirname, "changelog.txt"), {
encoding: "utf8",
});
module.exports = {
all: {
REACT_APP_VERSION: APP_VERSION,
REACT_APP_CHANGELOG: CHANGELOG,
},
release: {
GENERATE_SOURCEMAP: false,

View File

@@ -0,0 +1,2 @@
1. 🥳 Support for Standard Notes is here! 🥳
2. Fixed issue with Evernote provider where images got cut off.

View File

@@ -1,6 +1,6 @@
{
"name": "@notesnook/importer-web",
"version": "1.0.1",
"version": "1.1.0",
"private": true,
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",

View File

@@ -6,7 +6,8 @@ export function Hero() {
<Flex
sx={{
flexDirection: "column",
my: 150,
mt: 150,
mb: 100,
justifyContent: "center",
alignItems: "center",
}}
@@ -42,6 +43,21 @@ export function Hero() {
Notesnook Web
</Link>
</Flex>
<Flex
sx={{
bg: "bgSecondary",
flexDirection: "column",
width: 400,
mt: 4,
p: 2,
borderRadius: "default",
}}
>
<Text variant="subtitle">What's new in v{appVersion}</Text>
<Text variant="body" sx={{ whiteSpace: "pre-wrap" }}>
{process.env.REACT_APP_CHANGELOG}
</Text>
</Flex>
</Flex>
);
}