Jim Fisher

Results 118 comments of Jim Fisher

I've since come to the conclusion that the right way to use `electron-windows-store` is to write your own `AppxManifest.xml`, and pass this in, like so ``` const convertToWindowsStore = require('electron-windows-store');...

Indeed, the template has these "SampleAppx" filenames hard-coded ... https://github.com/felixrieseberg/electron-windows-store/blob/master/template/appxmanifest.xml#L30-L31

Duplicate of https://github.com/felixrieseberg/electron-windows-store/issues/82

Should be fixed in https://github.com/felixrieseberg/electron-windows-store/pull/131; in the mean time the correct (but confusing) way to use this package is like so: ``` const convertToWindowsStore = require('electron-windows-store'); convertToWindowsStore({ identityName: '12345MyCompany.Ghost', //...

It seems this bug was introduced somewhere between 0.65.3 and 0.66.0

I think this bug was introduced by https://github.com/ianstormtaylor/slate/pull/4489 - reverting this specific change results in expected behavior

Copying in @nemanja-tosic @TheSpyder @dylans I don't think I can do much to help fix this. I'm blocked by: * I can't find any documentation on what a "fragment" really...

@nemanja-tosic's description of #4489: > When pasting into an empty block, insert the entire fragment as-is This is actually a good description of the bug that I'm reporting :) I'm...

I think we all agree that user intent is ambiguous when copy-pasting an arbitrary range of an arbitrary document. So it's not possible to make core behavior that works as...

@nemanja-tosic in my example, the `preview` ancestor is targeted because it's the lowest common ancestor (i.e. `Path.common`) of the anchor and focus: ``` // Selection state before copy editor.selection =...