Daeram Chung

Results 7 comments of Daeram Chung

#502 #526 Google is discontinuing the ["Google Sign-In JavaScript Platform Library"](https://developers.google.com/identity/sign-in/web/sign-in) after March 31, 2023, which this library is using. Instead, Google released their new Identity Services called ["Sign In...

> did you try https://tauri.app/v1/api/js/window/#theme-2 ? I'm looking for a dynamic solution in JS and not the initial configuration. --- > You can give the user 3 choices for theme....

I think an API like this in the [WindowManager class](https://github.com/tauri-apps/tauri/blob/e4292ce/tooling/api/src/window.ts#L426) would be convenient. Is it plausible? ```ts type Theme = 'light' | 'dark'; async setTheme(theme: Theme): Promise { return invokeTauriCommand({...

I also tried cloning the [tauri api example](https://github.com/tauri-apps/tauri/tree/dev/examples/api) and tried sending the test notification but doesn't work. I'm not sure but maybe it has something to do with the fact...

Oh ok. Do you have any idea what might be the problem? Using either the Notification Web API or Tauri's Notification API, the permission is always `"granted"` for some reason,...

I see. I hope this issue also gets handled asap amidst your progressions with tauri. Thanks.

@Moon1102 Nice. Thanks for letting me know. I just checked and yes, the notifications are working as expected in production.