Daniel Bachhuber

Results 445 comments of Daniel Bachhuber

Even command-clicking a link in Gmail doesn't open it in the default browser for me. I have to right click for the contextual menu, and then click "Open link in...

@jboxman Lol, that's not a fix! 😁 The `--strict-internal-urls` flag worked great for me: ``` nativefier https://mail.google.com --icon ~/Documents/Icons/gmail-mac.png --strict-internal-urls ```

@marcboscher I didn't specify a user agent. It was also an entirely new install of `nativefier`, so maybe it's using a compatible version of Chromium or something?

I'm going to debug this a bit, unless it's already a known issue?

I did a bit of testing and here's what I found.... ### Scenario 1 Given a `~/.terminus/config.yml` file with: ```yml build-tools: composer-auth: '{ "http-basic": { "privatepackage.com": { "username": "[email protected]", "password":...

> Nested config has definitely worked in the past. I don't see why it would have stopped working. Nested config, or nested config with environment variable equivalence?

@greg-1-anderson It looks like Terminus's `EnvConfig` extends `TerminusConfig`: https://github.com/pantheon-systems/terminus/blob/7a337955a512d94480b2227cb1b7b7fbc7cc028d/src/Config/EnvConfig.php#L9 `TerminusConfig` doesn't make any reference to `Consolidation\Config\Util\EnvConfig`: https://github.com/pantheon-systems/terminus/blob/b953f0d469ece2b4d4fbd525a3ad01d8ad613021/src/Config/TerminusConfig.php#L9 Maybe that's the issue?

@greg-1-anderson Ok, no worries. @ataylorme In the interest of simplicity for https://github.com/pantheon-systems/terminus-build-tools-plugin/issues/275, how about we support: ```yml build-tools: composer-auth: '{ "http-basic": { "privatepackage.com": { "username": "[email protected]", "password": "abc123" } }...

The idea is to create a `wp profile requests` command that would minor execution time, etc. for all HTTP requests made during the WordPress load process. Here's where we're already...