Renames viewer to sixtyfps-viewer and publishes it on crates.io (#237)

* Renames viewer to sixtyfps-viewer and publishes it on crates.io

* Maintain the directory name consistency
This commit is contained in:
Rishabh Budhiraja 2021-05-22 12:04:50 +05:30 committed by GitHub
parent cc9d5e09f0
commit 74727d953f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 2 deletions

View file

@ -2,6 +2,7 @@
All notable changes to this project will be documented in this file.
## [Unreleased]
- Renames viewer to sixtyfps-viewer and publishes it on crates.io
### Changed

View file

@ -124,7 +124,7 @@ Rendering backends and styles are configurable at compile time. Current there ar
We have a few tools to help with the development of .60 files:
- A [**LSP Server**](./tools/lsp) that adds things like auto-complete and live preview of the .60 files to many editors
- It is bundled in a [**Visual Studio Code Extension**](./vscode_extension) accessible from the market place
- A [**viewer**](./tools/viewer) tool which display the .60 files. With the `--auto-reload` argument, makes it easy to preview
- A [**sixtyfps-viewer**](./tools/viewer) tool which display the .60 files. With the `--auto-reload` argument, makes it easy to preview
your UI as you are working it (when using the LSP preview is not possible)
- An [**online editor**](https://sixtyfps.io/editor) to try out .60 syntax without installing anything ([sources](./tools/online_editor))
- An [**updater**](./tools/syntax_updater) to convert the .60 files from previous version to the newer version

View file

@ -21,4 +21,5 @@ sleep 30
cargo publish --manifest-path sixtyfps_runtime/interpreter/Cargo.toml
cargo publish --manifest-path api/sixtyfps-rs/Cargo.toml
cargo publish --manifest-path tools/lsp/Cargo.toml
cargo publish --manifest-path tools/viewer/Cargo.toml

View file

@ -21,5 +21,5 @@ notify = "4.0.15"
[[bin]]
name = "viewer"
name = "sixtyfps-viewer"
path = "main.rs"