forked from bartekplus/presage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4881 lines (3489 loc) · 183 KB
/
ChangeLog
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2016-11-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/*: update Windows installer to package 64-bit
Notepad++ presage plugin, fix packaging to work with latest MSYS2
update.
2016-11-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/**: merged latest Notepad++ plugintemplate
sources in NppPresage plugin to enable support for 32-bit and
64-bit presage notepad++ plugin builds.
* src/lib/core/charsets.h: remove narrowing conversion from 'int'
to 'char' error.
2015-11-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/libpresage-1.def, bindings/c/presage_c_demo.c,
src/lib/libpresage.map, src/lib/presage.cpp, src/lib/presage.h:
expose the filtered predict() method in the C API.
2015-09-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/libpresage.map, src/lib/presage.cpp, src/lib/presage.h,
bindings/csharp/presage.net/IPresage.cs,
bindings/csharp/presage.net/Presage.cs,
bindings/csharp/presage_csharp_demo/presage_csharp_demo.cs,
bindings/csharp/presage_wcf_service/IPresageService.cs,
bindings/csharp/presage_wcf_service/PresageService.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.resx:
add version() to API to retrieve presage release version.
2015-09-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template
src/lib/core/defaultProfile.cpp
src/lib/predictors/dbconnector/databaseConnector.cpp
src/lib/predictors/dbconnector/databaseConnector.h
src/lib/predictors/smoothedNgramPredictor.cpp
src/lib/predictors/smoothedNgramPredictor.h
test/lib/predictors/dbconnector/databaseConnectorTest.cpp
test/lib/predictors/dbconnector/databaseConnectorTest.h
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.cpp
test/lib/predictors/newSmoothedNgramPredictorTest.cpp
test/lib/predictors/smoothedNgramPredictorTest.cpp
test/lib/predictors/smoothedNgramPredictorTest.h: add
COUNT_THRESHOLD configuration variable to smoothed n-gram
predictor to select suggestions that have a count greater than or
equal the value specified.
2015-09-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/INSTALL_MSYS2_dev_env.txt: update info on how to setup MSYS2
developer environment. MSYS2 is now the preferred Windows dev env.
* packaging/windows/presage_installer.nsi
packaging/windows/win-buildpackage.sh: update packaging for the
MSYS2 Windows dev env.
* bindings/csharp/deploy.cmd: added script to ease Windows
building and packaging.
2015-05-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/INSTALL_MSYS2_dev_env.txt,
packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: switch to MSYS2 for Windows
builds.
2015-04-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* main.cpp, mainwindow.cpp, mainwindow.h, qprompter.pro: add
support for Qt5
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.5.5
release, targetting MSYS2 resolves GTK/Scintilla issue.
2015-04-20 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.9.1 release.
* bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs:
handle exception on service host open.
2015-04-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: add silent installation
mode to installer, terminate processes prior to uninstalling, add
flag to skip notepad++ plugin installation when /NoNpp flag is
passed to installer, install Notepad++ presage plugin only in
32-bit installer.
* apps/gtk/gprompter/scintilla/*: Revert to scintilla 3.50
release.
2015-03-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_wcf_service/App.config,
bindings/csharp/presage_wcf_service/IPresageService.cs,
bindings/csharp/presage_wcf_service/PresageService.cs,
bindings/csharp/presage_wcf_service/presage_wcf_service.csproj,
bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_console_host/presage_wcf_service_console_host.csproj,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs:
Add service versioning to namespaces and endpoint addresses to
safeguard against future changes.
2015-03-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.54
release.
2015-03-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_wcf_service_system_tray/AboutForm.cs:
add license and close buttons to about dialog, add action to open
link URL.
2015-03-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: remove missed files in
uninstaller.
* bindings/csharp/presage_wcf_service_system_tray/AboutForm.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.cs,
bindings/csharp/presage_wcf_service_system_tray/AboutForm.resx,
bindings/csharp/presage_wcf_service_system_tray/Makefile.am,
bindings/csharp/presage_wcf_service_system_tray/PresageSystemTray.cs,
bindings/csharp/presage_wcf_service_system_tray/presage_wcf_service_system_tray.csproj:
add about dialog.
2015-03-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/README,
packaging/windows/presage_installer.nsi: add WCF service tray app
to Windows installer.
2015-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs:
check for existance of behaviour prior to setting it.
* configure.ac, bindings/csharp/Makefile.am,
bindings/csharp/presage_wcf_service_system_tray/Makefile.am:
package systray app in tarball.
2015-02-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage.net.sln,
bindings/csharp/presage_wcf_service/App.config,
bindings/csharp/presage_wcf_service/presage_wcf_service.csproj,
bindings/csharp/presage_wcf_service_console_host/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/App.config,
bindings/csharp/presage_wcf_service_system_tray/ClassDiagram1.cd,
bindings/csharp/presage_wcf_service_system_tray/PresageSystemTray.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/PresageWCFHostForm.cs,
bindings/csharp/presage_wcf_service_system_tray/Program.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/AssemblyInfo.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/Resources.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/Resources.resx,
bindings/csharp/presage_wcf_service_system_tray/Properties/Settings.Designer.cs,
bindings/csharp/presage_wcf_service_system_tray/Properties/Settings.settings,
bindings/csharp/presage_wcf_service_system_tray/Resources/presage.ico,
bindings/csharp/presage_wcf_service_system_tray/Resources/presage.png,
bindings/csharp/presage_wcf_service_system_tray/Resources/presage.svg,
bindings/csharp/presage_wcf_service_system_tray/presage_wcf_service_system_tray.csproj,
resources/presage.ico: Add initial implementation of presage WCF
service system tray hosting application, change mex Metadata
Exchance endpoint to use named pipe binding.
2015-02-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/presage_csharp_demo/presage_csharp_demo.csproj,
bindings/csharp/presage_wcf_service/App.config,
bindings/csharp/presage_wcf_service/PresageService.cs,
bindings/csharp/presage_wcf_service_console_host/Program.cs: use
NetNamedPipeBinding, "a secure, reliable, optimized binding that
is suitable for on-machine communication between WCF
applications".
2015-02-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi,
packaging/windows/README: add WCF service binaries to installer.
2015-02-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp/*: first stab at implementing a WCF presage
service.
* src/lib/presage.cpp: fix problem with programmatically setting
new configuration variable.
2015-02-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/predictorRegistry.h,
src/lib/core/predictorRegistry.cpp: implement incremental
activation and deactivation of predictors.
* src/lib/core/predictorActivator.h: clean up stale code.
2015-02-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.cpp: enhance learning
performance.
2015-02-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: fix crash when prediction empty.
* src/lib/predictors/dbconnector/sqliteDatabaseConnector.cpp: add
support for in-memory SQLite databases :memory:
2015-02-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/csharp: renamed from bindings/c# to appease autoconf.
* bindings/Makefile.am, bindings/csharp/Makefile.am,
bindings/csharp/presage.net/Makefile.am,
bindings/csharp/presage_csharp_demo/Makefile.am, configure.ac:
distribute .NET binding code in tarball.
2015-02-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp,
apps/qt/qprompter/mainwindow.cpp, apps/qt/qprompter/mainwindow.h:
restrict the size of the context range returned by presage
callback object in the demo applications.
2015-02-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: fix issue with local
installation directory string replacement in Windows installer
NSIS script.
2015-02-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
resources/profiles/presage.xml.template: implemented
ONLINE_LEARNING configuration variable to control when online
machine learning is enabled.
* test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/selectorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.h,
test/lib/predictors/recencyPredictorTest.cpp: updated tests and
added online and offline learning test for smoothed n-gram
predictor.
2015-02-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c#/presage.net/Presage.cs,
bindings/c#/presage_csharp_demo/presage_csharp_demo.cs: add
offline learn method to presage .NET binding.
2015-02-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.cpp, src/lib/presage.h, src/lib/libpresage.map,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/core/context_tracker/contextTracker.h,
src/lib/predictors/smoothedNgramPredictor.cpp,
src/lib/predictors/smoothedNgramPredictor.h: add offline learn
method to presage C++ API.
* bindings/c/libpresage-1.def, bindings/c/presage_c_demo.c: add
offline learn method to presage C API.
2015-02-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c#/presage_csharp_demo/presage_csharp_demo.cs: make
demo a bit more verbose.
2015-02-03 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/presage.i: change to C-style comments in interface file
to fix problem with latest SWIG.
* bindings/python/Makefile.am: fix build issue on Windows 64-bit.
* doc/INSTALL_MinGW32_MSYS_dev_env.txt,
doc/INSTALL_MinGW64_MSYS_dev_env.txt, apps/qt/qprompter/README:
update READMEs.
2014-10-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: fix Windows uninstaller
so that all installed files are removed during uninstallation.
2014-09-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/Doxyfile.in, doc/Makefile.am: stop building LaTeX
documentation and only install documentation artefacts.
2014-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.9: released.
* packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: Improve Windows packaging
scripts to handle 32-bit and 64-bit builds.
2014-09-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.9 release.
2014-09-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/prompter/prompter.py: Fix key press event handling
with modifiers enabled using latest wxPython.
2014-09-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pyprompter.desktop,
apps/gtk/gprompter/gprompter.desktop: Add categories.
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.50
release.
2014-08-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am,
test/lib/core/context_tracker/Makefile.am,
test/lib/predictors/dbconnector/Makefile.am,
test/lib/core/context_tracker/contextTrackerTestRunner.cpp: fix
problems caused by subdir-objects automake option.
2014-02-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: bumped version up to 0.9~beta
* bindings/c#/presage.net/Presage.cs,
bindings/c#/presage.net/Properties/AssemblyInfo.cs,
bindings/c#/presage_csharp_demo/presage_csharp_demo.cs: fix
presage.net assembly name and version, add ability to find presage
installation using the Windows registry to presage.net assembly.
2014-01-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp: fix bug in Notepad++
presage plugin help menu item.
* apps/notepad++/NppPresage.vcxproj: upgrade presage Notepad++
plugin project to VS2013.
* packaging/windows/README,
packaging/windows/presage_installer.nsi,
packaging/windows/win-buildpackage.sh: add C# artefacts to Windows
installer.
2014-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* c#/presage_csharp*: rename presage_csharp project to presage.net
2014-01-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* c#/presage_csharp/Presage.cs: add error checking and presage
exception in c#.
2014-01-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* c#/README.txt, c#/presage_csharp.sln,
c#/presage_csharp/Presage.cs,
c#/presage_csharp/Properties/AssemblyInfo.cs,
c#/presage_csharp/presage_csharp.csproj,
c#/presage_csharp_demo/App.config,
c#/presage_csharp_demo/presage_csharp_demo.cs,
c#/presage_csharp_demo/presage_csharp_demo.csproj: add
experimental C# binding.
2014-01-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/presage.h: rearrange C++ and C APIs layout in header.
* doc/INSTALL_MinGW32_MSYS_dev_env.txt: add steps to generate
Python import library on Windows.
2013-11-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/INSTALL_MinGW64_MSYS_dev_env.txt,
doc/INSTALL_MinGW32_MSYS_dev_env.txt: add QT and QScintilla steps.
2013-11-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/c/README_Visual_Studio.txt: update instructions to
build and link in 64-bit mode.
* doc/INSTALL_MinGW32_MSYS_dev_env.txt,
doc/INSTALL_MinGW64_MSYS_dev_env.txt: add build and install
instructions to build with mingw-w64 mingw-builds toolchain.
2013-11-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, bindings/python/Makefile.am: fix build
issue in mingw-w64 mingw-buils toolchain.
2013-11-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz: update documentation and
development pages.
2013-08-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp,
src/lib/core/prediction.cpp, src/lib/core/predictorRegistry.cpp,
src/lib/predictors/ARPAPredictor.cpp,
src/lib/predictors/dejavuPredictor.cpp: fix issues uncovered with
cppcheck and reported by Hugh Sasse.
2013-08-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: remove D-BUS files from
Windows packaging.
2013-08-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.8.9 release.
2013-08-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/Scintilla.h: update to latest 3.3.4.
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp: set custom order in user
completion list.
2013-08-14 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/Makefile.am: fix automake dependency for dbus service.
* configure.ac: fix python autoconf checks.
2013-08-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/README, packaging/windows/ReplaceInFile.nsh,
packaging/windows/presage_installer.nsi: enhanced Windows
installer install and uninstall code to specify each file and
directory to install/uninstall (except lib/site-packages).
2013-07-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.34
release.
2013-07-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am: add missing -lm link dependency.
* test/integration/Makefile.am: fix test environment bug.
* test/lib/predictors/newSmoothedNgramPredictorTest.cpp: fix test
bug occuring when running parallel make check.
2013-07-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.33
release.
2013-04-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.31
release.
2013-02-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp: Include build timestamp in
about box.
* packaging/windows/presage_installer.nsi: Windows installer
detects and offers choice to uninstall previous presage
installation.
* bindings/c/presage_c_demo.c: Use correct printf specifier for
size_t.
2013-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: Update to latest scintilla 3.24
release.
2013-01-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: Use AM_PROG_AR if automake understands it.
* apps/notepad++/PluginDefinition.cpp: Fix Notepad++ plugin learn
mode toggle.
2013-01-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: Use scintilla UTF8 codepage
encoding on all platforms (Win32 GTK included).
* src/lib/core/predictorRegistry.cpp: Make log message (slightly)
more informative.
2012-12-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/PluginDefinition.cpp: fix build failure with
Visual Studio 2010, remove debugging MessageBox() calls.
* src/lib/core/profileManager.cpp: fix build failure with g++ 4.6.
2012-12-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp,
apps/qt/qprompter/mainwindow.cpp, src/lib/core/profileManager.cpp,
src/lib/presage.cpp: fix issues uncovered with cppcheck and
reported by Hugh Sasse.
2012-11-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.23
release.
2012-07-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/notepad++/Makefile.am, apps/Makefile.am, configure.ac:
package notepad++ plugin sources.
2012-06-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/Makefile.am, configure.ac: link in gmodule
libs in gprompter.
2012-06-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: Fix pyprompter checks.
2012-06-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, configure.ac: Add checks for python
modules required for pyprompter.
* test/lib/core/context_tracker/contextChangeDetectorTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/predictorRegistryTest.cpp,
test/lib/core/profileManagerTest.cpp,
test/lib/core/profileTest.cpp, test/lib/core/selectorTest.cpp,
test/lib/core/tokenizer/crossCheckTokenizerTest.cpp,
test/lib/core/tokenizer/reverseTokenizerTest.cpp,
test/lib/core/variableTest.cpp,
test/lib/predictors/abbreviationExpansionPredictorTest.cpp,
test/lib/predictors/dbconnector/databaseConnectorTest.cpp,
test/lib/predictors/dbconnector/databaseConnectorTest.h,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.cpp,
test/lib/predictors/smoothedNgramPredictorTest.cpp: Make check
target quiet.
2012-06-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/Makefile.am, configure.ac: Add checks for python
modules required for pypresagemate.
2012-06-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.8: released.
2012-06-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c: Fix compilation errors triggered
by hardening flags.
* test/lib/core/profileManagerTest.cpp,
test/lib/predictors/smoothedNgramPredictorTest.cpp: Fix
compilation error with GCC 4.7.
2012-06-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac, NEWS, website/presage_database_dump.sql.gz:
preparing for 0.8.8 release.
2012-06-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextChangeDetector.cpp,
src/lib/core/context_tracker/contextTracker.*,
src/lib/predictors/smoothedNgramPredictor.cpp,
test/lib/predictors/predictorsTestMockObjects.cpp: Fix bug in
smoothed n-gram predictor where spurious text was learned when
change detected that entire past stream needed to be learnt, such
as when triggered by entering backspace in gprompter. Tokens from
past stream were incorrectly used to fill n-gram to be learned.
* apps/gtk/gprompter/gprompter.c: removed debugging printouts.
2012-06-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* bindings/python/Makefile.am, bindigs/python/setup.py.in: Pass
CPPFLAGS, CXXFLAGS, LDFLAGS to python extension build/link lines.
* configure.ac, INSTALL: autoupdated autoconf files.
* test/lib/common/Makefile.am: Build common test library for make
check target, not make all target.
* src/lib/core/defaultProfile.cpp,
resources/profiles/presage.xml.template: Fix spurious compilation
warning.
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.20
release.
2012-05-24 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template,
src/lib/core/defaultProfile.cpp: add comment to describe use of
$HOME variable in configuration.
2012-05-22 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* configure.ac: rewrote python dbus module autoconf check to use
python import statement.
2012-05-21 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/prompter/prompter.py: removed learning presage menu
toggle to accomodate user specific learning smoothed n-gram
predictor changes.
2012-05-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.cpp: Improve smoothed
n-gram predictor learning performance.
* src/lib/core/profileManager.*: hange user-specific default
presage.xml location to ~/.presage/
2012-05-17 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/utility.*,
src/lib/predictors/dbconnector/databaseConnector.cpp,
src/tools/Makefile.am,
test/lib/predictors/dbconnector/Makefile.am: Add ability to create
directory containing language model if it doesn't exist.
* src/lib/core/utility.cpp: Fix build issue on MinGW/MSYS.
2012-05-16 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/dbconnector/databaseConnector.cpp: Add
support for multiple vars in configuration. Add support for
special ${HOME} var, it expands to both content of HOME
environment variable or USERPROFILE if HOME is empty.
2012-05-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profile/presage.xml.template,
src/lib/core/context_tracker/contextChangeDetector.*,
src/lib/core/context_tracker/contextTracker.*,
src/lib/core/defaultProfile.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
test/lib/core/context_tracker/contextChangeDetectorTest.cpp,
test/lib/core/context_tracker/contextTrackerTest.cpp,
test/lib/core/selectorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.cpp: Add
Presage.ContextTracker.LOWERCASE_MODE configuration variable
2012-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/context_tracker/contextChangeDetector.cpp,
src/lib/core/context_tracker/contextTracker.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
test/lib/core/context_tracker/contextChangeDetectorTest.*,
test/lib/predictors/smoothedNgramPredictor.cpp, TODO: Fix bug that
occurs when learning is enabled and spurious work is learnt. Bug
was discovered in gprompter and occurred when learning is enabled
and backspace is entered.
2012-05-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* TODO: Add TODO items, description of bug to be fixed.
* apps/gtk/gprompter/gprompter.c: tracing printouts.
2012-05-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/dbconnector/databaseConnector.cpp,
src/lib/predictors/dbconnector/databaseConnector.h,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.cpp,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.cpp:
create language model database if it does not exist; initialise an
empty database of specified cardinality.
2012-04-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.*,
src/lib/predictors/dbconnector/databaseConnector.*,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.*,
src/tools/text2ngram.cpp,
test/lib/predictors/dbconnector/databaseConnectorTest.*,
test/lib/predictors/dbconnector/sqliteDatabaseConnectorTest.*,
test/lib/predictors/newSmoothedNgramPredictorTest.*,
test/lib/predictors/smoothedNgramPredictorTest.*: Add n-gram
cardinality and read/write mode parameters to database connector.
2012-04-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/smoothedNgramPredictor.*: Refactor n-gram
cardinality.
* resources/profiles/presage.xml.template,
src/lib/predictors/dbconnector/databaseConnector.*,
src/lib/predictors/dbconnector/sqliteDatabaseConnector.*: Add user
specific learning smoothed ngram predictor. User specific smoothed
ngram predictor uses a user-specific language model stored in the
user's home directory. Learning mode is enabled.
2012-04-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/dejavuPredictor.cpp,
test/lib/predictors/dejavuPredictorTest.cpp: add filter support to
dejavu predictor.
2012-04-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* resources/profiles/presage.xml.template,
src/lib/core/predictorRegistry.cpp,
src/lib/predictors/dictionaryPredictor.cpp,
src/lib/predictors/dictionaryPredictor.h: add support for filters
to dictionary predictor.
2012-04-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/predictors/abbreviationExpansionPredictor.cpp,
src/lib/predictors/abbreviationExpansionPredictor.h,
src/lib/predictors/predictor.cpp, src/lib/predictors/predictor.h,
src/lib/predictors/recencyPredictor.cpp,
src/lib/predictors/recencyPredictor.h,
test/lib/predictors/recencyPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.h : add support for
filters to predictors.
* src/lib/presage.h: fixed comments.
2012-04-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/core/combiner.cpp: cleaned up combiner filter base class
implementation.
2012-04-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test\lib\predictors\dbconnector\sqliteDatabaseConnectorTest.cpp:
close database.dump file before attempting to unlink from
filesystem (failed on MinGW/MSYS).
2012-04-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/lib/tinyxml/*: upgraded to TinyXML 2.6.2.
* test\lib\predictors\dbconnector\sqliteDatabaseConnectorTest.cpp:
fixed test failure on MinGW/MSYS.
2012-03-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test/integration/integration.sh,
test/lib/core/predictorRegistryTest.cpp,
test/lib/predictors/dejavuPredictorTest.h,
test/lib/predictors/recencyPredictorTest.cpp,
test/lib/predictors/abbreviationExpansionPredictorTest.cpp,
test/lib/predictors/recencyPredictorTest.h,
test/lib/predictors/smoothedNgramPredictorTest.cpp,
test/lib/predictors/dejavuPredictorTest.cpp,
test/lib/predictors/newSmoothedNgramPredictorTest.cpp,
src/lib/core/defaultProfile.cpp,
src/lib/core/predictorRegistry.cpp, src/lib/core/defaultProfile.h,
src/lib/predictors/dejavuPredictor.h,
src/lib/predictors/ARPAPredictor.cpp,
src/lib/predictors/predictor.h,
src/lib/predictors/recencyPredictor.cpp,
src/lib/predictors/ARPAPredictor.h,
src/lib/predictors/abbreviationExpansionPredictor.cpp,
src/lib/predictors/dummyPredictor.cpp,
src/lib/predictors/recencyPredictor.h,
src/lib/predictors/abbreviationExpansionPredictor.h,
src/lib/predictors/dummyPredictor.h,
src/lib/predictors/dictionaryPredictor.cpp,
src/lib/predictors/smoothedNgramPredictor.cpp,
src/lib/predictors/dictionaryPredictor.h,
src/lib/predictors/smoothedNgramPredictor.h,
src/lib/predictors/dejavuPredictor.cpp,
src/lib/predictors/predictor.cpp,
resources/profiles/presage.xml.template: multiple instances of the
same predictor class can now be instantiated and enabled at
runtime through configuration.
Presage.PredictorRegistry.PREDICTORS controls which predictors are
enabled. Each predictor instance is defined as a child of
Presage.Predictors and has it own configuration. For example, the
additional flexibility allows one to enable several instances of a
SmoothedNgram predictors, each instance pointing at a different
language model.
2012-03-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.04
release.
2012-03-09 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src/tools/Makefile.am: fixed build issue following libsimulator
relocation.
2012-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\lib\core\profileManager.cpp: fixed bug in accessing presage
registry key.
2012-03-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* test\lib\simulator, test\lib\simulator\Makefile.am,
test\lib\Makefile.am, src\tools\simulator,
src\tools\simulator\simulator.cpp,
src\tools\simulator\simulator.h, src\tools\simulator\Makefile.am,
src\tools\Makefile.am, src\lib\simulator\simulator.cpp,
src\lib\simulator\simulator.h, src\lib\simulator\Makefile.am,
src\lib\Makefile.am, configure.ac: cleaned up and moved simulator
code.
2012-02-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\lib\presage.cpp, src\lib\core\predictorActivator.h,
src\lib\core\predictorRegistry.cpp, src\lib\core\variable.cpp,
src\lib\core\pluginManager.h, src\lib\core\predictorActivator.cpp,
src\lib\core\selector.cpp, src\lib\core\Makefile.am,
src\lib\core\pluginManager.cpp,
src\lib\predictors\ARPAPredictor.cpp,
src\lib\predictors\predictor.h: cleaned up sources.
2012-02-23 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* src\libcore\profileManager.cpp: fixed HKEY leak.
2012-02-19 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PresageUplink.cpp, apps\notepad++\PresageUplink.h:
reindenting, changes to plugin unloading logic.
2012-02-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\PluginDefinition.cpp, apps\notepad++\README:
added build instructions and additional debug messages.
2012-02-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\notepad++\NppPresage.cpp,
apps\notepad++\PluginDefinition.cpp,
apps\notepad++\PresageUplink.cpp: fixes to Notepad++ plugin.
2012-02-10 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\win-buildpackage.sh,
packaging\windows\presage_installer.nsi, packaging\windows\README:
package qprompter in Windows installer.
2012-01-29 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.03
release.
2012-01-25 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\presage_installer.nsi: unchecked final page
checkboxes and added show getting started checkbox option.
* configure.ac, doc\Makefile.am: convert text files to DOS line
endings when installing on MINGW.
2012-01-11 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging\windows\win-buildpackage.sh, packaging\windows\README:
updated windows packaging scripts.
2011-12-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.02
release.
2011-12-27 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* doc/INSTALL_MinGW_MSYS_dev_env.txt: updated build instructions.
2011-11-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.01
release.
2011-11-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 3.00
release.
2011-11-08 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/qt/qprompter/mainwindow.*: added undo, redo, selectall
items to edit menu.
2011-11-07 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/qt/qprompter/mainwindow.*: added and implemented view menu.
2011-11-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/qt/qprompter/mainwindow.*: fixed qprompter build issue on
slightly older qscintilla on Linux.
2011-11-05 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\qt\qprompter\mainwindow.*: show prediction on whenever
scintilla ui is updated, added autopunctuation feature.
2011-11-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\qt\qprompter\mainwindow.h,
apps\qt\qprompter\mainwindow.cpp: handle function key
autocompletion selection.
2011-11-02 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps\qt\qprompter\application.qrc: added resource file.
* apps\qt\qprompter\mainwindow.cpp: added initial function key to
autocompletion prediction.
2011-10-31 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* qt, qt/qprompter, qt/qprompter/application.pro,
qt/qprompter/images, qt/qprompter/images/copy.png,
qt/qprompter/images/cut.png, qt/qprompter/images/new.png,
qt/qprompter/images/open.png, qt/qprompter/images/paste.png,
qt/qprompter/images/save.png, qt/qprompter/main.cpp,
qt/qprompter/mainwindow.cpp, qt/qprompter/mainwindow.h: initial
commit of qprompter.
2011-10-26 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/gprompter.c,
apps/notepad++/PluginDefinition.cpp: fixed memory allocation bug.
2011-10-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* presage-0.8.7: released.
2011-10-12 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/dbus/Makefile.am, apps/dbus/setup.py.in, configure.ac:
added setup.py for dbus service.
2011-10-06 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/python/pyprompter.xpm, apps/python/Makefile.am: added
(ugly) xpm icon for pyprompter.
* apps/gtk/gprompter/gprompter.xpm,
apps/gtk/gprompter/Makefile.am: added (ugly) xpm icon for
gprompter.
2011-09-28 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.7 release.
* packaging/debian/presage/trunk/debian/changelog: updated release
information.
2011-09-18 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 2.29
release.
2011-09-15 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/debian/presage/trunk/debian/gprompter.install,
packaging/debian/presage/trunk/debian/pyprompter.install: install
pixmaps.
* apps/python/Makefile.am, apps/gtk/gprompter/Makefile.am: added
icons for pyprompter and gprompter apps.
2011-09-13 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>
* packaging/windows/presage_installer.nsi: added welcome page and
finish page to installer.