Nikita Skovoroda
Nikita Skovoroda
In 2x version of «soft» marker style (`[email protected]`), green-colored marker has outer shadow. It doesn't have shadow in small-sized icons (`markers-soft.png`). All other markers (with other colors) in «soft» style...
There is a 2x version for all marker styles, except «plain».
E.g. `inflight`, `qs`, `minimatch`, `chalk`, `hawk`, `hoek`, `combined-stream`, `is-buffer`, etc. Taking top-100 downloaded packages (see https://gist.github.com/ChALkeR/cf4d1fb90a68c6fff66ac9ea74503bf5), those that are not tested are: ``` 31833870 minimatch 28871883 qs 28593413 source-map 22251594...
Merge kde/realInheritance by @akreuzkamp. - [x] f676cc1 Make rootObject public via engine.rootObject — **Duplicate** from #19, **Merged**. - [x] ebb1da4 Fix parsing of files with windows line-feeds — **Duplicate** from...
Some parts of QmlWeb set .parent property directly, that was causing a conflict and an exception was being thrown. Long-term, we should create a better fix, but this fixes the...
Fixes: https://github.com/qmlweb/qmlweb/issues/375 Testcase is not ready yet. /cc @stephenmdangelo for #255 and https://github.com/qmlweb/qmlweb-parser/pull/26 — perhaps you would be interested to try this out =).
After #367 landed, it seems there are some issues left: 1. [qmlweb-viewer](https://github.com/qmlweb/qmlweb-viewer) needs to determine the native size of the loaded element and resize the window accordingly. Now the native...
E.g. when the underlying size is 200 (width) * 100 (height), `width` property is set to 100 from QML, `implicitHeight` should be 50, not 100 as it is now.
We definitely need that. Work-around: include in one place, register to a property. Another work-around: inside the library, bind the objects through `window` and unique (per-file) ids.
`applyProperty()` was extracted from and used only in `applyProperties()`. See [properties.js#L139-L155](https://github.com/qmlweb/qmlweb/blob/master/src/engine/properties.js#L139-L155): ``` js item.$properties[i].componentScope = componentScope; item.$properties[i].val = value; item.$properties[i].get = function() { const obj = this.componentScope[this.val.objectName]; const propertyName =...