Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
- Adding filters to file dialogs;
- Updating README.md
  • Loading branch information
guifes committed May 10, 2021
1 parent dff89bf commit b48bace
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ You can read more on pyxelate here: https://github.com/sedthh/pyxelate
## Setup
Before you attempt to run the program in this repo first you need to:
- Have Python installed (I was only able to make pyxelate work with Python 3.8)
- Install pyxelate's dependencies (Please mind the versions. More info at https://github.com/sedthh/pyxelate)
- sklearn 0.24.1
- skimage 0.18.1
- numba 0.53.1
- Install pyxelate and its dependencies (Please mind the versions. More info at https://github.com/sedthh/pyxelate)
- To build this project you need to have its dependecies installed with haxelib:
- haxeui-core: [git]
- haxeui-openfl: [git]
- openfl: [git]

Soon I'll make Windows and OSX binaries available.

## Screenshot

![screenshot](ss.png)
4 changes: 2 additions & 2 deletions Source/Root.hx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ class Root extends VBox
function openSaveFileDialog(event: MouseEvent)
{
var dialog = new FileDialog();
dialog.browse(FileDialogType.SAVE);
dialog.browse(FileDialogType.SAVE, "png", null, "Save input image");
dialog.onSelect.add(path -> _menuDelegate.onSave(path));
}

function openLoadFileDialog(event: MouseEvent)
{
var dialog = new FileDialog();
dialog.browse(FileDialogType.OPEN);
dialog.browse(FileDialogType.OPEN, "*.jpg;*.gif;*.png", null, "Load input image");
dialog.onSelect.add(path -> _menuDelegate.onLoad(path));
}

Expand Down
Binary file added ss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b48bace

Please sign in to comment.