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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
============ Version 0.1
2008-03-30 Philip Withnall <philip@tecnocode.co.uk>
* src/storage-manager.c: Fix the time limit on editing entries.
2008-03-30 Philip Withnall <philip@tecnocode.co.uk>
* src/main.c: Load the database file from the user's data directory,
rather than the build directory.
2008-03-30 Philip Withnall <philip@tecnocode.co.uk>
* NEWS:
* README: Updated documentation.
* src/interface.c: Allowed interface file to load from either package
data directory or build directory.
2008-03-30 Philip Withnall <philip@tecnocode.co.uk>
* src/links/email.c: Completely removed e-mail link type.
2008-03-30 Philip Withnall <philip@tecnocode.co.uk>
* src/main-window.c:
* src/storage-manager.c:
* src/storage-manager.h: Added some basic statistics on the about
dialogue.
2008-03-30 Philip Withnall <philip@tecnocode.co.uk>
* src/Makefile.am:
* src/link.c:
* src/links/note.c: Added "note" link type.
* data/diary.ui:
* src/main-window.c:
* src/storage-manager.c: Various small fixes and UI improvements, as
well as some improvements to the handling of empty entries.
2008-03-27 Philip Withnall <philip@tecnocode.co.uk>
* src/links/picasa.c: Removed Picasa link type --- use URIs instead.
* .bzrignore:
* src/Makefile.am:
* src/link.c:
* src/main-window.c: Made the link list more resilient to bad data.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* .bzrignore: Updated bzr ignore list.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* ChangeLog: Added ChangeLog.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* .bzrignore: Updated bzr ignore list.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* src/main-window.c: Changed all C strings to en_US and added an
en_GB translation.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* src/main.c: Fix a small leak on quit caught with Valgrind.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* configure.ac:
* src/Makefile.am: Fixed test profiling in the Makefile.
* src/interface.c:
* src/link.c:
* src/links/email.c:
* src/links/file.c:
* src/links/picasa.c:
* src/links/uri.c:
* src/main-window.c: Some comments moved to stop them showing up in
the POT file unnecessarily.
* src/storage-manager.c: Improvements to the debug code.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* src/links/file.c:
* src/links/picasa.c: Added file and picasa link types.
* configure.ac:
* data/diary.ui:
* src/Makefile.am:
* src/interface.c:
* src/link.c:
* src/main-window.c:
* src/main-window.h: A few more small UI fixes, as well as the
addition of spelling checking using GtkSpell.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* data/diary.ui:
* src/Makefile.am:
* src/add-link-dialog.c:
* src/add-link-dialog.h:
* src/interface.c:
* src/link.c:
* src/main-window.c: Fixed changing the UI in the "Add Link" dialogue
when the link type was changed.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* data/diary.ui:
* src/interface.c:
* src/link.c:
* src/main-window.c:
* src/main.h:
* src/storage-manager.c:
* src/storage-manager.h: Some more UI tweaks to make editing easier.
2008-03-23 Philip Withnall <philip@tecnocode.co.uk>
* data/diary.ui:
* src/interface.c:
* src/main-window.c:
* src/main.h: A few small UI fixes and enhancements.
2008-03-22 Philip Withnall <philip@tecnocode.co.uk>
* src/links/email.c:
* src/links/uri.c:
* data/diary.ui:
* intltool-extract.in:
* intltool-merge.in:
* intltool-update.in:
* src/Makefile.am:
* src/add-link-dialog.c:
* src/add-link-dialog.h:
* src/interface.c:
* src/link.c:
* src/link.h:
* src/main-window.c:
* src/main.h:
* src/storage-manager.c: Rewrote the link handling and it's all
working quite well now. More link types now need to be added.
2008-03-22 Philip Withnall <philip@tecnocode.co.uk>
* src/link.c:
* src/link.h:
* data/diary.ui:
* src/Makefile.am:
* src/add-link-dialog.c:
* src/interface.c:
* src/main-window.c:
* src/main.h:
* src/storage-manager.c:
* src/storage-manager.h: Lots of work on entry links, with most of a
working UI for adding dynamic and differing link types. Unfortunately,
this approach is flawed and so I'll rewrite it after this commit.
2008-03-21 Philip Withnall <philip@tecnocode.co.uk>
Initial commit with all the functionality that the Vala version had,
but written in an easier-to-use programming language.
|