Release v1.0.0
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
# Typst Desktop
|
# Typst Desktop
|
||||||
|
|
||||||
|
[](https://github.com/sirblobby/typst-desktop)
|
||||||
[](https://typst.app/)
|
[](https://typst.app/)
|
||||||
[](https://www.rust-lang.org/)
|
[](https://www.rust-lang.org/)
|
||||||
[](https://tauri.app/)
|
[](https://tauri.app/)
|
||||||
@@ -106,16 +107,3 @@ To build a release bundle:
|
|||||||
```bash
|
```bash
|
||||||
bun run tauri build
|
bun run tauri build
|
||||||
```
|
```
|
||||||
|
|
||||||
### Layout
|
|
||||||
|
|
||||||
| Path | Contents |
|
|
||||||
|---|---|
|
|
||||||
| `src/` | SvelteKit frontend. |
|
|
||||||
| `src/lib/components/` | Views, editor, modals. |
|
|
||||||
| `src/lib/ts/` | Tauri command bindings and app state. |
|
|
||||||
| `src-tauri/src/` | Rust backend. |
|
|
||||||
| `src-tauri/src/workspace.rs` | Workspace browsing and file access. |
|
|
||||||
| `src-tauri/src/compiler.rs` | Typst compilation and export. |
|
|
||||||
| `src-tauri/src/sync.rs` | TypstDrive sync and merging. |
|
|
||||||
| `src-tauri/src/db.rs` | Local SQLite storage. |
|
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "typst-desktop",
|
"name": "typst-desktop",
|
||||||
"version": "0.1.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Generated
+1
-1
@@ -5677,7 +5677,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typst-desktop"
|
name = "typst-desktop"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "typst-desktop"
|
name = "typst-desktop"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
authors = ["you"]
|
authors = ["you"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "typst-desktop",
|
"productName": "typst-desktop",
|
||||||
"version": "0.1.0",
|
"version": "1.0.0",
|
||||||
"identifier": "co.sirblob.typst-desktop",
|
"identifier": "co.sirblob.typst-desktop",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "bun run dev",
|
"beforeDevCommand": "bun run dev",
|
||||||
|
|||||||
@@ -31,8 +31,6 @@
|
|||||||
.then((families) => (fonts = families))
|
.then((families) => (fonts = families))
|
||||||
.catch(() => (fonts = []));
|
.catch(() => (fonts = []));
|
||||||
});
|
});
|
||||||
|
|
||||||
const stats = $derived(app.compiled?.stats ?? null);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#snippet action(
|
{#snippet action(
|
||||||
@@ -130,12 +128,4 @@
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div class="flex-1"></div>
|
<div class="flex-1"></div>
|
||||||
|
|
||||||
{#if stats}
|
|
||||||
<span
|
|
||||||
class="shrink-0 whitespace-nowrap pr-1 text-[10px] text-[var(--color-ink-muted)]"
|
|
||||||
>
|
|
||||||
{stats.pages} pages · {stats.words} words · {stats.characters} chars
|
|
||||||
</span>
|
|
||||||
{/if}
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user