Timur

Results 44 comments of Timur

Same problem here. Worked great with `macos-10.15` but fails to notarize using `macos-latest` or `macos-12`. And since `macos-10.15` is now deprecated, I am no longer able to notarize my app...

**UPDATE** Switching to authenticate with username and password (`APPLE_ID` and `APPLE_ID_PASSWORD`) instead of `API_KEY` has resolved the issue for me. Updated my build.yml as follows: ``` env: APPLE_ID: ${{ secrets.apple_id...

Just to add to @simeon9696 's issue, using the `CustomParseFormat` plugin along with `Duration` plugin returns `NaN` for `diff` in above example. [https://runkit.com/6052c5915dac89001a8e3602/606151bf64ef4e00192ea162](https://runkit.com/6052c5915dac89001a8e3602/606151bf64ef4e00192ea162)

Hi Sindre, I agree. I was only using the term 'clear' as documented here: [`clearInvalidConfig`](https://github.com/sindresorhus/electron-store#clearinvalidconfig) which is the default behaviour I believe and it works great except for my specific...

Thanks @josdejong! A `createDocs` function would be a nice feature. In the meantime, any way to make the workaround work in browser environment?

My suggestion would be to extend the library with your own `average` function. Here is an example: [https://jsfiddle.net/ph4e08j7/](https://jsfiddle.net/ph4e08j7/) [https://mathjs.org/docs/core/extension.html](https://mathjs.org/docs/core/extension.html)

If anyone is interested, I use the `rowFormatter` to display my data in a pivot table like format. It's a hack but works for me. Here is an example: https://jsfiddle.net/dku674gy/...

This still seems to be an isssue on my end. ```javascript const copiedLine = line ? line.match(/^(#|\/\/)/) ? `${line}` : `${line} = ${$('#output').children[index].innerText}` : '' ``` Above code, which is...

As a workaround suggestion, you may want to take a look at this: https://stackoverflow.com/a/76368254/15048478

Hi @superdeeid, You can set the date using the `setState` method: ```js dp.setState({ selectedDate: new Date('10/23/2020') }); ``` As far as the `hilightedDate` goes, there is already an open issue...