Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Sep 13, 2020
1 parent f80cdf6 commit f18cdc0
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 48 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ public/bundle.*
dist/
public/service-worker.js
src/licenses.json
src/changelog.json
public/precache-manifest.*
public/workbox-*
public/fonts/*
Expand Down
32 changes: 0 additions & 32 deletions build/scripts/changelog.js

This file was deleted.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "omniawrite",
"version": "1.1.2",
"version": "1.1.3",
"main": "./src/electron.js",
"author": {
"name": "OmniaWrite",
Expand Down Expand Up @@ -65,7 +65,6 @@
"electron": "run-s build pure-electron",
"svelte-build": "cross-env NODE_ENV=production webpack",
"prepare:license": "license-checker --exclude \"MIT\" --json --customPath ./src/licenses.json > ./src/licenses.json",
"prepare:changelog": "node ./build/scripts/changelog.js",
"pure-electron": "electron .",
"cap:sync": "cap sync",
"lint": "eslint src/",
Expand Down
1 change: 1 addition & 0 deletions src/changelog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "changes": false }
41 changes: 28 additions & 13 deletions src/shared/NewUpdate.svelte
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
<script>
import { _ } from "svelte-i18n";
import Modal from "./Modal.svelte";
import Spinner from "./Spinner.svelte";
export let show = true;
const changelog = import(
/* webpackChunkName: "changelog" */ "../changelog.json"
);
</script>

<Modal bind:show>
<h2 slot="header">{$_('common.update.title')}</h2>
{#await changelog}
<Spinner />
{:then data}
{#if data.changes}
<h3>{data.name}</h3>
{@html data.body}
{:else}{$_('common.update.noChangelog')}{/if}
{/await}
<p>
After a lot of work from contributions from the community we are happy to
release a major update to OmniaWrite.
</p>

<h3>📖 Revised Export</h3>
<p>
Export has been completely revised. You now can select from different
templates for eBooks that will be extended with more templates.
</p>

<h3>✍ New Editor</h3>
<p>
The editor received was completely re-built with speed and performance in
mind.
</p>
<p>
Additionally the cards shown in the editor were moved to its own window
found at the top toolbar.
</p>

<h3>📱 Matured mobile</h3>
<p>
The mobile version will have the same functionality as the desktop one from
now.
</p>

<i>And much more...</i>
</Modal>

1 comment on commit f18cdc0

@vercel
Copy link

@vercel vercel bot commented on f18cdc0 Sep 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.