{"id":25120590,"url":"https://github.com/yo35/vcc","last_synced_at":"2025-10-23T02:31:13.386Z","repository":{"id":13973851,"uuid":"16674555","full_name":"yo35/vcc","owner":"yo35","description":"Virtual Chess Clock, a chess clock software","archived":false,"fork":false,"pushed_at":"2021-05-26T18:40:19.000Z","size":17485,"stargazers_count":1,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-08-16T07:11:39.570Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/yo35.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-02-09T20:13:32.000Z","updated_at":"2023-08-16T07:11:39.570Z","dependencies_parsed_at":"2022-07-31T17:08:57.050Z","dependency_job_id":null,"html_url":"https://github.com/yo35/vcc","commit_stats":null,"previous_names":[],"tags_count":12,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo35%2Fvcc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo35%2Fvcc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo35%2Fvcc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo35%2Fvcc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yo35","download_url":"https://codeload.github.com/yo35/vcc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237763855,"owners_count":19362310,"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","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":[],"created_at":"2025-02-08T05:32:30.328Z","updated_at":"2025-10-23T02:31:12.838Z","avatar_url":"https://github.com/yo35.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"Virtual Chess Clock\n===================\n\nVirtual Chess Clock is a [chess clock](http://en.wikipedia.org/wiki/Chess_clock) software:\nit can be used to simulate a chess clock on computer (typically a laptop).\nVirtual Chess Clock is designed to be easy to use. It is free, open-source and multi-platform.\n\nhttps://sourceforge.net/projects/vchessclock/\n\n\n\nDownload\n--------\n\nhttps://sourceforge.net/projects/vchessclock/files/\n\n\n\nFeatures\n--------\n\n* Two active key areas on the keyboard (left and right) to operate the clock.\n* Support for exotic time control modes such as Fischer, Bronstein, hourglass,\n  byo-yomi.\n* Time resolution of 1 millisecond.\n* Inactivation of most key shortcuts defined by the OS (such as the Windows key\n  that triggers the \"Start\" menu on Windows) when the software is in use.\n\nIf you encounter some bugs with this program, or if you wish to get new features\nin the future versions, you can report/propose them\nin the [GitHub bug tracker](https://github.com/yo35/vcc/issues),\nor send an [email to the author](mailto:yo35@melix.net).\n\n\n\nScreenshots\n-----------\n\n\u003cimg alt=\"Main window\" src=\"screenshot_main_window.png\" width=\"600\" /\u003e  \nThe main window.\n\n\u003cimg alt=\"Time control set-up\" src=\"screenshot_time_control.png\" width=\"600\" /\u003e  \nTime control configuration dialog.\n\n\u003cimg alt=\"Keyboard set-up\" src=\"screenshot_keyboard_setup.png\" width=\"600\" /\u003e  \nKeyboard set-up dialog. The function of each key can be finely tuned.\n\n\n\nTranslation\n-----------\n\nCurrently, Virtual Chess Clock is available in the following languages:\n\n* English,\n* French,\n* German,\n* Spanish.\n\nIf you are interested in translating this program into your language,\nplease [contact the author](mailto:yo35@melix.net).\n\n\n\nBuild from source\n-----------------\n\n### Required components ###\n\n1. A C++ compiler that supports the C++11 standard (typically, GCC or MinGW \u003e= 4.7).\n2. The [CMake](http://www.cmake.org/) build framework (at least version 2.8.11).\n3. The [boost libraries](http://www.boost.org/) (at least version 1.49).\n4. The [Qt library](http://qt-project.org/) (at least version 5.0).\n\nMaking all these things work together is likely to be the harder part of the job! ;-)\n\n\n### Download the source code ###\n\nThe source code can be retrieved by cloning the current GitHub repository:\n\n```\ngit clone https://github.com/yo35/vcc.git --branch release\n```\n\nHowever, if you are not familiar with the Git tool, you can download a\n[ZIP archive](https://sourceforge.net/projects/vchessclock/files/2.0-latest/virtual-chess-clock-2.0.0-Source.zip/download)\ncontaining the latest (stable) source from the\n[SourceForge repository](https://sourceforge.net/projects/vchessclock/).\n\n\n### Build VCC ###\n\nWhen the required components and the VCC source are ready, open a terminal,\nand type the following commands:\n\n```\ncd /path/to/VCC/source\n./configure\nmake\nsudo make install\n```\n\nOn Windows, using the MinGW compiler, this process becomes:\n\n```\ncd x:\\path\\to\\VCC\\sources\nconfigure.bat\nmingw32-make\nmingw32-make install\n```\n\nAdditional details about the available installation options can be obtained\nwith the command `./configure --help` (or `configure.bat --help` on Windows).\nShould you encounter any problems, please report them\n[here](https://github.com/yo35/vcc/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyo35%2Fvcc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyo35%2Fvcc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyo35%2Fvcc/lists"}