Skip to content

Commit 1bb108d

Browse files
committed
Add release notes and update year
1 parent 0b0a559 commit 1bb108d

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ quicktill — cash register software
44
Copying
55
-------
66

7-
quicktill is Copyright (C) 2004–2024 Stephen Early <[email protected]>
7+
quicktill is Copyright (C) 2004–2025 Stephen Early <[email protected]>
88

99
It is distributed under the terms of the GNU General Public License
1010
as published by the Free Software Foundation, either version 3

debian/copyright

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Upstream-Name: quicktill
33
Source: https://github.com/sde1000/quicktill
44

55
Files: *
6-
Copyright: 2004-2024 Stephen Early <[email protected]>
6+
Copyright: 2004-2025 Stephen Early <[email protected]>
77
License: GPL-3.0+
88

99
Files: debian/*
10-
Copyright: 2007-2024 Stephen Early <[email protected]>
10+
Copyright: 2007-2025 Stephen Early <[email protected]>
1111
License: GPL-3.0+
1212

1313
License: GPL-3.0+

release-notes.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
quicktill — cash register software
22
==================================
33

4+
Upgrade v23.x to v24
5+
--------------------
6+
7+
What's new:
8+
9+
* Users can now set passwords, so that both a user token and password
10+
are required to log in to the till
11+
12+
* The till can be configured to allow users to log in with a numeric
13+
ID and their password
14+
15+
To upgrade the database:
16+
17+
- run psql and give the following commands to the database:
18+
19+
```
20+
BEGIN;
21+
22+
ALTER TABLE users
23+
ADD COLUMN password character varying;
24+
25+
ALTER TABLE usertokens
26+
ADD COLUMN last_successful_login timestamp without time zone;
27+
28+
COMMIT;
29+
```
30+
431
Upgrade v22.x to v23
532
--------------------
633

0 commit comments

Comments
 (0)