blob: 69c79edb18367a066bf984a8cd583ff1f265d588 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# scorecounter
*scorecounter* is a simple score counting app written in Python.
## General
*scorecounter* is intended for use on mobile devices (mobile phones and tablets)
as a simple app for counting and recording scores during head‑to‑head games
between two teams or participants. It is perfect for parents who want to
record a child's football match score.
No ads, no tracking, 100% free (as in freedom) software that doesn't require
network access or additional permissions.
Hence the intended target systems are *Android* and *iOS*, but because the
application is implemented with [BeeWare](https://beeware.org/) it can be
deployed to any platform supported by BeeWare.
To date, only the Android build has been tested and documented.
## How to use
When a team or participant scores, tap their corresponding red or blue button.
You can assign custom names to teams or participants.
## Building and installing
This document assumes that [Briefcase](https://briefcase.beeware.org/en/stable/)
is installed.
For more details visit the [official BeeWare tutorial](https://tutorial.beeware.org/)
iOS applications require Xcode, which is only available on macOS
- a proprietary operating system I do not intend to use.
### Android
```bash
# build scorecounter for Android
briefcase build android
# Run and test scorecounter either using emulator or a real phone
# connected using an USB cable
briefcase run android
# Make .apk package
briefcase package android -p apk
```
## Changelog
A complete changelog can be found at:
[https://codeberg.org/sgs/scorecounter/src/branch/main/CHANGELOG.md](https://codeberg.org/sgs/scorecounter/src/branch/main/CHANGELOG.md)
## Support and contributing
*scorecounter* is hosted on Codeberg: https://codeberg.org/sgs/scorecounter
## Author
Simeon Simeonov - sgs @ LiberaChat
## [License](https://codeberg.org/sgs/scorecounter/src/branch/main/LICENSE)
Copyright (C) 2026 Simeon Simeonov
All rights reserved.
[Licensed](https://codeberg.org/sgs/scorecounter/src/branch/main/LICENSE) under the
GNU General Public License v3.0 or later.
SPDX-License-Identifier: GPL-3.0-or-later
|