MHebes
MHebes
Does anyone have a way to get the `vite-plugin-svgr/client` types to take precedence over the `vite/client` types? My `vite-env.d.ts` looks like this: ```ts /// /// ``` And my svg imports...
I can also workaround this problem by adding a manifest XML that sets my app's code page to `CP_UTF8` on supported versions of windows. In CMake I wrapped this in...
Proposed diff to do the conversion to UTF-8 when targeting windows: ```diff diff --git a/include/nlohmann/detail/conversions/to_json.hpp b/include/nlohmann/detail/conversions/to_json.hpp index 562089c3..a8b74688 100644 --- a/include/nlohmann/detail/conversions/to_json.hpp +++ b/include/nlohmann/detail/conversions/to_json.hpp @@ -413,10 +413,20 @@ inline void to_json(BasicJsonType&...
I gotcha @fealebenpae—thanks so much for the link and info! Would you happen to have a sense of how hard it would be for me to monkey patch to build...
@olivbau No, haven’t been able to figure out the problem yet. Once I do I’ll close this issue. You can also try using the code I posted and see how...
For future readers: apparently introduced in tauri 2.0 with https://github.com/tauri-apps/tauri-plugin-dialog, more info in #7888
I think you can just: ```diff --- a/tooling/bundler/src/bundle/windows/nsis.rs +++ b/tooling/bundler/src/bundle/windows/nsis.rs @@ -124,15 +124,10 @@ fn get_and_extract_nsis(nsis_toolset_path: &Path, _tauri_tools_path: &Path) -> c fn add_build_number_if_needed(version_str: &str) -> anyhow::Result { let version =...
Do you have these environment variables set on your system? If not, it might be worth a shot. They help by launching more msbuild processes rather than just multiple cl.exe...
> This makes sense, so you want it to call `onValueChange` with what the parsed result will be after it's been formatted already: > > `input` -> `blur` -> `format`...
Hey @robertgoss, did you ever end up using this rust implementation for anything? I’m looking for options for writing language bindings and wonder if you had success with ACT +...