Compatibility breakage
pravic opened this issue · 0 comments
pravic commented
-
sciter::Value
: remove indexing (works via a hack now) -
sciter::Value::isolate
should beunsafe
-
s2w
: return a single value only,s2wn
returns value and length -
window::with_size
and K°: usewindow::Builder
instead. - window size as array instead of tuple:
[width, height]
(why? totally forgot now) - window creation as result
- proper error type (probably will break return types) - though our return types are compatible with
std::error::Error
now -
Window::load_html
andWindow::load_file
should returnbool
(even better - a properResult
) -
Window::load_html
andWindow::load_file
should return a properResult
-
Window::load_file
should acceptAsPath
trait -
dom::Element
::get_value
,get_hwnd
,attribute
,get_style_attribute
should return result -
dom::Element
::from_window
,from_point
,from_focus
,from_highlighted
should returnResult<Option<Element>>
-
dom::Element
::get_tag
,get_text
should return a proper result - replace enums with associated constants #92