This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHISTORY.txt
51 lines (41 loc) · 2.7 KB
/
HISTORY.txt
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
2023-02-07 v5.1
* Implement background and text color codes in the configuration file (issue #15).
* Attempt to fix reported cursor problem (issue #15): Turned cursor off just before entering Tk mainloop.
2023-01-10 v5.0
* Code cleanup.
* Fix issue #16 (Logging to a file is broken).
* Fix issue #17-a (Set Tk window title = program name plus the version).
* Fix issue #17-b (Log version at startup).
* Fix issue #20 (allow ssh with -Y parameter).
* Issue #15 is postponed until I receive a TFT from Tinkersphere.
2023-01-10 v4.5 Rename rpi_clock.cfg to sample_config.txt. Update preparation_notes.txt.
2022-12-31 v4.4 Issue #14
* Change default value of SLEEP_TIME_MSEC from 60000 to 3000.
2022-12-06 v4.3 Issue #12
* Stop hard-coding the log output directory as /home/pi. Its amazing that this was not reported before!
2019-06-20 v4.2 Issue #6
* I missed a spot in the preparation notes after I externalized all of the configuration parameters out of rpi_clock.py and into a new file, rpi_clock.cfg (v3). The file rpi_clock_parameters.py is a class defining the parameters so they can be accessed by rpi_clock.py.
* In Python 3 versions earlier than 3.5, this exception occurs:
AttributeError: type object 'Path' has no attribute 'home'.
I modified rpi_clock.py to support the older versions as well as the current version.
2019-03-07 v4.1
* Validate temperature units configuration parameter (TEMP_UNITS). Accept entries in any case but the values in lower case must be metric, imperial, or kelvin.
* Display temperature units to the right of current value: C (Metric/Celsius), F (Imperial/Farenheit), or K (Kelvin).
2019-03-06 v4
* Locked out of the Weather Underground! Huh?! To make a long story short, they are being absorbed by a more commercial
enterprise, The Weather Channel ("TWC" on USA cable and many app-oriented boxes).
* Migrated from the Weather Underground to Open Weather Maps.
* All of the operational files in subdirectory `bin` are affected.
2019-01-23 v3
* Pulled out configuration parameters from rpi_clock.py into an external file, rpi_clock.cfg.
* Updated preparation_notes.txt to indicate the changed last line to $HOME/.profile (needs 1 parameter).
* Explicitly close and set to None the url_handle when a network error is encountered.
* Reorganised code.
* Introduced an optional windowed execution.
* Introduced an operator Quit to parent shell function.
2018-05-07 v2
On Linux, if you've recently had a system update, the pi user might see a zenity dialog that covers up the RPi Clock display.
Instructions for modifying the user pi .profile has been added to rpi_clock/docs/preparation_notes.txt so that
any such zenity dialogs are automatically signaled to close.
2018-01-01 v1
Initial version