mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 12:12:54 +01:00
chore(importer-web): bump version to 1.1.0
This commit is contained in:
@@ -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,
|
||||
|
||||
2
apps/importer/changelog.txt
Normal file
2
apps/importer/changelog.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
1. 🥳 Support for Standard Notes is here! 🥳
|
||||
2. Fixed issue with Evernote provider where images got cut off.
|
||||
@@ -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",
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user