Golden

Results 10 comments of Golden

the same goes for Clash users: bun install v1.1.0 (5903a614) info: cannot move files from tempdir: RenameAcrossMountPoints, using fallback Enqueue package manifest for download: @types/bun 🔍 Resolving [1/1] [PackageManager] waiting...

试试这个 [ContextMenuForWindows11](https://github.com/ikas-mc/ContextMenuForWindows11)

windows 窗口可以用楼上的办法。其他如聊天记录、网页截图、图片二次截图的自动填充,需要用到 ocr 识别,估计在 snipaste 3 版本的时候,估计就能实现了

my solution:Preload audio **main.dart** ```dart void main() async { WidgetsFlutterBinding.ensureInitialized(); // Preload audio await Future.wait( preloadAudios.map( (assetPath) async { return AudioService().preloadAudio(assetPath); }, ), ); runApp(const MyApp()); } class MyApp extends...

+1,确实是这样 ![Image](https://github.com/user-attachments/assets/ce80129f-bb01-4e74-9abe-75385ed005d6)

可能是 `.n-slider-rail` 的宽度问题? ![Image](https://github.com/user-attachments/assets/0ff56e2d-9c03-498a-8a4b-a55613ea00aa)

确实是这样,水平时有设置 height,垂直时没有 width 样式。图中的 width 是我自己加的 ![Image](https://github.com/user-attachments/assets/5e40ddd4-611f-408b-b372-e102f9b1d6f3)

【打包输出】 ``` "C:\Program Files\Volta\pnpm.cmd" run build > [email protected] build D:\Work\naive-admin-plus > cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts WARN The CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated...

【插件配置】 ``` import vue from '@vitejs/plugin-vue'; import vueJsx from '@vitejs/plugin-vue-jsx'; import Components from 'unplugin-vue-components/vite'; import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'; import VueSetupExtend from 'vite-plugin-vue-setup-extend'; import svgLoader from 'vite-svg-loader'; import {...

this happings to me now. if `themeMode` is dark when initialized, Get.changeTheme to light is not working. `themeMode: isDark ? ThemeMode.dark : ThemeMode.light,` **main.dart** ```dart import 'dart:io'; import 'package:echo_cloud/consts/config.dart'; import...