[Others] 金融理财类软件很多打开字体太小,特别是股票类软件 V25.2.1
Tofloor
poster avatar
深度之家
deepin
3 hours ago
Author
【系统环境】: deepin V25.2.1 【前置条件】: 金融理财类软件很多打开字体太小,特别是股票类软件 【复现步骤】: 【预期结果】: 【实际结果】:

Reply Favorite View the author
All Replies
avatar
深度之家
deepin
3 hours ago
#1
您好,感谢您的反馈,使用系统25.2.1, 应用商店安装申万宏源金融软件 (版本号:1.00),问题未复现,可更新最新系统后,再进行尝试。如果仍然有该问题存在,请收集以下日志及版本后再次反馈,谢谢! #!/bin/bash #UOS wine兼容引擎 Windows理财股票软件字体过小 日志收集脚本 OUT_DIR=~/wine‑stock‑dpi‑bug‑logs mkdir -p "${OUT_DIR}" cd "${OUT_DIR}" #1.系统基础信息 cat /etc/os-release > os_info.log echo "XDG_SESSION_TYPE=${XDG_SESSION_TYPE}" >> os_info.log echo "QT_SCALE_FACTOR=${QT_SCALE_FACTOR}" >> os_info.log echo "GDK_SCALE=${GDK_SCALE}" >> os_info.log xrandr > screen_resolution.log 2>/dev/null #2.兼容引擎、wine版本 dpkg -l | grep -E "deepin‑wine|wine‑helper|uos‑compatible‑engine" > wine_pkg.log #3.当前用户wine前缀列表 ls -la ~/.deepinwine/ > wine_prefix_list.log #4.导出每个容器的LogPixels(DPI注册表值) for prefix in ~/.deepinwine/*/;do if [ -f "${prefix}system.reg" ];then grep -i "LogPixels" "${prefix}system.reg" > "LogPixels_$(basename ${prefix}).log" fi done #5.桌面会话日志 journalctl --user -b > user_session.log journalctl --user -b | grep -iE "deepin‑wine|winehelper|compatible‑engine" > wine_helper.log #6.字体系统信息 fc-list :lang=zh > font_chinese.log echo "======================================" echo "日志全部输出目录:${OUT_DIR}" echo "【重要补充操作】" echo "1.终端手动启动该股票exe,复现字体小,抓取运行输出:" echo "WINEDEBUG=+loaddll,+font,+dpi ll‑run yourapp.exe > ${OUT_DIR}/app_runtime.log 2>&1" echo "2.记录:系统缩放比例、X11/Wayland、winecfg手动修改DPI后现象" echo "======================================"
Reply View the author