Skip to content

Commit

Permalink
fix: windows icon, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Plat committed Sep 14, 2022
1 parent 175b3be commit c489658
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"macFrameworkPath": [
"/Applications/Xcode-13.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-x64"
}
],
"version": 4
}
1 change: 1 addition & 0 deletions README-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ bilibili の製作した [Real-CUGAN](https://github.com/bilibili/ailab/tree/mai

- イラスト特化の超解像
- 多言語対応
- Windows/macOS サポート

##

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This tool is based on [Real-ESRGAN-GUI](https://github.com/tsukumijima/Real-ESRG

- AI super resolution model for anime images
- i18n
- Windows/macOS support

## Example

Expand Down
2 changes: 1 addition & 1 deletion windows/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(Real-ESRGAN-GUI LANGUAGES CXX)

# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "Real-ESRGAN-GUI")
set(BINARY_NAME "Real-CUGAN-GUI")

# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
Expand Down
2 changes: 1 addition & 1 deletion windows/runner/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
FlutterWindow window(project);
Win32Window::Point origin(0, 0);
Win32Window::Size size(0, 0);
if (!window.CreateAndShow(L"Real-ESRGAN-GUI", origin, size)) {
if (!window.CreateAndShow(L"Real-CUGAN-GUI", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);
Expand Down
Binary file modified windows/runner/resources/app_icon.ico
Binary file not shown.

0 comments on commit c489658

Please sign in to comment.