Skip to content

Commit 2eba144

Browse files
committed
Update towards a full HTML editor
1 parent 135cb30 commit 2eba144

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3002
-2127
lines changed

@webwriter/app-desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webwriter/app-desktop",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "Windows/Mac/Linux version of WebWriter",
55
"private": true,
66
"author": "Frederic Salmen <frederic@fsalmen.de>",

@webwriter/app-desktop/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

@webwriter/app-desktop/src-tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webwriter"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Windows/Mac/Linux version of WebWriter"
55
authors = ["Frederic Salmen <frederic@fsalmen.de>"]
66
license = "UNLICENSED"
@@ -17,7 +17,7 @@ tauri-build = { version = "1.2.1", features = [] }
1717
[dependencies]
1818
serde_json = "1"
1919
serde = { version = "1", features = ["derive"] }
20-
tauri = { version = "1.3.0", features = ["devtools", "dialog-all", "fs-all", "http-all", "os-all", "path-all", "shell-execute", "shell-open", "shell-sidecar", "updater"] }
20+
tauri = { version = "1.3.0", features = ["devtools", "dialog-all", "fs-all", "http-all", "os-all", "path-all", "process-all", "shell-execute", "shell-open", "shell-sidecar", "updater", "window-all"] }
2121
tauri-plugin-fs-extra = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
2222
tauri-plugin-fs-watch = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
2323
font-loader = "0.11.0"

@webwriter/app-desktop/src-tauri/tauri.conf.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
{"name": "bin/yarn", "args": true, "sidecar": true},
4040
{"name": "bin/esbuild", "args": true, "sidecar": true}
4141
]
42+
},
43+
"window": {
44+
"all": true
45+
},
46+
"process": {
47+
"all": true
4248
}
4349
},
4450
"bundle": {

@webwriter/core/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html>
33
<head>
44
<meta charset="utf-8" />
55
<title>WebWriter</title>
6-
<meta name="description" content="Authoring tool for explorables (interactive multimedia)" />
76
<meta name="viewport" content="width=device-width, initial-scale=1" />
87
<meta http-equiv="X-UA-Compatible" content="IE=edge">
98
<link rel="apple-touch-icon" type="image/png" href="app-icon.png">

0 commit comments

Comments
 (0)