From 2c023e89f8d22f5f3e5dd5c9d7ffaf9b8baef197 Mon Sep 17 00:00:00 2001 From: SirBlobby Date: Sat, 18 Jul 2026 15:07:09 -0400 Subject: [PATCH] Release v1.0.0 --- README.md | 14 +------------- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- src/lib/components/EditorToolbar.svelte | 10 ---------- 6 files changed, 5 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 04f3e07..d202134 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Typst Desktop +[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/sirblobby/typst-desktop) [![Typst Version](https://img.shields.io/badge/Typst-0.14.2-239dad?logo=typst&logoColor=white)](https://typst.app/) [![Rust](https://img.shields.io/badge/Rust-1.82+-orange?logo=rust&logoColor=white)](https://www.rust-lang.org/) [![Tauri](https://img.shields.io/badge/Tauri-2-24C8DB?logo=tauri&logoColor=white)](https://tauri.app/) @@ -106,16 +107,3 @@ To build a release bundle: ```bash 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. | diff --git a/package.json b/package.json index 8492b70..9d50320 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typst-desktop", - "version": "0.1.0", + "version": "1.0.0", "description": "", "type": "module", "scripts": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index da3396f..0d9d1b7 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -5677,7 +5677,7 @@ dependencies = [ [[package]] name = "typst-desktop" -version = "0.1.0" +version = "1.0.0" dependencies = [ "base64 0.22.1", "chrono", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 56c9c7e..6b7062b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typst-desktop" -version = "0.1.0" +version = "1.0.0" description = "A Tauri App" authors = ["you"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 639d76f..6014164 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "typst-desktop", - "version": "0.1.0", + "version": "1.0.0", "identifier": "co.sirblob.typst-desktop", "build": { "beforeDevCommand": "bun run dev", diff --git a/src/lib/components/EditorToolbar.svelte b/src/lib/components/EditorToolbar.svelte index 420c131..7bc6565 100644 --- a/src/lib/components/EditorToolbar.svelte +++ b/src/lib/components/EditorToolbar.svelte @@ -31,8 +31,6 @@ .then((families) => (fonts = families)) .catch(() => (fonts = [])); }); - - const stats = $derived(app.compiled?.stats ?? null); {#snippet action( @@ -130,12 +128,4 @@
- - {#if stats} - - {stats.pages} pages · {stats.words} words · {stats.characters} chars - - {/if}