Skip to content

Commit c65bf50

Browse files
committed
Release 1.0
1 parent 13ff4b5 commit c65bf50

4 files changed

Lines changed: 29 additions & 3 deletions

File tree

DIFF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ echo OLD=$old
3131
#set old='save45'
3232

3333
rm -f DIFFS
34-
foreach i (*.py DIFF *.bat *.txt *.md)
34+
foreach i (*.py DIFF *.bat *.txt *.md dist/*.iss)
3535
echo $i
3636
set n=`diff -w $old/$i $i | wc -l`
3737
if( !( -e $old/$i ) )then

Release_Notes.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
World Clock - by AA2IL
2+
----------------------
3+
4+
Clock app showing GMT time and Gray Line.
5+
6+
This app is written in python 3. The python script wclock.py can be run under linux or windoz 10 and 11. Stand-alone execuatables for linux and windoz 10/11 have been made using pyinstaller. Complete source code and build files are available at
7+
8+
https://github.com/aa2il/wclock
9+
10+
Windows Installer: wclock_setup.exe
11+
12+
After installation, double click the desktop shortcut or open a command prompt (cmd.exe) and execute "C:\Program Files (x86)\AA2IL\wclock.exe".
13+
14+
Known issues:
15+
16+
None
17+
18+
------------------------------------------------------------------------------
19+
20+
Revision history:
21+
22+
Version 1.0 - Jan. 2023
23+
24+
This is the first version-controlled release.

dist/wclock.iss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#define MyAppName "wclock"
55
#define MyAppVersion "1.0"
66
#define MyAppPublisher "AA2IL"
7-
#define MyAppURL "github.com/aa2il"
7+
#define MyAppURL "https://github.com/aa2il/wclock"
88
#define MyAppExeName "wclock.exe"
99

1010
[Setup]
@@ -20,6 +20,7 @@ AppSupportURL={#MyAppURL}
2020
AppUpdatesURL={#MyAppURL}
2121
DefaultDirName={autopf}\AA2IL
2222
DisableProgramGroupPage=yes
23+
InfoAfterFile=C:\Users\Joea\Python\wclock\dist\Release_Notes.txt
2324
; Uncomment the following line to run in non administrative install mode (install for current user only.)
2425
;PrivilegesRequired=lowest
2526
OutputBaseFilename=wclock_setup

windoz.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ echo.
1414
echo To compile - this takes a long time:
1515
pyinstaller --onefile wclock.py
1616
copy ..\data\50-natural-earth-1-downsampled.png dist
17+
copy Release_Notes.txt dist
1718
echo.
1819
echo To test binary:
1920
dist\wclock.exe
@@ -24,7 +25,7 @@ echo dist/wclock
2425
echo.
2526
echo ---------------------------------------------------------------------
2627
echo.
27-
echo This is deprecated but works under windoz ...
28+
echo This is deprecated (it uses basemap) but works under windoz ...
2829
echo wclock1.py
2930
echo.
3031
echo ... but this does NOT work :-(

0 commit comments

Comments
 (0)