mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
docs: README 默认使用英语
This commit is contained in:
parent
afa7d8d3da
commit
109161c7c8
2 changed files with 77 additions and 78 deletions
77
README.md
77
README.md
|
|
@ -6,74 +6,75 @@
|
|||
|
||||
<div align="center">
|
||||
|
||||
[](./LICENSE)
|
||||
[](./LICENSE)
|
||||
[](https://github.com/Blinue/Magpie/actions/workflows/build.yml)
|
||||
[](#%E8%B4%A1%E7%8C%AE%E8%80%85-)
|
||||
[](#acknowledgement-)
|
||||
[](https://github.com/Blinue/Magpie/releases)
|
||||
|
||||
</div>
|
||||
|
||||
🌍 **简体中文** | [English](./README_EN.md)
|
||||
:earth_africa: [简体中文](./README_ZH.md) | **English**
|
||||
|
||||
Magpie 是一个轻量级的窗口缩放工具,内置了多种高效的缩放算法和滤镜。它主要用于提升游戏画质和让不支持全屏化的游戏也能全屏显示等。
|
||||
Magpie is a lightweight window scaling tool that comes equipped with various efficient scaling algorithms and filters. Its primary purpose is to enhance game graphics and enable non-fullscreen games to display in fullscreen mode.
|
||||
|
||||
我们使用 [Weblate](https://weblate.org) 进行本地化工作,请帮助我们把 Magpie 翻译成更多语言。
|
||||
We are using [Weblate](https://weblate.org/) for localization work and would appreciate your help in translating Magpie into more languages.
|
||||
|
||||
[](https://hosted.weblate.org/engage/magpie/)
|
||||
[](https://hosted.weblate.org/engage/magpie/)
|
||||
|
||||
:point_right: [下载](https://github.com/Blinue/Magpie/releases)
|
||||
:point_right: [Download](https://github.com/Blinue/Magpie/releases)
|
||||
|
||||
:point_right: [FAQ](https://github.com/Blinue/Magpie/wiki/FAQ)
|
||||
:point_right: [FAQ](https://github.com/Blinue/Magpie/wiki/FAQ_EN)
|
||||
|
||||
:point_right: [内置效果介绍](https://github.com/Blinue/Magpie/wiki/内置效果介绍)
|
||||
:point_right: [Built-in effects](https://github.com/Blinue/Magpie/wiki/Built-in%20effects)
|
||||
|
||||
:point_right: [编译指南](https://github.com/Blinue/Magpie/wiki/编译指南)
|
||||
:point_right: [Compilation guide](https://github.com/Blinue/Magpie/wiki/Compilation%20guide)
|
||||
|
||||
:point_right: [贡献指南](./CONTRIBUTING.md)
|
||||
:point_right: [Contributing](./CONTRIBUTING_EN.md)
|
||||
|
||||
## 功能
|
||||
## Features
|
||||
|
||||
* 将任何窗口放大至全屏
|
||||
* 众多内置算法,包括 Lanczos、[Anime4K](https://github.com/bloc97/Anime4K)、[FSR](https://github.com/GPUOpen-Effects/FidelityFX-FSR)、Adaptive Sharpen、多种 CRT 着色器等
|
||||
* 基于 WinUI 的用户界面,支持浅色和深色主题
|
||||
* 为特定窗口创建配置文件
|
||||
* 多屏幕支持
|
||||
* Scale any window to fullscreen
|
||||
* Numerous built-in algorithms, including Lanczos, [Anime4K](https://github.com/bloc97/Anime4K), [FSR](https://github.com/GPUOpen-Effects/FidelityFX-FSR), Adaptive Sharpen, various CRT shaders, and more
|
||||
* WinUI-based user interface with support for light and dark themes
|
||||
* Create configuration profiles for specific windows
|
||||
* Multi-monitor support
|
||||
|
||||
## 如何使用
|
||||
## How to use
|
||||
|
||||
1. 配置缩放模式
|
||||
1. Configuring scaling modes
|
||||
|
||||
Magpie 预设了一些简单的缩放模式,但建议根据使用场景自行配置。然后在“配置文件”-“默认”页面更改全局缩放模式。
|
||||
Magpie provides some simple scaling modes by default, but it is recommended to configure them according to your specific use case. Then, change the global scaling mode on the "Profiles"-"Defaults" page.
|
||||
|
||||
2. 缩放窗口
|
||||
2. Scaling a window
|
||||
|
||||
把要缩放的窗口置于前台,按下快捷键(默认为 Win+Shift+A)即可全屏显示。请注意,要缩放的窗口必须处于窗口化状态,而不是最大化或全屏化。也可以使用“主页”上的“x 秒后缩放”按钮,Magpie 将在数秒后自动缩放前台窗口。
|
||||
To scale a window, bring the desired window to the foreground and press the shortcut key (default is Win+Shift+A) to display it in fullscreen mode. Note that the window to be scaled must be in windowed mode, not maximized or fullscreen mode. You can also use the "Scale after xs" button on the "Home" page, and Magpie will automatically scale the foreground window after a few seconds.
|
||||
|
||||
3. 为窗口创建配置文件
|
||||
|
||||
这使你可以保存针对某个窗口的配置,也支持在该窗口位于前台时自动执行缩放。
|
||||
3. Creating profiles for windows
|
||||
|
||||
4. 自定义效果
|
||||
This allows you to save configurations specific to a particular window. Magpie also supports automatically activate scaling when that window is brought to the foreground.
|
||||
|
||||
Magpie 使用 Direct3D 计算着色器实现效果,但扩展了语法来定义资源、组织多个通道等,详见 [MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX) 。有着色器编写经验者可以轻松创建自定义效果。
|
||||
4. Customizing effects
|
||||
|
||||
## 截图
|
||||
Magpie uses Direct3D compute shader to implement effects, but the syntax has been extended to define resources and organize multiple passes. For more information, please refer to [MagpieFX](https://github.com/Blinue/Magpie/wiki/MagpieFX%20(EN)). Those with experience in shader writing can easily create custom effects.
|
||||
|
||||
<img src="img/主窗口.png" alt= "主窗口" height="300">
|
||||
## Screenshots
|
||||
|
||||
## 系统需求
|
||||
<img src="img/Main window.png" alt= "Main window" height="300">
|
||||
|
||||
1. Windows 10 v1903+ 或 Windows 11
|
||||
2. DirectX 功能级别 11
|
||||
## System requirements
|
||||
|
||||
## 使用提示
|
||||
1. Windows 10 v1903+ or Windows 11
|
||||
2. DirectX feature level 11
|
||||
|
||||
1. 如果你设置了 DPI 缩放,而要放大的窗口没有高 DPI 支持(这在老游戏中很常见),推荐首先进入该程序的兼容性设置,将“高 DPI 缩放替代”设置为“应用程序”。
|
||||
2. 一些游戏支持调整窗口的大小,但只使用简单的缩放算法,这时请先将其设为原始(最佳)分辨率。
|
||||
## Hints
|
||||
|
||||
## 贡献者 ✨
|
||||
1. If you have set DPI scaling and the window you want to scale does not support high DPI (which is common in older games), it is recommended to first enter the program's compatibility settings and set "High DPI scaling override" to "Application".
|
||||
|
||||
感谢每一位参与贡献的人([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
||||
2. Some games support zooming the window, but with extremely naive algorithms. Please set the resolution to the built-in (best) option.
|
||||
|
||||
## Acknowledgement ✨
|
||||
|
||||
Thanks go to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
||||
|
||||
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
||||
<!-- prettier-ignore-start -->
|
||||
|
|
@ -111,4 +112,4 @@ Magpie 是一个轻量级的窗口缩放工具,内置了多种高效的缩放
|
|||
|
||||
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
||||
|
||||
本项目遵循 [all-contributors](https://allcontributors.org/) 规范。欢迎任何形式的贡献!
|
||||
This project follows the [all-contributors](https://allcontributors.org/) protocol. Contributions of any kind are welcome!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue