-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathChangeLog.old
More file actions
1892 lines (1360 loc) · 73.8 KB
/
ChangeLog.old
File metadata and controls
1892 lines (1360 loc) · 73.8 KB
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
Sat, 19 Feb 2005 14:34:55 -0800 Evan Martin <martine@danga.com>
* configure.in, preview.c: Allow GtkHtml 3.6.
* journalstore_sqlite.c: Drop hour, minute from db (using timestamp).
Make get_entry get all entry fields.
* offline.c: localtime->gmtime fix.
Fri, 18 Feb 2005 09:13:18 -0800 Evan Martin <martine@danga.com>
* util-gtk.c, friends.c, jam.c, tools.c, util.h: Use GTK 2.4
file selector.
* thanks.h: Update.
Tue, 08 Feb 2005 23:28:16 -0800 Evan Martin <martine@danga.com>
* journalstore: Change finding interfaces to not return an
unused timestamps.
* journalstore_sqlite: Add time_t timestamps to schema to
support sequential scanning.
* journalstore_xml: Use GMT and not local time **breaks backwards
compatibility on journal store***.
Tue, 01 Feb 2005 16:15:03 -0800 Evan Martin <martine@danga.com>
* journalstore_sqlite.c: Add time_t timestamp to database.
Some more stabs at making date browsing work.
Sun, 30 Jan 2005 14:56:54 -0800 Evan Martin <martine@danga.com>
* configure.in, ja.po: Japanese translation.
* configure.in: Fix curl detection.
Sat, 29 Jan 2005 18:05:01 -0800 Evan Martin <martine@danga.com>
* acinclude.m4: Fix quoting.
* journalstore*, sync.c: search -> scan. {begin,end}_group ->
put_group.
* journalstore_sqlite.c: schema stores anum and broken-down time.
Some new stubs allow the GUI to build (but not work).
* sync.c: put_entry in a loop -> put_entries takes an array.
Mon, 03 Jan 2005 01:15:04 -0800 Evan Martin <martine@danga.com>
* 4.4.1.
Sun, 02 Jan 2005 23:09:05 -0800 Evan Martin <martine@danga.com>
* journalstore.h, journalstore_xml.c, cmdline.c: rename
journal_store_new to _open.
* journalstore.h, journalstore.c, sync.c: Move lastsync management
to journal store.
* configure.in, acinclude.m4, Makefile.am, journalstore.c,
journalstore_xml.c, journalstore_sqlite.c: Conditionally use sqlite3
for journal storage.
* journalstore.h, journalstore_xml.c, journalstore_sqlite.c: Rename
flush to begin_group and end_group to allow sqlite transactions.
Wed, 22 Dec 2004 10:18:58 -0800 Evan Martin <martine@danga.com>
* 4.5 development begins.
* acinclude.m4: Fix warnings with newer autoconfs.
* autogen.sh: Allow newer automake.
* checkfriends.c, jamdoc.c: Make --without-gtk work again.
* cmdline.c: regex.h portability fix. Add a const for the compiler.
* cmdline.c, gen.pl, opts.yml: Add a "user add" subcommand.
Thu, 22 Jul 2004 00:28:51 +0300 Gaal Yahas <gaal@forum2.org>
* checkfriends-gtk.c: make deleting the floating indicator not crash
logjam: <http://www.livejournal.com/community/logjam/91103.html>.
Wed, 21 Jul 2004 23:57:53 +0300 Gaal Yahas <gaal@forum2.org>
Patches from Debian BTS:
* data/logjam.desktop.in: fix icon placement in menus (Caitrin
Torres, Todd Troxell).
* jamview.c, settings.c: dynamic Refresh Music button (Ari).
* pollcreator.c: fix combo-checkbox confusion (Ari).
Mon, 28 Jun 2004 07:36:46 +0300 Gaal Yahas <gaal@forum2.org>
* network-libxml.c: supress warning.
* he.po: fix misplaced newline.
Sun, 27 Jun 2004 20:58:55 +0300 Gaal Yahas <gaal@forum2.org>
* he.po: translation updates.
Wed, 7 Apr 2004 11:18:33 -0700 Evan Martin <martine@danga.com>
* link.c: Don't xml-escape selected text on magic expansion.
Thu, 1 Apr 2004 11:40:44 -0800 Evan Martin <martine@danga.com>
* offline.c: Desensitize buttons that don't make any sense.
Thu, 1 Apr 2004 11:25:45 -0800 Evan Martin <martine@danga.com>
* poll-questions.c: Fix text poll questions (Kir).
Thu, 1 Apr 2004 11:24:08 -0800 Evan Martin <martine@danga.com>
* pollcreator, settings, music, util: Drop use of Q_().
It's useful to know, but in this case disambiguating with
None/Nobody as Kir suggested makes more sense.
Wed, 31 Mar 2004 10:26:28 -0800 Evan Martin <martine@danga.com>
* network.c: Update old-style network interface (still used by
sync) to actually use the right URL.
Wed, 31 Mar 2004 10:13:53 -0800 Evan Martin <martine@danga.com>
* datesel.[ch]: Add "backdated" option.
* jamview.c: Forward doc backdated to datesel.
Tue, 30 Mar 2004 20:19:48 -0800 Evan Martin <martine@danga.com>
* link.c: Warning fixes.
Tue, 30 Mar 2004 19:47:24 -0800 Evan Martin <martine@danga.com>
The visible metas when you hit "new" should only be the ones you
explicitly turned on; if you edit an old entry (which shows the date),
then hit "new", you shouldn't be stuck with the date showing.
This is how it was supposed to work in the first place.
* menu.c: Remove some hacks.
* jamview.h: Add _emit_conf function to allow menu to sync with view
even when view is created first.
* jamview.c: Make _load_conf reset all the metas to the
user-configured state, then _load_doc show all the metas that are
needed to show the doc. And some other cleanups.
Tue, 30 Mar 2004 19:00:25 -0800 Evan Martin <martine@danga.com>
* jamdoc.c: Initialize with default security.
(Debian bug #239153)
Tue, 30 Mar 2004 18:27:25 -0800 Evan Martin <martine@danga.com>
* history_recent.c: Properly load earlier entries.
(Debian bug #239152)
Fri, 19 Mar 2004 11:39:41 -0800 Evan Martin <martine@danga.com>
* music.c: Support non-UTF-8 locales. (Kir)
Wed, 3 Mar 2004 11:41:22 -0800 Evan Martin <martine@danga.com>
* offline.c: Warning fixes.
* spawn.c: MozillaFirebird -> firefox. Reorder options.
Tue, 2 Mar 2004 11:06:41 -0800 Evan Martin <martine@danga.com>
* imagelink.c: Use images from clipboard.
* menu.c: Image hotkey.
Tue, 2 Mar 2004 10:57:51 -0800 Evan Martin <martine@danga.com>
* imagelink.c, network-libxml.c: Better error handling.
Mon, 1 Mar 2004 17:09:11 -0800 Evan Martin <martine@danga.com>
* usejournal, userlabel, jam.c, menu.c: Make the user label
clickable and have the same functionality as the "use journal" menu.
It's easy now that everything's signalized!
Mon, 1 Mar 2004 16:17:00 -0800 Evan Martin <martine@danga.com>
* util-gtk.c, account.h: Warning fixes.
Mon, 23 Feb 2004 16:10:06 -0800 Kir Kolyshkin <kir@sacred.ru>
* Makefile.am, POTFILES.in, get_cmd_out.[ch]: Functions to run some
external program and return its output.
* tools.c, menu.c, jamdoc: Insert command output tool.
Sat, 21 Feb 2004 19:05:39 +0200 Gaal Yahas <gaal@forum2.org>
Magic links. When invoking the link creation dialog, if
the X clipboard and current entry selection text together
have enough information to create a link, inject one directly
without going to the GUI.
* src/link.c: magic link
* src/util-gtk.h, src/util.h: support for limited-time blocking
clipboard requests.
Sat, 21 Feb 2004 17:19:02 +0200 Gaal Yahas <gaal@forum2.org>
* src/offline.c: Copy current entry URL to clipboard
* docs/TODO: update
* src/network-gtk.c: cleanup
Thu, 19 Feb 2004 16:53:35 -0800 Evan Martin <martine@danga.com>
* login.c: Pop up "logging in" box over "log in now?" dialog.
Don't try logging in with empty accounts.
* jamview.c: Update security view when adding (Debian bug
#233722).
* util-gtk.c: Restore window position when showing (Debian bug
#233725).
Tue, 17 Feb 2004 22:15:05 +0200 Gaal Yahas <gaal@forum2.org>
* docs/TODO: update (this is from a previous commit really).
* src/offline.c: add link from previewed entry to online page
* protocol/liblivejournal/livejournal/entry.{c,h}: add some
accessors
Wed, 18 Feb 2004 17:52:52 -0800 Evan Martin <martine@danga.com>
* Makefile.am, menu.c: Include "insert image" dialog.
* network-curl.c, network-libxml.c: When post is NULL, use GET.
Don't assume LJ interface URLs.
* network-libxml.c: Better error reporting.
* network.c: Verbs use LJ interface URLs.
* network.h, network-gtk.c: GET function.
* imagelink.c: New file.
Sun, 15 Feb 2004 15:11:30 -0800 Evan Martin <martine@danga.com>
* util.h, util-gtk.c: JamReorderable is a list and the set of
list-managing buttons (add, edit, remove, up, down).
* poll-questions.c, poll.h: New files. Poll structures.
* pollcreator.c: Redesigned.
Sun, 15 Feb 2004 17:04:09 -0800 Evan Martin <martine@danga.com>
* 4.3.1.
Tue, 10 Feb 2004 21:29:42 -0800 Evan Martin <martine@danga.com>
* jamview.c: Don't pop up the custom security dialog when loading
a past entry with custom security.
Tue, 10 Feb 2004 21:10:58 -0800 Evan Martin <martine@danga.com>
* manager.c: Warning fix.
* jam.c: When saving, don't clobber files that already exist
(http://www.livejournal.com/community/logjam/
73898.html?thread=478890)
Mon, 9 Feb 2004 12:39:57 -0800 Evan Martin <martine@danga.com>
* po/de.po: Updated.
Sat, 07 Feb 2004 11:47:24 +0200 Gaal Yahas <gaal@forum2.org>
Bring back checkfriends feature. Whether to check friends is
now a per-account setting with a master on/off switch.
TODO: move various properties to their appropriate levels (e.g.
server cf interval is a per-server value, currently it's in
global conf)
* checkfriends(?:-gtk)?.{c,h}, jam.c: revive checkfriends
* serveruser.h, manager.c,livejournal.c: per-user cf toggle
* network.{c,h}: silent context
* tie.{c,h}: allow wrapping semantics
Fri, 6 Feb 2004 12:54:47 -0800 Evan Martin <martine@danga.com>
Bring back --without-gtk.
* Makefile.am: Only use network-fork on unix+gtk.
* checkfriends.c: More #ifdefs.
Thu, 5 Feb 2004 10:22:06 -0800 Evan Martin <martine@danga.com>
http://www.livejournal.com/community/logjam/
73089.html?thread=462721#t462721
* jamdoc: Add jam_doc_set_moodid.
* jamview: Include moodid on posts. (Untested)
Wed, 4 Feb 2004 22:17:44 -0800 Evan Martin <martine@danga.com>
* manager.c: Redo some hacks to make the friends filter
work again.
Wed, 4 Feb 2004 22:07:10 -0800 Evan Martin <martine@danga.com>
* util.c, util.h: New function that lets us disambiguate
the multiple senses of words like "None" in translations.
* pollcreator.c, settings.c, music.c: Use Q_().
Wed, 4 Feb 2004 17:37:04 -0800 Evan Martin <martine@danga.com>
Reported by Kir Kolyshkin:
* friendgroups.c: Localize strings.
* about.c: Copyright 2004.
Mon, 2 Feb 2004 17:15:45 -0800 Evan Martin <martine@danga.com>
* friendgroupedit.c: Don't crash when making new friend groups.
Mon, 2 Feb 2004 15:33:56 -0800 Evan Martin <martine@danga.com>
* music.c: logjam-xmms-client, not -helper.
Mon, 02 Feb 2004 00:20:49 -0800 Evan Martin <martine@danga.com>
* jamview.c: Don't show "Refresh" button in music bar if we can't
detect music.
Sun, 01 Feb 2004 14:36:11 -0800 Evan Martin <martine@danga.com>
* datesel.c: Warning fix.
* jam_xml.c: Wrong function.
* conf.h, music.[ch], spawn.[ch]: New generic interface for lists of
commands.
* music.c: Also include "rhythmbox" command. Doesn't quite work
right yet: if rb isn't running, everything breaks.
* conf_xml.c: Conf loading now much simpler.
* init.c: Use new interface.
* settings.c: Use new interface for music and web browser; merge
the two under "Programs" on the "System" tab.
Fri, 30 Jan 2004 20:00:03 +0200 Gaal Yahas <gaal@forum2.org>
* src/jamview.c: bring back music detection
Fri, 30 Jan 2004 01:01:00 -0800 Evan Martin <martine@danga.com>
* jam.c: More horizontal space in the bottom bar. Use stock button
for submit / save.
* jam.h: Kill a few unused fields.
* icons.c: Register a stock id for the submit button.
Now we need an icon. :)
* userlabel.c: "using", not "posting in": you can do stuff other than
posting when you switch journals.
Fri, 30 Jan 2004 00:40:04 -0800 Evan Martin <martine@danga.com>
* datesel.c: Properly remove timeout when destroyed.
* jamdoc.c: Emit a "usejournal changed" notification. Make the
"account changed" notification use the GTK notification system.
* jam.c, jamview.c, menu.c: Use new signals instead of calling into
each other. Much cleaner!
Thu, 29 Jan 2004 23:51:18 -0800 Evan Martin <martine@danga.com>
* all around: ifdef out all the Blogger bits. We're putting it off
for this release.
Fri, 16 Jan 2004 10:47:46 -0800 Evan Martin <martine@danga.com>
* jam.c: When they click "save", don't run "delete". :(
Tue, 13 Jan 2004 18:50:02 -0800 Evan Martin <martine@danga.com>
* friends.c, journalstore.c, remote.c: Use g_strerror.
(Shawn Wagner)
Tue, 13 Jan 2004 18:44:01 -0800 Evan Martin <martine@danga.com>
Allow date editing.
* jamdoc: Expose document date.
* jamview: Use datesel.
* menu.c: Add "Entry Date" to view menu.
Mon, 12 Jan 2004 11:19:40 -0800 Evan Martin <martine@danga.com>
Allow conditional use of Curl.
* configure.ac: Tricky autoconf'ing. Be sure to bitch if they
get libxml by default.
* network-fork.c, network-libxml.c: Pull out forking code from
curl code and generalize to work with libxml too.
Sun, 11 Jan 2004 12:06:59 -0800 Evan Martin <martine@danga.com>
Bring back checkfriends.
* Makefile.am, checkfriends-gtk.c: Split GTK code into its own file.
* checkfriends.c: Use signals instead of an explicit child list.
* checkfriends-gtk.c: Kill generic "cfindicator" idea; the different
indicators are now too dissimilar. Kill in-window indicator.
* images/, icons.c, network-throbber: Use fancy throbber instead of
cfriends icons to indicate new entries.
* init.c, menu.c, jam: Use new functions.
* settings.c: Allow checkfriends to pop up just the checkfriends
settings.
* util: Clean out some unused functions.
Sat, 10 Jan 2004 15:36:22 -0800 Evan Martin <martine@danga.com>
* cmdline.c: Minor cmdline doc cleanups.
* all over: Make --without-gtk build work again.
Sat, 10 Jan 2004 14:38:15 -0800 Evan Martin <martine@danga.com>
* remote.c: Don't warn on startup if they don't have a a ~/.logjam.
Fri, 09 Jan 2004 09:56:47 -0800 Evan Martin <martine@danga.com>
* checkfriends.c: Use liblivejournal.
* network-curl.c: Minor cleanup.
* network.c: Remove net_verb_run_cli (not used anymore).
Thu, 08 Jan 2004 22:01:13 -0800 Evan Martin <martine@danga.com>
* images/Makefile.am: Store large images RLE-encoded.
* icons.c: Undo Windows hack (RLE-encoded image data should be small
enough).
Thu, 08 Jan 2004 17:15:26 -0800 Evan Martin <martine@danga.com>
* network*: Remove NetRequest/NetResult. (!!!)
* network*: Remove net_request_rub/net_verb_run. (!!!)
* network.[ch]: Merge network-ctx into main file.
* friendedit.c, friendgroupedit.c, friendgroups.c, friends.c:
Use new liblivejournal APIs.
* friendgroups.c: Make sure friend group removal succeeds before
updating friends list.
* checkfriends.c, history.c: Comment out and XXX out code that doesn't
run anyway.
Thu, 8 Jan 2004 10:38:41 -0800 Evan Martin <martine@danga.com>
* Makefile.am, network.h, network-ctx.[ch]: Network "contexts".
* account.h, host.c, blogger.c, livejournal.c: Use NetContexts
instead of GtkWindows.
* cmdline.c: Use commadline-provided password. Use NetContexts.
* jam.c, friends.c, login.c: Run NetContexts instead of LJVerbs.
* network-curl.c, jamview.c: Small warning fix.
* network-gtk.c: Implement NetContextGtk, add titles to windows,
hide progress bar until it's useful.
* sync.c: Use window titles.
Mon, 05 Jan 2004 21:09:06 -0800 Evan Martin <martine@danga.com>
* cmdline.[ch], init.c: Load cmdline into a doc directly
and move Cmdline structures into cmdline.c, cutting out a huge pile
of code.
* cmdline.c: Resurrect the "post immediately" command.
* jamdoc.h: Minor cleanups.
* jamdoc.c, init.c, jam.[ch]: Make doc start without an account,
and make others use doc's account.
* cmdline.c, opts.yml: Add --file option back in.
* remote.[ch]: Add const.
Sun, 04 Jan 2004 11:38:23 -0800 Evan Martin <martine@danga.com>
* console.c, cmdline.c: Fix off-by-one errors in console
code.
* cmdline.c: Fix print.
Sun, 04 Jan 2004 11:14:34 -0800 Evan Martin <martine@danga.com>
* console.c, console.h: Undo hack to use console gui code
to run commandline console commands.
* menu.c: Use newly-fixed up console.h.
* cmdline.c: Use liblivejournal's LJConsoleCommand to run
commandline-based console commands. (Effect: we no longer
pop up windows when commandline-based console commands fail.)
Sun, 04 Jan 2004 10:59:17 -0800 Evan Martin <martine@danga.com>
* network, network-internal.h, network-curl.c: Put errors
into a NET_ERROR domain, and add a new NET_ERROR_PROTOCOL
level of errors. This way, we can detect whether our
challenge request failed totally (network down?) or just
at the protocol level (server doesn't support challenges)
and adjust accordingly (a subsequent request in the first
case will fail in the same way...).
Sun, 04 Jan 2004 01:08:33 -0800 Evan Martin <martine@danga.com>
* console.c: Use liblivejournal's "consolecommand" verb.
Sun, 04 Jan 2004 00:21:35 -0800 Evan Martin <martine@danga.com>
* menu.c: Properly reset usejournal when we revert to the
main account.
Sat, 03 Jan 2004 23:58:25 -0800 Evan Martin <martine@danga.com>
* network.c: If the server supports the c0 auth type (or
we don't know what it supports), try challenge-response
login. Yay no more replayable passwords! (But we're not fully
there yet: need to eliminate all calls to net_request_new()).
Sat, 03 Jan 2004 14:21:34 -0800 Evan Martin <martine@danga.com>
* cmdline.c, gen.pl: Add --list-subcommands switch to all
commands with subcommands, in the hopes that it will
simplify tab completion. (Also, merging the subcommand
strings in separately makes it easier to translate.)
Thu, 01 Jan 2004 15:20:28 -0800 Evan Martin <martine@danga.com>
* init.c, cmdline.[ch], gen.pl: Move cmdline.h to cmdline_data.h,
move commandline parsing out of init.c and into cmdline.[ch].
Thu, 01 Jan 2004 13:40:26 -0800 Evan Martin <martine@danga.com>
* init.c, configure.ac: Grep cleanups, autoconf support for
conditionally using regex.h.
Tue, 30 Dec 2003 17:04:59 -0800 Evan Martin <martine@danga.com>
Win32 fixes.
* build/win32/*: lotsa changes to paths.
* icons.c: Gross hack because the blogger image overwhelms
the compiler.
* init.c: Conditionally use regex.h.
* journalstore.c: Pull in winsock for htonl. Signedness fixes.
* livejournal.c, blogger.c: Function taking no arguments is
(void), not ().
* network-win32.c: Update to new internal API. FIXME: doesn't
pass along headers yet.
Tue, 30 Dec 2003 19:03:43 -0800 Evan Martin <martine@danga.com>
* init.c: Rearrange to make logjam -h fit within 25 lines.
* init.c: Nuke "save user"/"save password" options. They were
never implemented and were confusing anyway.
* init.c: Console arg-parsing bugfix.
* gen/opts.yml, init.c: Make all offline commands a subcommand of
"offline".
Tue, 30 Dec 2003 00:07:52 -0800 Evan Martin <martine@danga.com>
* init.c: Minor changes to use new liblivejournal API.
Mon, 29 Dec 2003 23:13:33 -0800 Evan Martin <martine@danga.com>
* util/xmmsclient/Makefile.am: Remove redundant CFLAGS.
Mon, 29 Dec 2003 23:05:34 -0800 Evan Martin <martine@danga.com>
* preview.c: Show protected/private icons in preview.
Fri, 26 Dec 2003 15:55:21 -0800 Evan Martin <martine@danga.com>
* journalstore.c: Split version information into index and
xml version information.
Fri, 26 Dec 2003 15:50:35 -0800 Evan Martin <martine@danga.com>
* init.c, opts.yml, gen.pl: Allow -h/--help for all commands.
Pull shared getopt-style parsing into a hairy macro.
Clean up help.
Wed, 24 Dec 2003 12:28:34 -0800 Evan Martin <martine@danga.com>
* friends.c: If you add yourself, it's a two-way connection.
If you remove yourself, the two-way connection is gone.
Wed, 24 Dec 2003 12:07:19 -0800 Evan Martin <martine@danga.com>
* security, jamview.c: Bring back custom security.
Wed, 24 Dec 2003 11:45:49 -0800 Evan Martin <martine@danga.com>
* journalstore.c: Make get_count return the actual entry count,
which is what some code was assuming and other code wasn't.
* index.c: Use right function.
Tue, 23 Dec 2003 20:56:46 -0800 Evan Martin <martine@danga.com>
* journalstore.c: Store index in network byte order.
Swap endianness around if we find an old index with the wrong order.
Sun, 21 Dec 2003 12:19:30 -0800 Evan Martin <martine@danga.com>
* journalstore.c: Break out of search if we have more than
a thousand matches. (Really, we need to search in a separate
process and report results. This is a quick fix to prevent
the UI from blocking too long.)
Sun, 21 Dec 2003 11:36:58 -0800 Evan Martin <martine@danga.com>
(Forgot to update the changelog for the last few commits.)
* userlabel, jam.c: Show "current user" label and include host.
Wed, 10 Dec 2003 22:23:54 -0800 Evan Martin <martine@danga.com>
* everything: Massive reorganization of structure. Yay.
* jamview.c: Don't store empty subject (cascaded effect:
HTML preview doesn't show horizontal line when no subject).
Tue, 9 Dec 2003 14:15:21 -0800 Evan Martin <martine@danga.com>
* menu.c: C99 fix.
* link.c, login.c: Handle Blogger properly.
* account, host.c, blogger.c, livejournal.c: Allow
deleting entries (LJ only so far).
Tue, 09 Dec 2003 21:45:43 +0200 Gaal Yahas <gaal@forum2.org>
* gen/opts.yml, console.c, init.c: CLI console
* console.h: added file.
Mon, 08 Dec 2003 22:47:14 +0200 Gaal Yahas <gaal@forum2.org>
* init.c: cleanup
* jam.c, jamview.c settings.c: fix spellcheck
Sun, 07 Dec 2003 21:35:30 +0200 Gaal Yahas <gaal@forum2.org>
New command line autogeneration system: we now use YAML
<http://yaml.org/> to hold all information about command line
arguments (including help); the code can nest arbitrarily deep
subcommands.
* gen/gen.pl, gen/cmdline.h.tmpl, gen/opts.yml: new files
* gen/gen.pl, gen/cmdlineopts.h.tmpl, gen/helptext.h.tmpl,
gen/opts.dat: removed files
* gen/regen.sh, gen/logjam.tmpl-doc.pl, src/init.c: changed to
new system
Sun, 07 Dec 2003 11:03:26 -0800 Evan Martin <martine@danga.com>
* po: Include logjam.desktop in translations.
* jamview.c, jamdoc: Make comments and preformatted options work.
* jamview.c: Hiding a meta widget resets its value.
* init.c: Make "cat -m" output work as a real mbox mailbox.
* manager.c, blogger: Allow users to add blogger hosts.
* menu.c: Disable View and Journal menus when using a Blogger account.
* all over: Tracking down doc signals to prevent multiple emissions.
Associated rearrangement of code (migrate jam.c stuff to jamview.c).
Still not there yet. (Eliminated title_changed signal on docs.)
* configure.ac, Makefile.am: Cleanups. Don't include debug flags as
defaults (use "./configure CFLAGS='-Wall -g'" when debugging).
* offline.c: Show a lame text preview when we don't have HTML widgets.
Thu, 04 Dec 2003 21:37:17 -0800 Evan Martin <martine@danga.com>
* blogger/Makefile.am: pull gxr into build.
* gen/opts.dat: Add reindex, grep, and cat to command-line help.
* init.c: Clean up cat.
* offline.c: Autosize subject-column width in entry browser.
* init.c, sync.[ch]: "summary" command summarizes export status.
* checkfriends.c: Make cli-based checkfriends work again.
* configure.ac, logjam.desktop.in: Make desktop entry (show up
in GNOME/KDE/etc menu). We now depend on intltool.
* conf.h, settings.c, checkfriends.c: Make dock icon independent
of checkfriends, and make it show/hide the main window.
* history_recent.c: Include date column (when did that break?!).
* jamview.c: Load metas when we load a document.
* jamview.c, jam.c: Rearrange undo handling; much simpler now.
* jamview.c: Be sure to load security in case widget is showing,
even if the doc is public.
* friends.c: You should still be able to bring up friends window even
when you have no friends (why did nobody report this?).
* offline.c: Summarize number of matches when searching offline.
Thu, 04 Dec 2003 12:00:00 -0800 Evan Martin <martine@danga.com>
* Today sometime around noon I committed my devel branch.
So much changed, and I didn't document any of it. :\
Wed, 08 Oct 2003 18:14:59 -0700 Evan Martin <martine@danga.com>
* build/: More win32 changes (put dll and executable in
toplevel directory).
* src/: More win32 fixes (better casts, and disable threaded
network requests until I can figure out glib bug).
Tue, 07 Oct 2003 20:24:45 -0700 Evan Martin <martine@danga.com>
* build/*: Add Visual Studio projects to the build.
I'm considering moving the autogen/autoconf/etc. files
into that subdir, but I suspect that would break stuff.
* all over: Win32 fixes.
Thu, 18 Sep 2003 21:29:02 -0700 Evan Martin <martine@danga.com>
HTML tags. (<lj user="k001">, <lj user="bacek">.)
* Makefile.am, html_markup.[ch]: Code to insert/wrap selection
in HTML tags.
* menu.c: Menu items.
In the future, I'd like hitting the hotkey a second time to cancel
out the tag. But putting this in now will make me get there faster.
Thu, 18 Sep 2003 20:41:36 -0700 Evan Martin <martine@danga.com>
* init.c: Bring back remote commands (running LogJam twice should
pop up one window:
http://www.livejournal.com/community/logjam_dev/8397.html).
Thu, 18 Sep 2003 20:30:05 -0700 Evan Martin <martine@danga.com>
* userlabel.[ch], jam.c: Look like lj user tags to indicate current
user. I'm not sure if I like it.
* init.c: Bring back user editor.
* network.h, sync.c: Finish sync progress, including GTK. It seems
to work? LiveJournal.com is too slow for me to be able to test on a
"real" dataset.
Sun, 14 Sep 2003 16:50:50 -0700 Evan Martin <martine@danga.com>
Over the summer, LogJam development was primarily hosted in a
Subversion repository. Development moved rapidly and I didn't
record any ChangeLogs. We're now moving back to CVS, so I will
again try to keep up the ChangeLog.
Major differences from the released version:
- new "liblivejournal" forces API cleanliness;
- CVS-style command line interface;
- sync code rewritten and is much faster (that was a bug) and
cleaner (that part isn't complete yet).
Fri, 22 Aug 2003 13:45:06 +0300 Gaal Yahas <gaal@forum2.org>
* src/init.c: CLI 'grep' command; 'latest' argument for cat
* src/journalstore.[ch]: 'latest' support
Thu, 21 Aug 2003 22:51:53 +0300 Gaal Yahas <gaal@forum2.org>
More on CLI: 'cat'.
* src/init.c: CLI 'cat' command
* liblivejournal/entry.[ch]: lj_entry_to_rfc822 [string]
* gen/gen/cmdlineopts.h.tmpl: prepend '+' to short getopt
TODO:
- gen(.pl)eralize command options, arbitrarily deep.
- xml cat
Wed, 20 Aug 2003 09:10:33 +0300 Gaal Yahas <gaal@forum2.org>
* checkfriends.c: fix checkfriends with mask
Fri, 18 Jul 2003 07:13:14 -0700 Gaal Yahas <gaal@forum2.org>
* logjam.dsp, Makefile.msc, init.c: Leftover Windows fixes.
Tue, 15 Jul 2003 14:25:36 +0300 Gaal Yahas <gaal@forum2.org>
Generalizations in code to prepare for multiple logins and
multiple documents. Weaken couplings of nearly everything
to conf_cur_user() and conf_cur_server().
* account.[ch]: JamAccount type
* jamview.[ch]: JamView type
* `grep 'JamAccount\|JamView' *[ch]`: refactor to use new types
This patch temporarily breaks usejournal ("post as"). This will
be fixed soon.
Most files: facilitate precompiling headers for when gcc uses them
All files: Great Renaming. The application now uses the Jam prefix
for its types and functions.
* logjam.dsp: MSDEV project file on Win32 (ijon)
* init.c: getpass for win32 (gaal, following note from ijon)
Mon, 14 Jul 2003 07:58:40 -0700 Evan Martin <martine@danga.com>
Primarily: usejournal logic is now in menu. Hopefully, this
will make Gaal's job (multiple logins) easier.
* conf_xml.c: Better error reporting.
* livejournal-entry.c: Simpler (pseudo-)RFC822 parser.
* lj.[ch], usejournal.[ch], menu.[ch]: Usability test
(watching Whitaker use LogJam) shows that usejournal should
be in the menu.
* manager.c: Default size wider.
* util.c: More efficient recursive mkdir.
Wed, 09 Jul 2003 18:44:58 -0700 Evan Martin <martine@danga.com>
* manager.c: Make string more amenable to translations.
* preview.c: Set a default size.
* TODO: Updates!
* po/POTFILES.in: Update for new files.
Wed, 09 Jul 2003 19:59:01 +0300 Gaal Yahas <gaal@forum2.org>
* spawn.c: use single quotes on urls; add browser to list
Wed, 09 Jul 2003 17:41:14 -0700 Evan Martin <martine@danga.com>
* logjam-xmms-client.c: Properly default to XMMS session 0.
Wed, 09 Jul 2003 17:33:33 -0700 Evan Martin <martine@danga.com>
* livejournal-types.c: Wrong function.
* login.c: Rearrangement to improve look and code style.
Mon, 07 Jul 2003 19:43:43 -0700 Evan Martin <martine@danga.com>
* many files: Require the user to choose a user to run as, and only
login when they pick "update information".
* login.c, livejournal.h, livejournal-types.c, menu.c:
Web menus now load into an intermediate structure.
* login.[ch], lj.c: Because of above, login no longer needs to
interact with LJWins directly.
* conf_xml.c: Load/save webmenus.
* lj.c: Spelling fixes; when submitting a draft, offer to delete the
local copy.
Sat, 05 Jul 2003 20:34:09 +0300 Gaal Yahas <gaal@forum2.org>
* init.c, livejournal-entry.c: bring back -e (edit entry with
user editor)
Mon, 30 Jun 2003 22:16:42 -0700 Evan Martin <martine@cs.washington.edu>
* livejournal-entry.c: Properly load comments type from XML.
Fri, 27 Jun 2003 15:23:51 -0700 Evan Martin <martine@cs.washington.edu>
* network-throbber.c: Properly init SVG throbber (less flicker).
* network-gtk.c: After reverting a previous reversion and changing
it a bit beyond that, the window is now a proper dialog, but it
still behaves like an OS X sheet on nice window managers while not
killing weird ones like ion.
Thu, 26 Jun 2003 14:02:04 -0700 Evan Martin <martine@cs.washington.edu>
* checkfriends.c: Wrong function. (Gaal)
* journalstore.c: Set version when creating index, otherwise
index will never load! (John Patterson <john@ninecats.org>).
* conf_xml.c, livejournal.h, login.c, manager.c, network-curl.c:
Remove "fast server" option, as it's no longer supported.
Thu, 26 Jun 2003 01:14:06 -0700 Evan Martin <martine@cs.washington.edu>
* conf_xml.c: Remove extra g_print.
* preview.c: Don't show date when entry hasn't been dated yet;
don't add line at the top unless the entry has a date or subject.
* init.c: We have to let GTK look at the command line before we
look at it, so we don't error out on GTK command-line options.
Also, better control flow.
Wed, 25 Jun 2003 22:20:41 -0700 Evan Martin <martine@cs.washington.edu>
* images/inline-images.rb: Generate C header of raw image data.
* images/inline.h: Generated file.
* images/Makefile.am: Don't install lj user icons; include inline.h.
* src/preview.c: Use inlined images instead of external files.
Wed, 25 Jun 2003 19:05:44 -0700 Evan Martin <martine@cs.washington.edu>
* history_recent.c: Fix crash.
* preview.c: Show more information in preview.
* util.c: Remove unnecessary cast.
Wed, 25 Jun 2003 18:57:33 -0700 Evan Martin <martine@cs.washington.edu>
* src/Makefile.am: Truly ugly hack to make things work with
automake 1.5.
Wed, 25 Jun 2003 16:17:37 -0700 Evan Martin <martine@cs.washington.edu>
Lots of console work. Stripped executable is now 60k!
* Makefile.am: Don't build images on a console-only build.
* configure.ac, getopt*: Instead of autoconf'ing around the lack
of getopt_long, include glibc's version. (This is pretty standard.)
* gen/*: Add some new command-line options, allow grouping options,
and combine the getopt code into one file.
* configure.ac: Remove _OBJ cruft left over from before we
switched automake.
* src/Makefile.am: Draft store and doc are now GTK-only.
* conf.h, lj.c: Remove no-longer-used options.
* livejournal-entry.[ch]: Combine some functions.
* draftstore.c, logjam-doc.c: Use those new functions.
* init.c: Better handling of options and of console mode. Shorter
functions make code easier to read. (Majority of changes are here.)
* network-curl.c, network-gtk.c: Fix dangling pointer.
* sync.c: Return success when there's nothing to sync.
Tue, 24 Jun 2003 16:19:00 -0700 Evan Martin <martine@cs.washington.edu>
We now support building --without-gtk. From the command line you
should be able to post, checkfriends, and sync the offline journal.
This also forces better model-view separation.
* a whole pile of files: Add WITH_GTK conditionals.
* util-gtk.c, network-gtk.c: New files with the GTK-specific code.
Tue, 24 Jun 2003 14:50:16 -0700 Evan Martin <martine@cs.washington.edu>
We no longer build with XMMS, instead building a helper executable
that links with XMMS. This makes the logjam binary simpler.
This will also allow binary packagers to make a "logjam-xmms" package.
* configure.ac, src/Makefile.am: Depend on automake >= 1.5,
allowing the Makefile to be much cleaner. Optionally build
logjam-xmms-client when using XMMS.
* init.c, meta.c: Music-related simplifications.
* music.c: Use logjam-xmms-client instead of linking hackery.
* music.h, settings.c: Different error reporting for new system.
Sat, 21 Jun 2003 15:29:58 -0700 Evan Martin <martine@cs.washington.edu>
* livejournal.h, livejournal-entry.c, util.[ch]:
Let UTF-8 errors be reported back up to the user.
* sync.c: Show all warnings at the end of the sync.
* history.c: Use error-reporting function.
* menu.c, protocol.c: Warning fixes.
* network.c: Revert window trickery back to a simple dialog.
It was broken in too many ways.
Sat, 21 Jun 2003 09:51:54 -0700 Evan Martin <martine@cs.washington.edu>
* livejournal-entry.c: Properly save custom allowmask.
* journalstore.c: Bump version number again.
Thu, 19 Jun 2003 18:47:26 -0700 Evan Martin <martine@cs.washington.edu>
* gen/opts.dat: New command-line option to sync journal from
command line. Useful on machines without X or from cronjobs.
* init.c: Parse new option.
* sync.h: Let sync operation return a boolean, so our exit
code in CLI mode can indicate whether the sync succeeded.
* sync.c: Vary feedback depending on whether we're in CLI mode.
Sun, 15 Jun 2003 14:29:19 -0700 Evan Martin <martine@cs.washington.edu>
* LogJam 4.2.1.
Sun, 15 Jun 2003 10:34:48 -0700 Evan Martin <martine@cs.washington.edu>
* network.h, protocol.[ch]: Rearrangements. Network results
now allocate a single string, instead of one string for each key
and value, so it's important for everyone else to use the proper
API for freeing requests and results as they now behave differently.
* friendedit.c, friends.c, history.c: Use proper network API.
* network.c: Renamed function.
* journalstore.c: Preallocate at least one spot in index for version.
* util.[ch]: Remove a few unneeded functions.
Sun, 15 Jun 2003 00:01:58 -0700 Evan Martin <martine@cs.washington.edu>
* journalstore.[ch], sync.c: If we change the journal store format (as
we just did), detect it and invalidate the synced copy.
* offline.c: Cleaner code avoids as many weird hacks.
Fri, 13 Jun 2003 17:38:17 -0700 Gaal Yahas <gaal@forum2.org>
* he.po: Hebrew updates.
Fri, 13 Jun 2003 11:18:09 -0700 Evan Martin <martine@cs.washington.edu>
* network.c: Make progress window a popup (fixes fighting with the
window manager with WMs like ion). (Please send me reports if this
works with/breaks on your WM.)
Sun, 08 Jun 2003 18:51:12 -0700 Evan Martin <martine@cs.washington.edu>
* he.po: Update from Gaal.
Sun, 08 Jun 2003 18:29:03 -0700 Evan Martin <martine@cs.washington.edu>
* spawn.c: phoenix is now "MozillaFirebird".
Sun, 08 Jun 2003 12:39:10 -0700 Evan Martin <martine@cs.washington.edu>
* lj.c: Add undo/redo to right-click context menu (Ari).
* livejournal-entry.c: Load/save all entry fields when
loading/saving; this means we properly remember preformat but
you need to rexport your journal.
* remote.c: Remove unneeded header (fixes FreeBSD 4.8 build).
Fri, 06 Jun 2003 15:02:03 -0700 Evan Martin <martine@cs.washington.edu>
* logjam-doc.[ch], tools.c: Let user specify encoding when inserting
files. Better error reporting, too.
Wed, 04 Jun 2003 19:50:42 -0700 Evan Martin <martine@cs.washington.edu>
* 4.2.0 release.
Wed, 04 Jun 2003 19:46:03 -0700 Evan Martin <martine@cs.washington.edu>
* de.po: German update (Frank Hofmann).
* ru_RU.po: Russian update (Grigory Bakunov).
* journalstore.c: If removing an entry empties a day, remove the day.
* livejournal-entry.c: Silence invalid moodid warning.
* offline.c: Left-align "search" label and make enter run the search.
* sync.c: Fix progress math and stop console output.
* util.c: Set DST flag in time conversions. (I found a mysterious
off-by-one-hour bug in my export; I hope this fixes it, because I
can't reproduce it... timezone bugs would put me off by more than
an hour.)
Sun, 01 Jun 2003 20:42:16 -0700 Evan Martin <martine@cs.washington.edu>
* smartquotes.c: Avoid changing the entry whenever possible, so
loading an old entry doesn't immediately get flagged as modified.
Sun, 01 Jun 2003 20:14:26 -0700 Evan Martin <martine@cs.washington.edu>
* Makefile.am, smartquotes.[ch], tools.[ch], menu.c:
Smartquotes now operates as you type.
* conf.h, conf_xml.c, settings.c: Let user turn it on/off.
* logjam-doc.[ch], lj.c: Let doc know when the user changes, so
they don't accidentally save a post from the wrong journal over
a post in their current one.
Wed, 28 May 2003 13:07:14 -0700 Evan Martin <martine@cs.washington.edu>
* lj.h, menu.c: Menu updates as suggested by Gaal.
Wed, 28 May 2003 09:22:10 -0700 Evan Martin <martine@cs.washington.edu>
* de.po: Update from Frank Hofmann.
Wed, 28 May 2003 09:14:40 -0700 Evan Martin <martine@cs.washington.edu>
* conf_xml.c: Compilation without GtkSpell was broken by the
spell language patch. (George Mason)