From 0bd7559961d389b55ca69109adf2c075d09bcc47 Mon Sep 17 00:00:00 2001 From: ivaquero Date: Sat, 18 Apr 2026 14:23:19 +0800 Subject: [PATCH] doc: update readme --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8543302..1d2292d 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ When on macOS / Linux, the clock on the menu bar is too small to be noticeable, ./build.sh # Run application -./build/flock.app/Contents/MacOS/flock # macOS -./build/flock # Linux +./build/Clouck.app/Contents/MacOS/Clouck # macOS +./build/Clouck # Linux ``` #### Manual Build @@ -61,14 +61,14 @@ When on macOS / Linux, the clock on the menu bar is too small to be noticeable, ./clean.sh # Generate Makefile -qmake flock.pro +qmake Clouck.pro # Build make # Run -./build/flock.app/Contents/MacOS/flock # macOS -./build/flock # Linux +./build/Clouck.app/Contents/MacOS/Clouck # macOS +./build/Clouck # Linux ``` #### Using CMake @@ -77,7 +77,7 @@ make mkdir build && cd build cmake .. make -./flock +./Clouck ``` ## 🚀 GitHub Actions @@ -131,16 +131,16 @@ The configuration file is automatically created when you first run the applicati ### Project Structure ```text -qflock/ +qClouck/ ├── build/ # Build output directory -│ ├── flock.app/ # macOS application bundle +│ ├── Clouck.app/ # macOS application bundle │ ├── *.o # Object files │ ├── moc_*.cpp # Qt meta-object compiler output │ └── Makefile # Build file ├── config.xml # XML configuration file ├── build.sh # One-click build script ├── clean.sh # Clean script -├── flock.pro # qmake project file +├── Clouck.pro # qmake project file ├── CMakeLists.txt # CMake project file └── README.md ``` @@ -148,7 +148,7 @@ qflock/ ### Build Output Management - All compilation files (.o, moc_*.cpp, Makefile, etc.) are output to `build/` directory -- Executable files are located at `build/flock.app/Contents/MacOS/flock` (macOS) or `build/flock` (Linux) +- Executable files are located at `build/Clouck.app/Contents/MacOS/Clouck` (macOS) or `build/Clouck` (Linux) - Use `./clean.sh` to quickly clean all build files - Use `./build.sh` for complete one-click build