Skip to content

Commit

Permalink
🔢(Cargo.toml): bump version to 0.3.1 and homepage
Browse files Browse the repository at this point in the history
Updated the project version from 0.2.1 to 0.3.1 and changed the homepage URL to reflect the new site.

Signed-off-by: Benign X <[email protected]>
  • Loading branch information
W-Mai committed Nov 19, 2024
1 parent fdac48a commit d38262b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "vegravis"
version = "0.2.1"
version = "0.3.1"
edition = "2021"
homepage = "https://github.com/W-Mai/vegravis"
homepage = "https://w-mai.github.io/vegravis"
repository = "https://github.com/W-Mai/vegravis"
readme = "README.md"
license-file = "LICENSE"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
</div>
</div>

<img src="snapshots/snapshot.png">
<img src="snapshots/snapshot.png" alt="Snapshot">
<img src="snapshots/snapshot_with_tr.png" alt="Snapshot With TransformResolver">

## Introduction

Expand Down Expand Up @@ -61,7 +62,10 @@ and you will get a cute Sakaban Turtle:
## Features

- [x] Visualize vector graphics
- [x] Responsive UI
- [x] Support cross-platform (**Windows**, **Linux**, **MacOS**, **Web**)
- [x] Support share code and options with URL
- [x] Support and the linkage of [Transform Resolver](https://w-mai.github.io/TransformResolver)
- [ ] Support multiple vector graphics formats
- [ ] Support vector graphics editing
- [ ] Support vector graphics animation
Expand Down
Binary file modified snapshots/snapshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added snapshots/snapshot_with_tr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ impl eframe::App for MainApp {
egui::Window::new("Options")
.open(&mut self.panel_status.contains(WINDOW_NAMES[0][1]))
.fixed_size([600.0, 200.0])
.fixed_pos(ctx.available_rect().left_top())
.movable(false)
.default_pos(ctx.available_rect().left_top())
.movable(true)
.show(ctx, |ui| {
self.ui_options_panel(ui);
});
Expand Down
2 changes: 1 addition & 1 deletion wix/main.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<!--<Icon Id='ProductICO' SourceFile='wix\Product.ico'/>-->
<!--<Property Id='ARPPRODUCTICON' Value='ProductICO' />-->

<Property Id='ARPHELPLINK' Value='https://github.com/W-Mai/vegravis'/>
<Property Id='ARPHELPLINK' Value='https://w-mai.github.io/vegravis'/>

<UI>
<UIRef Id='WixUI_FeatureTree'/>
Expand Down

0 comments on commit d38262b

Please sign in to comment.