Skip to content

Commit 2b03e2d

Browse files
committed
version 0.4
1 parent 9fe1e16 commit 2b03e2d

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Check <http://sciter.com> website and its [documentation resources](http://scite
1616
_Right now, before PySciter will not be published on PYPI_
1717

1818
1. Download [Sciter SDK](http://sciter.com/download/) and extract it somewhere.
19-
2. Add target platform binaries to PATH: `bin` (for Windows), `bin.osx` or `bin.gtk`
20-
3. Install pysciter: `python3 setup.py install`
19+
2. Add target platform binaries to PATH (`bin`, `bin.osx` or `bin.gtk`) and install Sciter shared library to your LIBRARY_PATH.
20+
3. Install pysciter: `python3 setup.py install`.
2121
4. Run minimal pysciter sample: `python3 examples/minimal.py`. Also you can run script from zip archive directly: `python3 ./archive.zip` :)
2222

2323

@@ -77,18 +77,21 @@ _Check [pysciter/examples](https://github.com/pravic/pysciter/tree/master/exampl
7777

7878
## What supported right now:
7979

80-
* [sciter::window](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-window.hpp) which brings together window creation, host and event handlers
81-
* [sciter::host](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-host-callback.h) extensible implementation with transparent script calls from python code
82-
* [sciter::event_handler](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-behavior.h) with basic event handling (attached, document_complete, on_script_call), additional handlers will come
83-
* [sciter::dom](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-dom.hpp) for HTML DOM access and manipulation methods
84-
* [sciter::value](https://github.com/c-smile/sciter-sdk/blob/master/include/value.hpp) pythonic wrapper with sciter::script_error and sciter::native_function support
80+
* [x] [sciter::window](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-window.hpp) which brings together window creation, host and event handlers
81+
* [x] [sciter::host](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-host-callback.h) extensible implementation with transparent script calls from python code
82+
* [x] [sciter::event_handler](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-behavior.h) with basic event handling (attached, document_complete, on_script_call), additional handlers will come
83+
* [x] [sciter::dom](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-dom.hpp) for HTML DOM access and manipulation methods
84+
* [x] [sciter::value](https://github.com/c-smile/sciter-sdk/blob/master/include/value.hpp) pythonic wrapper with sciter::script_error and sciter::native_function support
85+
* [ ] [sciter::graphics](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-graphics.hpp) - platform independent graphics native interface (can be used in native behaviors)
86+
* [ ] [sciter::request](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-request.hpp) - resource request object, used for custom resource downloading and handling
87+
* [ ] [sciter::video](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-video-api.h) - custom video rendering
8588

8689

8790
### Platforms:
8891

8992
* [x] Windows
9093
* [x] OSX
91-
* [ ] Linux (in development)
94+
* [x] Linux
9295

9396
Python 3.x (2.7 in near future).
9497

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
'description': 'Python bindings for the Sciter - Embeddable HTML/CSS/script engine.',
1111
'url': 'http://github.com/pravic/pysciter/',
1212
'download_url': 'http://github.com/pravic/pysciter/',
13-
'version': '0.3',
13+
'version': '0.4',
1414
'packages': ['sciter', 'sciter.capi'],
1515
'install_requires': [''],
1616
'scripts': [],
1717
'keywords': ['gui', 'sciter', 'tiscript', 'htmlayout', 'html', 'css', 'web', 'cross-platform',],
1818
'license': 'MIT',
1919
'classifiers': [
20-
'Development Status :: 3 - Alpha',
20+
'Development Status :: 4 - Beta',
2121
'Intended Audience :: Developers',
2222
'Operating System :: OS Independent',
2323
'Operating System :: MacOS :: MacOS X',

0 commit comments

Comments
 (0)