Til Schneider
Til Schneider
This adds two options `--es6` and `--typescript` which allow to generate ES6 or TypeScript code. Example ES6 output: ```js export const Envelope = { read(pbf, end) { // ... },...
I tried to set up a GitHub Action for unit tests which runs jest. But for some reason, jest runs forever without any output. If anyone has an idea how...
Reading raw camera formats is currently only supported on macOS and Linux - not on Windows. The problem on Windows is that [node-libraw](https://github.com/m0g/node-libraw) doesn't compile on Windows. I [forked node-libraw](https://github.com/ansel-app/node-libraw)...
Selecting photos should be improved: - Support selecting photos of multiple sections - Change UX, so selection can't get lost by (accidentally) clicking on one photo - Allow (de)selecting photos...
Ansel contains translations for english, german and spanish (thanks to @ChesuCR). Please contribute translations for other languages! All you have to do is translating [the messages file](https://github.com/picturama/picturama/blob/master/src/common/i18n/text_en.ts).
As mentioned in [my pull request](https://github.com/m0g/ansel/pull/8), I'd like to contribute simple editing of images to Ansel. Simple editing means: - Stuff like rotating in 90° steps, cutting, saturation, brightness, ......
In Ansel version 0.4.1 there was a "version" feature which @m0g descibed in [a comment](https://github.com/ansel-app/ansel/issues/7#issuecomment-386795813) like this: > The work flow I envisioned for Ansel was the following: > >...
This makes subsequent calls of `npm run docker` a lot faster if source code was changed. How it works: - The build step only executes `npm install`. So it only...
This PR adds ReactJS support (see discussion in #6540). I converted `modules/ui/feature_info.js` into a React component as a demo. (The feature info is the blue box in the footer saying...
This PR improves the OSM authentication: - If `osm.authenticate` is called multiple times, an already running authentication is not reset any more. - While an authentication is running, a hint...