responsively-app icon indicating copy to clipboard operation
responsively-app copied to clipboard

chore(deps): bump braces from 3.0.2 to 3.0.3 in /desktop-app/release/app

Open dependabot[bot] opened this issue 1 year ago • 0 comments

Bumps braces from 3.0.2 to 3.0.3.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.

dependabot[bot] avatar Jul 12 '24 18:07 dependabot[bot]

Note : The best way to show this particular feature is to use Firefox browser.

MazeWave avatar Mar 04 '21 11:03 MazeWave

Hello, I'm new to contributing to open source, is this something I can work on?

ahong89 avatar Dec 24 '23 22:12 ahong89

Yes

Josh65-2201 avatar Dec 24 '23 22:12 Josh65-2201

Hey @Phrygan are you still working on this? Do you mind if I take a crack at it?

WhyNot180 avatar May 23 '24 15:05 WhyNot180

Go ahead, I never got the opportunity to work on it.

ahong89 avatar May 23 '24 15:05 ahong89

Further research is necessary but it looks like the PointerPressed event isn't compatible in the title bar drag area.

yaira2 avatar Aug 15 '24 19:08 yaira2

Further research is necessary but it looks like the PointerPressed event isn't compatible in the title bar drag area.

Yes it's true. Today I spent the whole day making this issue, but I still couldn’t understand why the event wasn’t triggered. I'll look into the issue tomorrow

TRUINGLol avatar Aug 22 '24 13:08 TRUINGLol

In General, I think I understand why the PointerPressed event does not work on the title bar drag area, the fact is that this area belongs to the non-client area of ​​the window, which means it is processed in a special way. I found a class in the documentation that should help solve the click tracking problem. Here is an excerpt from the documentation

When you add interactive content in the title bar area, you need to use the InputNonClientPointerSource class to specify areas where input is passed through to the interactive control, rather than handled by the title bar

Here are some links where I found information https://learn.microsoft.com/en-us/windows/win32/gdi/nonclient-area

https://learn.microsoft.com/en-us/windows/apps/develop/title-bar

https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/winrt/microsoft.ui.input.inputnonclientpointersource.pointerpressed?view=windows-app-sdk-1.5#microsoft-ui-input-inputnonclientpointersource-pointerpressed

I don’t claim to be telling the truth, maybe I don’t understand how the whole project works

TRUINGLol avatar Aug 23 '24 17:08 TRUINGLol