From 3cf2aeea009b0103ee4842f37da446b5f503f811 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Mon, 20 Apr 2026 14:38:37 +0200 Subject: [PATCH] Add Readme and license --- LICENSE.txt | 21 +++++++++++++++++++++ README.md | 30 ++++++++++++++++++++++++++++++ app/.gitignore | 3 ++- 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 LICENSE.txt create mode 100644 README.md diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..b4242b7 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 nikola@petrovv.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f0e615c --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Go Game Clock + +A simple Android application for timing Go (Baduk/Weiqi) games. + +## Features + +- Configurable game time settings +- Player time tracking +- Pause/resume functionality +- Sound notifications + +## Installation + +1. Clone this repository +2. Open in Android Studio +3. Build and run on your Android device or emulator + +## Usage + +1. Set the initial time for each player +2. Start the game +3. Tap a player's side to switch turns and start their timer +4. Use the pause button to pause the game + +## Development + +This project is built with: +- Kotlin +- Android Jetpack Components +- Android Studio diff --git a/app/.gitignore b/app/.gitignore index 42afabf..956c004 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1 +1,2 @@ -/build \ No newline at end of file +/build +/release \ No newline at end of file