Skip to content

Commit 82b6feb

Browse files
hotfix(various): readme & roadmap
1 parent b29a490 commit 82b6feb

File tree

2 files changed

+44
-20
lines changed

2 files changed

+44
-20
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern
44

55
[![Deploys By Netlify](https://www.netlify.com/img/global/badges/netlify-light.svg)](https://www.netlify.com)
66

7+
You can check the state of a PR by looking at the Deploy preview that Netlify builds and is mentioned in its bot's comment.
8+
79
### Installation
810

911
```
12+
$ cd website
1013
$ yarn
1114
```
1215

@@ -33,3 +36,8 @@ $ GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
3336
```
3437

3538
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
39+
40+
## License
41+
MIT License
42+
43+
Copyright (c) 2020 Tauri Team

website/src/pages/index.js

Lines changed: 36 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -200,47 +200,70 @@ const Roadmap = () => {
200200
targetQuarter: 'Q2 2020',
201201
},
202202
{
203-
title: <Translate>Multi Window</Translate>,
203+
title: <Translate>Self Updater</Translate>,
204+
description: <Translate>Update Tauri Apps from within Tauri.</Translate>,
205+
icon: '',
206+
color: COLORS.blue,
207+
targetQuarter: 'Q3 2020',
208+
},
209+
{
210+
title: <Translate>WASM Bundler</Translate>,
204211
description: (
205-
<Translate>Run multiple window instances in Tauri.</Translate>
212+
<Translate>Manufacture WASM bundler for use in websites.</Translate>
206213
),
207214
icon: '',
208215
color: COLORS.blue,
209216
targetQuarter: 'Q3 2020',
210217
},
211218
{
212-
title: <Translate>Self Updater</Translate>,
213-
description: <Translate>Update Tauri Apps from within Tauri.</Translate>,
219+
title: <Translate>App Tray</Translate>,
220+
description: <Translate>Desktop Cross-platform Icon Tray.</Translate>,
214221
icon: '',
215222
color: COLORS.blue,
216223
targetQuarter: 'Q3 2020',
217224
},
218225
{
219-
title: <Translate>WASM Bundler</Translate>,
226+
title: <Translate>Webview Bindings</Translate>,
227+
description: <Translate>Use official Webview bindings.</Translate>,
228+
icon: '',
229+
color: COLORS.blue,
230+
targetQuarter: 'Q3 2020',
231+
},
232+
{
233+
title: <Translate>Multi Window</Translate>,
220234
description: (
221-
<Translate>Manufacture WASM bundler for use in websites.</Translate>
235+
<Translate>Run multiple window instances in Tauri.</Translate>
222236
),
223237
icon: '',
224238
color: COLORS.blue,
225239
targetQuarter: 'Q3 2020',
226240
},
227241
{
228-
title: <Translate>PureOS App Store</Translate>,
229-
description: <Translate>Verified builds for PureOS.</Translate>,
242+
title: <Translate>Transparent Window</Translate>,
243+
description: (
244+
<Translate>Have transparent windows.</Translate>
245+
),
230246
icon: '',
231247
color: COLORS.blue,
232248
targetQuarter: 'Q3 2020',
233249
},
234250
{
235-
title: <Translate>App Tray</Translate>,
236-
description: <Translate>Desktop Cross-platform Icon Tray.</Translate>,
251+
title: <Translate>DENO Cli</Translate>,
252+
description: <Translate>Enable alternative DENO CLI.</Translate>,
237253
icon: '',
238254
color: COLORS.blue,
239255
targetQuarter: 'Q3 2020',
240256
},
241257
{
242-
title: <Translate>Webview Bindings</Translate>,
243-
description: <Translate>Use official Webview bindings.</Translate>,
258+
title: <Translate>DENO Bindings</Translate>,
259+
description: <Translate>Use Deno to build your App's backend.</Translate>,
260+
icon: '',
261+
color: COLORS.blue,
262+
targetQuarter: 'Q3 2020',
263+
},
264+
{
265+
title: <Translate>PureOS App Store</Translate>,
266+
description: <Translate>Verified builds for PureOS.</Translate>,
244267
icon: '',
245268
color: COLORS.blue,
246269
targetQuarter: 'Q3 2020',
@@ -263,13 +286,6 @@ const Roadmap = () => {
263286
),
264287
icon: '',
265288
color: COLORS.blue,
266-
targetQuarter: 'Q3 2020',
267-
},
268-
{
269-
title: <Translate>DENO</Translate>,
270-
description: <Translate>Enable alternative DENO CLI.</Translate>,
271-
icon: '',
272-
color: COLORS.blue,
273289
targetQuarter: 'Q4 2020',
274290
},
275291
{
@@ -369,7 +385,7 @@ function Home() {
369385
return (
370386
<Layout
371387
title={`${siteConfig.tagline}`}
372-
description="Tauri is a toolchain for building highly secure native apps that have tiny binaries and are very fast. Whether coming from the front-end with Gatsby, Svelte, Vue, Angular or React - Tauri solves the hard problems of safe User Interfaces for all the desktop platforms."
388+
description="Tauri is a toolchain for building highly secure native apps that have tiny binaries and are very fast. Whether coming from the front-end with Gatsby, Yew, Svelte, Vue, Angular or React - Tauri solves the hard problems of safe User Interfaces for all the desktop platforms."
373389
>
374390
<header className={classnames('hero hero--dark', styles.heroBanner)}>
375391
<div className="container">

0 commit comments

Comments
 (0)