fix: update file extensions for Fortran source files (#3683)

* Enhance update error logging and fix duplicate type import

- Improve error logging in AppUpdater with more detailed error information and timestamps
- Remove duplicate MCPServer type import in Inputbar component

* feat(constants): 添加 Fortran 源文件扩展名支持
This commit is contained in:
Hao He 2025-03-20 21:12:04 +08:00 committed by GitHub
parent 8f1528b21c
commit cd6c0a1f66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -103,7 +103,10 @@ export const textExts = [
'.cxx', // C++ 源文件 '.cxx', // C++ 源文件
'.cppm', // C++20 模块接口文件 '.cppm', // C++20 模块接口文件
'.ipp', // 模板实现文件 '.ipp', // 模板实现文件
'.ixx' // C++20 模块实现文件 '.ixx', // C++20 模块实现文件
'.f90', // Fortran 90 源文件
'.f', // Fortran 固定格式源代码文件
'.f03' // Fortran 2003+ 源代码文件
] ]
export const ZOOM_SHORTCUTS = [ export const ZOOM_SHORTCUTS = [