forked from kvirc/KVIrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2857 lines (2443 loc) · 102 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
This is KVIrc's changelog. It tipically lists new added features and changes that modify
KVIrc's previous behaviour. For a more detailed (and up to date) log, point your browser at:
https://github.com/kvirc/KVIrc/commits/master
Update: 20141104
November 2014
[OmegaPhil]
- KVIrc Script: 'WordBreak' alignment type for the hbox, vbox and label
widgets has been renamed to 'Justify' to reflect what it actually does -
this will break any scripts using this alignment type currently (sorry)
May 2012
[egns]
- Change max dcc packet size to increase the transfer speed
April 2012
[CtrlAltCa]
- system.runcmd: added gnome-terminal to the list of terminals, added
proper handling for osx Terminal.app
- new splashy
- use fixup_bundle to create a distributable OSX bundle
March 2012
[CtrlAltCa]
- Add support for magnet and spotify urls
- Added CP949 to KviLocale
- A lot of misc OSX fixes
[pragma]
- Added Aria theme
February 2012
[CtrlAltCa]
- Dropped the KviTalPopupMenu layer, ported the involved code to QAction
January 2012
[CtrlAltCa]
- Some work on cleaning window management and activation
[dessa]
- Improved support for msvc
[HelLViS69]
- Added $file.time() function
December 2011
[CtrlAltCa]
- added $insideAlias(): a function to identify whether code was called as
/alias or $function
[pragma]
- Add a -t switch to system.runcmd so a terminal can be explicitly provided
- Allow STARTTLS to be used also without CAP support
November 2011
[Noldor]
- Improvements in class webview, cleaning of kvs classes
September 2011
[CtrlAltCa]
- Theme the background of KviSharedFilesWindow
[egns]
- Added rejoin popup entry on dead channels
August 2011
[CtrlAltCa]
- Win32 only: fixed some visual artifacts removing WS_EX_LAYERED attribute from
KviMainWindow when global transparency is not used
- Improve irc:// url handling: avoid a double connection when the url points to
an already connected server
- Added KviShortcut to better handle keyboard accellerators
- Dropped cryptopp dependency
[egns]
- Make KVIrc compile under clang
July 2011
[CtrlAltCa]
- SSL certificate fingerprint verification
- Added "force KVS mode" shortcut modifier
- Improved KviCString
- Split Initialization Vector engine to its own file and added real CBC mode to
Rijndael engine (wip)
June 2011
[egns]
- Reworked IRC URI handling using regexp and added the possibility to paste a URI
in the address bar or type a host directly without the protocol (eg: irc://)
[CtrlAltCa]
- Discriminate channels across different networks in settings
- Added case sensivity flag to $str.* functions
[Noldor]
- Improved SQL object class
May 2011
[HelLViS69]
- Added the ability to export logs to different formats (plain text, HTML, ...)
- Added $log.export() function
[egns]
- Added mediaplayer interface for Spotify
[Pragma]
- Added 16x16 and 48x48 icon sizes
[Noldor]
- Added alpha component in color options
- Added $file.diskspace(), $isBot() and $gender() functions
- Added Qt SVG support
- Ported the pseudo transparency to Qt way
[CtrlAltCa]
- Reworked toolbars (including drag'n'drop) and ported actions to Qt way
- Improved the input editor
*** Released KVIrc 4.0.4 (r5648) - 2011-03-19 ***
March 2011
[CtrlAltCa]
- Reworked Ircview tools
- Added $context.connectionStartTime and $context.lastMessageTime
- Use the OS style for treewindowlist and userlist selection
[Noldor]
- Added webview KVS class
[Pragma]
- Added a first theme and addon application interface
[egns]
- Bumped Qt requirements to 4.6
February 2011
[Pragma]
- Fixed some memory leaks :)
[Noldor]
- KVS improvements
January 2011
[Pragma]
- Added a new DNS resolver that doesn't rely on OS native implementation
- Added alternative network-specific and server-specific nicknames
[HelLViS69]
- Reworked icon stuff moving defines to enums
- Improved KDE notifier
- Killed some KviQString helpers
[Noldor]
- Ported KVS socket class to Qt API
[CtrlAltCa]
- Added mediaplayer support for Clementine
- Implemented smart logging path
- Added FiSH module
December 2010
[Pragma]
- Reorganized the whole code in subdirs, renamed files, removed very old code, ...
- Added context.clearQueue
- Added the new "autojoin this channel" feature
[CtrlAltCa]
- Added $listtimers function
- Improved ignore alias
- Improved support for some RAW events
- Reworked the text encoding menu
- Implemented 3-stage locking in popups
[HelLViS69]
- Split classes in their own files
November 2010
[Pragma]
- Tweaked the IPC code
- Reworked the undo/redo implementation
[CtrlAltCa]
- Added $window.isDocked and window.savePropertiesAsDefault, removed some hardcoded
functionality to a new GUI popup
- Added support for Vlc and Totem mediaplayer
October 2010
[HelLViS69]
- Added the default script manager: from now on you can restore the default script
choosing which parts of it to restore, without losing user personal data
- Cleaned code and added Doxygen documentation
- Moved defscript translation to core
[Pragma]
- Added $aliasBody(), $file.readBytes() functions and file.writeBytes command
[CtrlAltCa]
- Added keyboard support in userlist
- Added OnInputBarPaste event
- Added shortcuts for font {in/de}creasing and restoring original font
[Noldor]
- KVS code improvements
September 2010
[CtrlAltCa]
- Added userlist and popup modules
- Reworked logviewer and help modules
[Noldor]
- KVS code improvements
August 2010
[HelLViS69]
- Added DBus notification system
- Tweaked Update Applet to allow checking of SVN revisions
- Tweaked last read marker icon to allow scrolling back when clicked
- Added IRCop icons as gender icon
- Cleaned code and added Doxygen documentation
[CtrlAltCa]
- Added SSL backend to DCC transfer
- Added ssl-certificate related functions: $dcc.getSSLCertInfo(), $certificate(), $str.evpSign(),
$str.evpVerify()
- Implemented better parser for 005 CHANMODES and added automatic modes discovery ability
to mode widget and mode editor
- Added $chan.modeParam()
- Added line-marker shortcut
[Noldor]
- Added the trayicon KVS class
*** Released KVIrc 4.0.2 (r4744) - 2010-08-01 ***
Jun 2010
[CtrlAltCa]
- Added $escape() function
- Updated avdevice library
- Improved kvirc-script
[Pragma]
- Improved python interpreter
- Rewrited parts of the regchan module
- Added debug macros and tools
[Noldor]
- Improved object classes and KVS code
- Memory leaks fixes
[HelLViS69]
- Added Japanese translation files
*** Released KVIrc 4.0.0 (r4555) - 2010-06-29 ***
Jun 2010
[Pragma]
- Fixes for some bugs reported on trac
- Minor cleanups
May 2010
[HelLViS69]
- Rewrote the shortcut system
April 2010
[CtrlAltCa]
- added text to dcc video
- moved the "smart nick colors" functions to their own file and added the ability to expose
your current personalized nick colors to others
March 2010
[Pragma]
- Make the default script translatable again. This time in its own set of po
[Noldor]
- Improved the logview module
[Noldor and HelLViS69]
- Improvements in theme manager
[CtrlAltCa]
- Ported the old scripts to kvirc4's kvs
- added $uflags()
February 2010
[CtrlAltCa]
- Avoid the use of X11 api to get an ARGB visual; use Qt::WA_TranslucentBackground instead
- Better support for freenode's ircd-seven:
introduce a delayed queue for requests, to avoid excess floods
full support for +q (quiet ban) mode
- added support for CAP (extended capabilities)
- added support for SASL (plain and dh-blowfish methods)
- Readded the theme choice on first setup
[Noldor]
- Rewrote the aliaseditor module
- KVIrc theme manager script
- Created classeditor module
[HelLViS69]
- Readded the ability to customize CTCP version reply
January 2010
[CtrlAltCa]
- Added realtime filtering for channels list (request #60)
- Kde4 emoticon theme
[Noldor]
- Fixed installing script while aliaseditor is open
- Ported Newsticker script
- KVS improvements/cleaning
- Ported Objectsdumptree script
- Ported Twins Media Player, Twinslagbar and Twinsquotes scripts
December 2009
[CtrlAltCa]
- Support for -fvisibility=hidden compilation flag
- Switched license to GPL2 or later
[HelLViS69]
- Added function $chan.common
- Added Mozilla Songbird support
- Added ISO 8601 and system locale datetime formats configurable from options
November 2009
[CtrlAltCa]
- first shy implementation of dcc video
[Curan]
- merged the no_embedded branch to trunk
October 2009
[HelLViS69]
- Reworked the whole addon system: the new packaging handler with a simple wizard will guide
you during the addon creation process. Moreover now you need to follow a strict set of rules
to ensure the standardization of .kva (KVIrc Addon) extension
- Added $realname() function
- Removed KviTalScrollView and KviTalTextEdit classes
- Moved bytes multiples from SI to IEC standard (KiB, MiB, GiB instead of KB, MB, GB)
[CtrlAltCa]
- Finished the Python scripting support
- Modified all accelerators
- Improved url module
- Removed KviTalTreeWidget class
- More work on Phonon
- Created documentation file on keyboard shortcuts
26 August 2009
[CtrlAltCa]
- Reworked the icon window
16 August 2009
[desowin]
- Added compatibility with recent audacious versions
09 August 2009
[CtrlAltCa]
- New option: path for logfiles saving
04 August 2009
[Noldor]
- Reworked code completer
01 August 2009
[CtrlAltCa]
- Create dcc windows inside the irc context that generates them
30 July 2009
[HelLViS69]
- First testing implementation of python support: this IS NOT intended to work yet!
[CtrlAltCa]
- Added option for personal nick colors and avoid to use them for others's nicks
27 July 2009
[CtrlAltCa]
- Support for +f channel mode
25 July 2009
[CtrlAltCa]
- Replaced win32 icon with a hi-res vista/win7 capable one
19 July 2009
[CtrlAltCa]
- Changed window.setWindowTitle() syntax to match current qt implementation
[Curan]
- Merged patched from no_embedded_code branch, mostly $str.digest and libcrypto++ support
17 July 2009
[CtrlAltCa]
- Added the possibility to close a window using a middle mouse button click
12 July 2009
[CtrlAltCa]
- Deleted some old win32 install scripts and modified the others to fit kvirc4
08 July 2009
[HelLViS69]
- Removed TODO-Qt4 since the port is complete
08 July 2009
[CtrlAltCa]
- Rewritten notifier module
06 July 2009
[desowin]
- Added Qmmp mediaplayer interface
03 July 2009
[HelLViS69]
- Added classes file in default script: this is useful to create addon
01 July 2009
[HelLViS69]
- Removed KviQCString with QByteArray
25 June 2009
[HelLViS69]
- Translated man page to italian
23 June 2009
[Curan]
- Translated man page to german
21 June 2009
[CtrlAltCa]
- Added a cmake variable to manually set the revision number
02 June 2009
[Curan]
- Added system.runcmd: runs the specified command in a terminal
31 May 2009
[Kebianizao]
- Applied patch to achieve freedesktop icon naming compliance
30 May 2009
[HelLViS69]
- Applied patch for including per freedesktop mimetypes definitions, thanks to Pino Toscano
23 May 2009
[wrar]
- Added a possibility to switch to next/previous "active" window with Alt-PgUp/PgDown
08 May 2009
[mren & Kebianizao]
- Updated FSF address in all source files
25 March 2009
[CtrlAltCa]
- Added a tick to show/hide passwords in edit fields
15 March 2009
[CtrlAltCa]
- Added zsh-style nick completion
- Added tmphighlight.addChannel(), tmphighlight.removeChannel(), $tmphighlight.isChannelHighLighted()
13 March 2009
[CtrlAltCa]
- Added support for IPv6 policies handling under win32
02 March 2009
[CtrlAltCa]
- Added support for fake transparency under win32
27 February 2009
[CtrlAltCa]
- Added support for real transparency using compositing under X11
- Removed old KDE3 fake transparency
19 February 2009
[CtrlAltCa]
- Rewrote the ircview selection system
16 February 2009
[CtrlAltCa]
- Added ROT13 crypto algorithm
06 February 2009
[Noldor]
- New KVS object classes: added datetimeedit, sql tablewidget and memorybuffer
27 January 2009
[HelLViS69]
- Split locale stuff for modules and merged similar stuff
20 January 2009
[CtrlAltCa]
- Implemented customizable colors for own nick
06 January 2009
[CtrlAltCa]
- Improved compilation under MingW
29 December 2008
[CtrlAltCa]
- Replace tabulation chars with spaces in input editor when pasting
11 December 2008
[thexception]
- Reimplemented tilings in MDI windows
28 November 2008
[CtrlAltCa]
- Implemented Undo/Redo in input box
18 November 2008
[HelLViS69]
- Added Python to the parser at low level
17 November 2008
[CtrlAltCa]
- Removed old interfaces to mediaplayer based on old KDE3/DCOP
- Ported torrent module to KDE4/DBus
- New function: added $system.dbus to control DBus events
[HelLViS69]
- Initial Python support (wip)
12 November 20080
[Noldor]
- Split locale stuff for object classes
[HelLViS69]
- Split locale stuff for KVIrc target
04 November 2008
[CtrlAltCa]
- Fixed windows security bug on IRC URI handler
[thexception]
- Rewrote the entire MDI subsystem
20 October 2008
[HelLViS69]
- Implemented network profiles (wip)
02 October 2008
[CtrlAltCa]
- Split the huge monster KviIrcView
[HelLViS69]
- Added the possibility to load a part of a log into the channel/query buffer
25 September 2008
[Noldor]
- Added the code completer in the editors
13 September 2008
[HelLViS69]
- New event: added OnOutboundTraffic which triggers on all data sent to the
server
- Split the monster KviInput
08 September 2008
[desowin]
- The KviMPRISInterface should be complete (implement everything that is used by
KviMediaPlayerInterface and what's in MPRIS 1.0 spec)
03 September 2008
[HelLViS69]
- New KVS command: added 'inject'
29 August 2008
[HelLViS69 & Pragma]
- Added STARTTLS protocol
[HelLViS69]
- Added Doxygen comments for documentation creation (wip)
24 August 2008
[CtrlAltCa]
- KVIrc executable and kvilib now qt3-aware
[Alexey]
- Added support for animated smiles :) (wip)
buh :) - 16 August 2008
[KVIrc Development Team]
- Qt4 porting (wip)
- Fixed tons of bugs
- Cleaned up source code: many unused or deprecated functions have been removed,
code optimizazions and many comments have been added
- New build system: removed autotools in favour of CMake (thanks to all people
who helped us reaching this point :)
[Alexey]
- Added support for animated avatars :)
[CtrlAltCa]
- KVS: added window.highlight command and $window.highlightLevel function
- Avatar: added the ability to expose avatar in realname; others can understand
if someone has an avatar set without the need of a ctcp;
- Got Phonon working under win32
- Added UPnP support
[HelLViS69]
- Finally updated this file :)
- Improved About module
- New StatusBar applet: Update Indicator
- Improved StatusBar clock applet
- New KVS command: added 'continue'
- New KVS function: added $objects.name
- New KVS module: with serverdb you can manipulate the server list DB
- New KVS module: with proxydb you can manipulate the proxy list DB
- Added style customization to the last read marker line, its own new icon will
appear above to improve readablity :)
[Voker57]
- New audio support: Phonon (wip)
[desowin]
- New mediaplayer support: added Audacious Media Player and MPRIS backend
==================================================================================
02 May 2007 - 12 March 2008
[KVIrc Development Team]
- A lot of changes documented in the svn log. See http://svn.kvirc.de/kvirc/ for the timeline.
02 May 2007
[Alexey]
- New KVS functions: $serialize and $unserialize to deal with JSON-serialized strings
16 Apr 2007
[Noldor] (with the input from Pragma and Iakko)
- Iakko's notifier is back. New in this version:
1) QT4 compatible (on win and macos it is uses fast setWindowOpacity effect instead internal notifier blend())
2) Added Option to disable fadein/out effect useful on slow machine (need test)
3) Fixed strange crash on QT4 and some minor bug in show/hide event. (it is a trick... need to debug)
This a w.i.p. and need some test on linux.
12 Apr 2007
[TheXception]
- Added $system.call to call functions of dll/so files via kvs.
10 Apr 2007
[Alexey]
- Configurable avatar scaling on load
- Human-redable file sized on dcc transfers
12 Mar 2007
[Alexey]
- Added support for remote dns on socks5 proxy
- Added option to configure identd output mode
06 Mar 2007
[Pragma]
- Added svg and generated png icons for kvs,kvc,kvt and kva files.
Added the KDE mimetypes too.
- Some fixes for Qt4 support
26 Feb 2007
[Alexey]
- Added Export/Import feature to channel list module
25 Feb 2007
[Alexey]
- Repainted reuser list
- Added search field for mask editors
24 Feb 2007
[Noldor]
- New QT4 win compiling projects: still unusable... kvilib and kvirc compile but only in release;
you need to compile qt libraries by yourself then try to compile kvilib and kvirc (use COMPILE_USE_QT4 in kvi_wincfg.h).
Some module compile without problem... others need to be ported.
20 Feb 2007
[Alexey]
- Completely reworked ignore system
- Implemented reguser match caching
- Implemented custom color for registered user caching
[Pragma]
- Yet more Qt4 port.
- We now require Qt >= 4.2.2 for Qt4 support to work. Older 4.x versions
have bugs that can't be worked around and tend to crash kvirc
in various circumstances (including displaying tooltips).
Qt 4.2 also re-adds the possibility to add QWidget objects to popup menus.
- Yet more modules ported.
- A fix for the KVS expression operator precedence.
- A couple of general fixes that I can't remember but have been reported on
the list.
- I'm thinking about qmake support (as suggested by Matteo Catanese some time ago)
... will require some work ... what do you think about it ?
18 Feb 2007
[Alexey]
- Fixed dns resolver under win32
- Fixed minimized channels open
- Added bot detection icon (who will write docs?)
- Fixed winamp plugin problem under win32 (removed msvcr80.dll dependency)
08 Feb 2007
[Pragma]
- More Qt 4.x port.
Solved the most disturbing problems: it looks a lot better now.
- Font metric cache values can no longer be computed directly from a
widget's font. We must use the painter idea of the font instead.
This complicates caching a bit.
- Some of the QPainter functions seem to behave in a bit different way
- QFrame::drawContents() is gone... we need to reimplement paintEvent()
- The setAutoFillBackground(false) setting seems to be propagated to children
in some way (?) (as opposed to backgroundMode(NoBackground) in Qt3)
- QToolButton::drawButton() is gone, need to directly drawPixmaps instead...
- ...
Ported also the first couple of modules.
Qt 4 causes a lot of problems in porting but I'm starting to feel
like the new library is very cool :)
05 Feb 2007
[Pragma]
- The KVIrc executable now compiles and starts with Qt4. With Qt3 everythin
should work just like it did before.
No modules are ported yet so a lot of functionality is not available...
... but it CAN connect to a server :)
It tends to crash once in a while, has nasty problems with
graphics and size of certain widgets: will need some hours of debugging.
When testing the Qt4 port make sure you (re)move your old binary
modules from /usr/local/share/kvirc/3.2/. KVIrc will attempt to load
some modules from there and since they're linked to Qt3 the runtime
(loader) is likely to go nuts with two Qt versions in memory.
You have been warned... :)
30 Jan 2007
[Alexey]
- Introduced option "using identd only on connect"
29 Jan 2007
[Alexey]
- Introduced search in log files
25 Jan 2007
[Pragma]
- Yet more Qt 4.x port
- Added the torrent interface module by Alexander Stillich
21 Jan 2007
[Pragma]
- More Qt 4.x port
- More multiple identities work
- Added the first considerations about the Qt 4.x port to hackers.guide.txt
20 Jan 2007
[Pragma]
- Another quick fix (for config values not saved correctly)
- Started the implementation of multiple identities.
19 Jan 2007
[Pragma]
- Added the fixes for a couple of bugs introduced with the yesterday commit.
Thnx to Alexander Stillich for the detailed report :)
18 Jan 2007
[Pragma]
- More Qt 4.x port. kvilib now compiles cleanly with both Qt 4.x and Qt 3.x.
Don't know if it really works since kvirc compilation still bails out. We'll see :)
15 Jan 2007
[Pragma]
- Fixed the smart encoders a bit more
- Theme management: rewritten the theme save dialog as a wizard, added screenshot management.
- Really first step to Qt 4.x support: added ./configure switches to handle qt4 and
fiddled the makefile variables to contain the right include and library paths.
Still have no idea if everything works correctly since compilation bails out
very early in kvilib.
You're likely to have problems with moc since the configure script tends
to find the Qt 3.x moc instead of the correct one. Use the --with-qt4-moc option
to force the right moc compiler path.
In Qt 4.x mode the COMPILE_USE_QT4 preprocessor variable is set: use it for conditionals...
an #ifdef COMPILE_USE_QT4 is more or less equivalent to #if QT_VERSION >= 0x040000.
We will need to "abstract" several collection classes to make everything
work with both Qt 3.x and Qt 4.x. The goal is (or better would be) to hide everything in
kvilib in order to have almost no conditional compilation in the kvirc core and in the modules.
- Added a discussion about the versioning scheme in the hackers.guide.txt. Give
it a read and make/add your comments :)
12 Jan 2007
[Pragma]
- Added a set of smart encoders that send in UTF-8 instead of the child encoding
- Fixed a nasty bug in KviQString::vsprintf() that caused KVIrc to crash in response
to certain messages from server
- Added corrections and null checks in some places to make KVIrc resist to
the ircfuzz.c attack.
- Committed the spanish translation by Roberto Ciria
08 Jan 2007
[Pragma]
- More work on the themeing engine. Nearly finished.
The theme packages created since Dec 28 aren't compatible anymore.
(nobody was able to load them yet anyway :D), sorry.
- Added support for the audacious media player, thnx to Alexander Stillich <torque at pltn dot org> :)
- Added #kvirc channel links in the help menu. Please add your own localized #kvirc channel.
06 Jan 2007
[Alexey]
- Added gender info sharing tricks
28 Dec 2006
[Pragma]
- Added handling of unknown RPL_WHOIS* numeric replies by implementing a nice
"guessing" algorithm suggested by Elephantman
- Added a file with KVIrc file extension definitions. We should use the defs instead
of hardcoding extensions like .kvt, .kvs or .kvp.
- Added a fast generic packaging engine. A KVIrc package is a kind of zip archive
with an uncompressed metadata header. It can be used to distribute both themes and addons.
- First works on the theme exporting engine. Saving and packaging are now different operations.
One first saves his theme to disk, eventually edits it manually (maybe by adding a nice
splash screen or fixing some icons) and finally packages it by invoking a nice
wizard based procedure. Still need to write the installation dialog.
- Moved the whole theme management engine to a new module. It exports the
management dialogs and some utility commands. There is no reason to load
all this stuff at startup with the options dialog now.
27 Dec 2006
[Noldor]
- Alias editor module:
added the possibility to save a selection of aliases in separated files (every file will have the alias name);
fixed search function;
- Script editor module:
fixed replace command(in "replace all aliases" too);
now syntax highlighter recognize command "function" and "internal";
- Objects module:
added objects.classes, objects.variables, objects.classAllHandlers;
fixed crash in listviewitem class;
fixed little bug in multilinnedit class (function $setWordWrap);
19 Dec 2006
[Pragma]
- help.open: open only one help window unless -n is used
17 Dec 2006
[Pragma]
- Committed the new german translation file by Mihai "Ionic" Moldovan
- Switched the source control system to SVN: happy coding :)
15 Dec 2006
[Pragma]
- Yet more work on the options dialog
- Added an option for the "network name in taskbar": it's cool, but we want to choose :)
12 Dec 2006
[Alexey]
- Added option to create minimized channels
- Fixed nick selecting in userlist via ircview
- Fixed mouse hover link effect
- Network name now will be shown in the taskabr instead on server name
07 Dec 2006
[Pragma]
- Yet more work on the options dialog
- Fixed a crash related to the dialog.* module calls
28 Nov 2006
[Pragma]
- More work on the options dialogs
- Removed the duplicated kvc_ icon.
19 Nov 2006
[Alexey]
- New function - $chan.getUrl
- NickServ identity can now accept masks in nick field
16 Nov 2006
[Alexey]
- Added a simple browser-like address bar to console
- Clicking on nick in channel ircview now selects it in the userlist
- Avatar dcc send rejected if avatar size greater, then max filesize, setted in options
15 Nov 2006
[HelLViS69]
- Added a checkbox on AwayIndicator applet popup to choose to go away
on all IRC Contexts
14 Nov 2006
[Pragma]
- Moved the userlist feature options page to the theme option dialog
and split all the userlist options in tabs
- Corrected some typos around
- Reworked the output options page
- Updated the directory selection dialog under KDE
- Avatars bigger than 1024x768 make KVIrc complain when setting them
and are scaled to a saner size when they are received from others.
13 Nov 2006
[Pragma]
- Added $object.instances(): useful when implementing singletons.
- Fixed a small image dialog issue
9 Nov 2006
[Pragma]
- Added support for chunked HTTP transfer encoding as required by HTTP/1.1
- A fix for object toolbar position not saved properly
- A fix for the addon management dialog not repainted correctly
- A fix for loading of files by the means of KviFileUtils::loadFile()...
/parse is one of them and it expects an utf8 encoded file.
(read: all *.kvs files must be utf8 encoded, there is no other decent
portable way to preserve the national characters...)
8 Nov 2006
[Pragma]
- A fix for KviStr handling incorrectly multibyte strings (fixes some localization issues)
- A simple hack-in for a protocol filter.. maybe msn ?
6 Nov 2006
[Pragma]
- Various minor fixes around
- Split the core small icons libraries in separate icons.
- Moved the small icons to a subdirectory to speed up the loading (we are already at more than 280 icons...)
1 Nov 2006
[Alexey]
- Added unreal NAMESX and UHNAMES support
- Fixed $hexToAscii function
- Make DCC File Open/Save dialogs have native look on windows
- Fixes in filesystem handling. Fixed bug when KVIrc unable to load translation from non-latin folders
- Fixed actions' accelerators
- CTCP Page dialog now stays on top of desktop
- Fixed in tray minimizing/restoring on win32
Oct 2006
[Alexey]
- WIN32 compiling need QTTAG env var with "mtnc321" value for non-commercial QT 3.2.1 or "mt336" for QT 3.3.6
- New win32 tray icon
- Added snd.mute, snd.unmute, $snd.isMuted to KVS
- Moved theme selection out from theme options to avoid partyally applying of themes
- Added some lost functions to "painter" class
- Fixed ignore system
- Fixed input themeing (black on black bug)
- "play" command is now alias for snd.play
- IMPORTANT: fixed proper soket closing on win32
- Fixed crash after first run wizard on *nix
- Make possible installation on USB removable drives (WIN32). KVIrc can store settings in program folder
- Make paths in configs system-independent
23 Sep 2006
[Zerg] (committed by Alexey)
- Change dock icon size to 22x22 on KDE. Fixed style of icon
- Better in-tray minimizing
[Alexey]
- Setted tray icon background to transparent
18 Sep 2006
[Noldor]
- Added alphablend in objects.blend
- Added doc to class image and function setOpacity()
... now we can create some weird, cool effect :=D
08 Sep 2006
[Alexey]
- Fixed input line painting bug: cursor goes out of visible range
25 Aug - 07 Sep 2006
[Alexey]
- Fixed couple of bugs, include crashbug when applying a new theme
- Rewrited channel mode handling
- Rewrited setup wizard
- Corrected themeing of input
- Del key deletes selected transfer in filetransfers
- Changed trayicon bechaviour. Now it's configurable.
25 Aug 2006
[Pragma]
- uparser is definitively gone: KVS is the reality.
- cleanups all around, removing unused code etc.
- documentation cleanups
13 Aug 2006
[Pragma]
- Fixed some docs about KVS
- $boolean(), $string(), $integer() casts.
27 Jul 2006
[Alexey]
- Classic taskbar now looks fine in os-style. It uses new frames and borders
- Make classic taskbar resizable
- Make Tree taskbar header hidable. Hide it by default
- Tree taskbar change cursor to hand while moving over an item
27 Jul 2006
[Alexey]
- New -a | --all-networks switch for away and back commands to apply their action to all connected networks
- Fixed bug with long channellins scrolling; removed horisontal scrollbar
27 Jul 2006
[Alexey]
- Timestamp format now can be configured via options
- Input saves string in history when it was send via Ctrl+Return
- Fixed case sensivity mode handling in usermode popup
26 Jul 2006
[Alexey]
- Added option to include MSGTYPE info in theme packs
- Added support fot ports, greater than 65536
25 Jul 2006
[Pragma]
- Comparison operators now prefer numeric operands instead of strings.
- Added $str.printf()
[Alexey]
- Fixed bug in language seletor
- New XML load addon dialog
- Show progress bar while indexing help
24 Jul 2006
[Alexey]
- Added XML (single file) theme export/import
- Added ability to delete installed themes
22 Jul 2006
[Alexey]
- Fixed bugs in filetransfers window while operating with localized filenames
- Renamed "orphan_servers" to "Standalone Servers"
21 Jul 2006
[Alexey]
- Added e2k URL highlighting
20 Jul 2006
[Alexey]
- Implemented help topics and keywords caching
- Topic can be viewed via double-click for non-opers in read-only mode
- Fixed PageUp/PageDown in logviewer
- Fixed defsctipt. Kickban now uses mask from kvirc prefs
- Fixed avatar handling while it trnsfered via DCC, filename contains space, but replacing spaces with _ enabled
- Fixed connection to stupid win32 proxies
- Added HTTP Proxy error displaying
- New autojoin channel editor; fixed bugs in channel autojoining
19 Jul 2006
[Alexey]
- Fixed DCC non-latin filenames handling
- Fixed avatars with non-latin names handling
07 Jul 2006