Peter Badida

Results 27 issues of Peter Badida

fixes missing "copy" entity in ePub format, ref: https://www.codetable.net/decimal/169. Without this fix I can't generate ePub using this theme.

`on_scroll_move` isn't triggered with mouse wheel e.g. in `scrollview.py`: ``` def on_scroll_move(self, touch): print self.scroll_y ... ``` then `on_scroll_stop` isn't triggered when `scroll_y == 0` and `scroll_y == 1`, again...

Make `setup.py` the source of truth for version. I tried to use `__init__.py` first, but the star imports won't work otherwise, so this one is the second best option. `setup.py`...

There's a little bit different handling of file/folder removal on Windows and it makes MinGW/GCC fail with annoying errors forcing a user to compile by hand. The problem mostly isn't...

https://github.com/myxvisual/react-uwp/blob/096b8239b2b864db8658656a18a595d082becc32/src/NavigationView/index.tsx#L151 This piece of code seems wrong to me if used with this piece of code: ```javascript ``` it makes the `NavigationView` background disappear and first the remaining menu will...

Writing from phone, so I can't write a pretty .rst for now. We should have a doc page for whatever known combinations of environments we are sure won't work due...

enhancement
documentation

If we compare the name to let's say macOS alternative ([`NSApplicationDirectory`](https://developer.apple.com/documentation/foundation/nssearchpathdirectory/nsapplicationdirectory?language=objc)), we should most likely use `FOLDERID_Programs` from [`KNOWNFOLDERID`](https://docs.microsoft.com/en-us/windows/desktop/shell/knownfolderid). ref: https://docs.microsoft.com/en-us/windows/desktop/api/shlobj_core/nf-shlobj_core-shgetknownfolderpath

enhancement
easy
Hacktoberfest
platform-win

In some parts there are bytes, in some others there are unicode strings. We should basically switch to Py3 defaults for strings because [2020](https://pythonclock.org) and I'm not sure whether to...

important
enhancement

The problem is that [`lxml` uses XPath 1.0](https://stackoverflow.com/a/53195682/5994041). That version does not know [how to escape](https://stackoverflow.com/a/12406443/5994041) those characters as those are [special/forbidden](https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML). Instead, we can use [`elementpath`](https://github.com/sissaschool/elementpath) which seems to...

@Kovak I think it'd be nice to have docs for Kivent. I imported kivent as a project to [RTD](https://readthedocs.org/projects/kivent/), but it's still empty (no sources to build from), so unless...