From 2b03e2dcecceddac755523ceab5189975b1a812c Mon Sep 17 00:00:00 2001 From: pravic Date: Thu, 3 Mar 2016 22:13:13 +0300 Subject: [PATCH] version 0.4 --- README.md | 19 +++++++++++-------- setup.py | 4 ++-- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c2a24b..eec91c8 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ Check website and its [documentation resources](http://scite _Right now, before PySciter will not be published on PYPI_ 1. Download [Sciter SDK](http://sciter.com/download/) and extract it somewhere. -2. Add target platform binaries to PATH: `bin` (for Windows), `bin.osx` or `bin.gtk` -3. Install pysciter: `python3 setup.py install` +2. Add target platform binaries to PATH (`bin`, `bin.osx` or `bin.gtk`) and install Sciter shared library to your LIBRARY_PATH. +3. Install pysciter: `python3 setup.py install`. 4. Run minimal pysciter sample: `python3 examples/minimal.py`. Also you can run script from zip archive directly: `python3 ./archive.zip` :) @@ -77,18 +77,21 @@ _Check [pysciter/examples](https://github.com/pravic/pysciter/tree/master/exampl ## What supported right now: -* [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 -* [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 -* [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 -* [sciter::dom](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-dom.hpp) for HTML DOM access and manipulation methods -* [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 +* [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 +* [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 +* [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 +* [x] [sciter::dom](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-dom.hpp) for HTML DOM access and manipulation methods +* [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 +* [ ] [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) +* [ ] [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 +* [ ] [sciter::video](https://github.com/c-smile/sciter-sdk/blob/master/include/sciter-x-video-api.h) - custom video rendering ### Platforms: * [x] Windows * [x] OSX -* [ ] Linux (in development) +* [x] Linux Python 3.x (2.7 in near future). diff --git a/setup.py b/setup.py index f9e525d..3a5c8d1 100644 --- a/setup.py +++ b/setup.py @@ -10,14 +10,14 @@ 'description': 'Python bindings for the Sciter - Embeddable HTML/CSS/script engine.', 'url': 'http://github.com/pravic/pysciter/', 'download_url': 'http://github.com/pravic/pysciter/', - 'version': '0.3', + 'version': '0.4', 'packages': ['sciter', 'sciter.capi'], 'install_requires': [''], 'scripts': [], 'keywords': ['gui', 'sciter', 'tiscript', 'htmlayout', 'html', 'css', 'web', 'cross-platform',], 'license': 'MIT', 'classifiers': [ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Operating System :: MacOS :: MacOS X',