Dave Nicolson

Results 89 comments of Dave Nicolson

That sequence of bytes is checked for files with a `plist` or `strings` file extension. Can you give an example of other files in iOS projects?

Please try version 0.5.0 of the extension, setting the language mode to `plist` can be used for files without a `.plist` extension. For performance reasons the first bytes are only...

@cachius files with a `.plist` extension will automatically use the `plist` language mode. Are you able to demonstrate this not working? Feel free to make a pull request to update...

> However there's another issue - the game does that thing where it loads and then at the loading screen it has an arrow at the bottom right you have...

You can invert the controller by removing the negative from this line: https://github.com/tomkidd/Quake-iOS/blob/54ff513f562fd8799dfc05559720b6b752d8ec92/Quake-iOS/GameControllerSetup.swift#L94 You can also add/edit the line `m_pitch "-0.022000"` in the `config.cfg` to invert the controller via https://github.com/tomkidd/Quake-iOS/pull/6...

I also handled the error the same way. The provided example is a contrived example to trigger the issue. It's about the error handling in the C++ code and not...

This fix only applies to the generator, are you referring to https://github.com/bitwarden/clients/pull/5887 for within the vault? I just tested it again and it seems to work: https://github.com/bitwarden/clients/assets/2276355/96e85e8c-5f78-4d73-8201-0797e60b7a04

Yes, the Mac desktop application. Maybe there is a race condition, what if you replace `setImmediate` with `setTimeout` as in https://github.com/bitwarden/clients/pull/5887.

I've replaced `setImmediate` with `setTimeout`. ed383cf is still needed as it prevents the extra whitespace in the text selection, it doesn't affect the copying.

I get these errors with 1.4.0: ``` node_modules/simple-plist/dist/index.d.ts:1:10 - error TS2305: Module '"bplist-creator"' has no exported member 'default'. 1 export { default as bplistCreator } from "bplist-creator"; ~~~~~~~ node_modules/simple-plist/dist/index.d.ts:2:10 -...