Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 11, 2024
1 parent f4cf371 commit c69adf4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions packages/project-editor/lvgl/build-image-info-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,29 @@ const BuildImageInfoDialog = observer(
}

get pngquantInfo() {
if (this.isWindows) {
return (
<li>
<p>
Install <b>pngquant</b> tool:
</p>
<p>
Download from{" "}
<a
href="#"
onClick={event => {
event.preventDefault();
openLink("https://pngquant.org");
}}
>
https://pngquant.org
</a>
, put it in your PATH and restart Studio.
</p>
</li>
);
}

if (this.isLinux) {
return (
<li>
Expand Down
Binary file removed resources/lv_img_conv_9/pngquant.exe
Binary file not shown.

0 comments on commit c69adf4

Please sign in to comment.