{"id":14982595,"url":"https://github.com/rhzxg/revelation","last_synced_at":"2025-09-15T14:20:57.498Z","repository":{"id":250438024,"uuid":"816787673","full_name":"rhzxg/Revelation","owner":"rhzxg","description":"A to-do list software tailored for software engineers, inspired by the Revelation album of G.E.M.","archived":false,"fork":false,"pushed_at":"2024-10-02T11:56:58.000Z","size":6516,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T09:39:50.662Z","etag":null,"topics":["cpp","fluentui","gantt-chart","qt6","todolist"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rhzxg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-18T12:04:25.000Z","updated_at":"2024-10-07T06:23:49.000Z","dependencies_parsed_at":"2024-10-12T01:20:52.039Z","dependency_job_id":"88e96a99-9fe9-43a6-9b8a-134f1c23976d","html_url":"https://github.com/rhzxg/Revelation","commit_stats":{"total_commits":171,"total_committers":1,"mean_commits":171.0,"dds":0.0,"last_synced_commit":"b3b5fe3a2349279da3ec0849192e83c3b026350e"},"previous_names":["codingdogzxg/revelation","rhzxg/revelation"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/rhzxg/Revelation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhzxg%2FRevelation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhzxg%2FRevelation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhzxg%2FRevelation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhzxg%2FRevelation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rhzxg","download_url":"https://codeload.github.com/rhzxg/Revelation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhzxg%2FRevelation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275268172,"owners_count":25434792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-15T02:00:09.272Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","fluentui","gantt-chart","qt6","todolist"],"created_at":"2024-09-24T14:05:42.703Z","updated_at":"2025-09-15T14:20:57.462Z","avatar_url":"https://github.com/rhzxg.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=center\u003e\n  \u003cimg src=\"resources/images/splash.png\"\u003e\n\u003c/div\u003e\n\u003cp align=\"center\"\u003e\n  A to-do list software tailored for software engineers, inspired by the Revelation album of G.E.M.\n\u003c/p\u003e\n\u003cimg src=\"display.gif\"\u003e\n\n# Build Steps:\n## [Windows]\n### Requirements\n- Visual\n Studio 17 2022 with C++ desktop development tools installed.\n- VCPKG\n- Qt 6.3.3\n- CMAKE\n\n### Install VCPKG\n```bash\ngit clone https://github.com/microsoft/vcpkg.git\ncd vcpkg\n./bootstrap-vcpkg.bat\n```\n\n### Set Environment Variables For VCPKG (set only once)\n```bash\n:: VCPKG_DOWNLOADS vcpkg download cache folder\n:: VCPKG_DEFAULT_BINARY_CACHE vcpkg binary cache folder\nsetx VCPKG_ROOT \"path_to_your_vcpkg_root\"\nsetx VCPKG_DOWNLOADS \"path_to_an_empty_folder1\"\nsetx VCPKG_DEFAULT_BINARY_CACHE \"path_to_an_empty_folder2\"\n```\n\n### Clone Repository\n\n```bash\ngit clone --recursive https://github.com/Codingdogzxg/Revelation.git\n```\n\n### Edit CMakePresets.json\n\n```json\n\"configurePresets\": [\n    {\n        \"binaryDir\": \"E:/GithubRepos/Revelation/build\", // your build folder\n        \"cacheVariables\": {\n            \"REVELATION_OUTPUT_DIR\": \"E:/GithubRepos/Revelation/binary\", // your binary folder\n            \"CMAKE_PREFIX_PATH\": \"D:/ProgramFiles/Qt/6.6.3/msvc2019_64/lib/cmake\" // your qt cmake path\n    \t}\n    }\n]\n```\n\n### Build\n```bash\nmkdir build\ncd build\ncmake ../SourceCode/ --preset windows\n```\n\n### Deploy executable \n\n```bash\n# using qt msvc command line tool\n# cd to binary folder where `Revelation.exe` is located\nwindeployqt Revelation.exe\n```\n\n### Copy resource files\n\nBuild `ResourceCopy` project to copy necessary resources\n\n### Open solution and set `Revelation` as default start-up project\n\n# Reference\n+ [mowangshuying/CppQtFluentUi888: FluentUI For Cpp Qt.(github.com)](https://github.com/mowangshuying/CppQtFluentUi888)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhzxg%2Frevelation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frhzxg%2Frevelation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhzxg%2Frevelation/lists"}