summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 7b86f2f3f1261791cd747b9ba5356e13c6109a84 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
WARNINGS:

[coderanger] python-olpcgames-1.0-0.0.20070801git4ab726.noarch.rpm: Package has no changelog entry.
[coderanger] python-olpcgames-1.0-0.0.20070801git4ab726.src.rpm: Package has no changelog entry.
[dgilmore] libertas-usb8388-firmware-5.110.20.p2-1.olpc2.noarch.rpm: Package has no changelog entry.
[dgilmore] libertas-usb8388-firmware-5.110.20.p2-1.olpc2.src.rpm: Package has no changelog entry.
[ed] cartoon-builder-1.xo: Package has no changelog entry.
[ed] flipsticks-1.xo: Package has no changelog entry.
[ed] old.CartoonBuilder-1.xo: Package has no changelog entry.
[ed] old.cartoon-builder-1.xo: Package has no changelog entry.
[ed] oldest.cartoon-builder-1.xo: Package has no changelog entry.
[ed] oldest.flipsticks-1.xo: Package has no changelog entry.
[erikos] Web-72.xo: Package has no changelog entry.
[erikos] Web-73.xo: Package has no changelog entry.
[murielgodoi] Memorize-19.xo: Package has no changelog entry.
[sj] library-common-1-1.src.rpm: Package has no changelog entry.
[sj] library-core-1-1.src.rpm: Package has no changelog entry.
[uwog] libabiword-2.6.0.svn20071106-1.src.rpm: Package has no changelog entry.
[uwog] libabiword-debuginfo-2.6.0.svn20071106-1.i386.rpm: Package has no changelog entry.
[uwog] libabiword-devel-2.6.0.svn20071106-1.i386.rpm: Package has no changelog entry.
[uwog] libabiword-plugins-2.6.0.svn20071106-1.src.rpm: Package has no changelog entry.
[uwog] libabiword-plugins-debuginfo-2.6.0.svn20071106-1.i386.rpm: Package has no changelog entry.
[uwog] pyabiword-0.6.0.svn20071106-1.src.rpm: Package has no changelog entry.


CHANGES:

AcousticMeasure-1.xo

 * New activity for measuring distance between laptops

  -- Ben Schwartz <bens@alum.mit.edu> Sun, 28 Oct 2007


AcousticMeasure-2.xo

 * Speed up measurement by caching some computations

  -- Ben Schwartz <bens@alum.mit.edu> Sun, 28 Oct 2007


AcousticMeasure-3.xo

 * Localize decimal separator

  -- Ben Schwartz <bens@alum.mit.edu> Mon, 29 Oct 2007


AcousticMeasure-4.xo

 * Add keep/resume support

  -- Ben Schwartz <bens@alum.mit.edu> Mon, 29 Oct 2007


AcousticMeasure-5.xo

 * Improve graphics
 * Respond to change in Sugar's thread initiation

  -- Ben Schwartz <bens@alum.mit.edu> Fri, 2 Nov 2007


AcousticMeasure-6.xo

 * Speed up FFTs
 * Add atmosphere tab for determining the speed of sound

  -- Ben Schwartz <bens@alum.mit.edu> Mon, 12 Nov 2007


Analyze-2.xo

   * New X Server Interface

  -- Eduardo Silva <edsiper@gmail.com>  Tue, 30 Oct 2007


Analyze-3.xo

   * Fix PyXRES

  -- Eduardo Silva <edsiper@gmail.com>  Tue, 30 Oct 2007


Analyze-4.xo

   * Match window pid/name with procfs
   * Add procmem package

  -- Eduardo Silva <edsiper@gmail.com>  Fri, 2 Nov 2007


Calculate-13.xo

    * Parser converted to unicode
    * Updates to improve translation #4527
    * Mul/Div symbol i18n #4573
    * Mul/Div button fixed #3526
    * Addressed #4250
    * Added palettes to buttons in toolbar
  -- Reinier Heeres <reinier@heeres.eu> Sun, 18 Nov 2007


CartoonBuilder-1.xo

  * First version in joyride

  -- Ed Stoner <ed@whsd.net> Wed Oct 31 14:15:46 SAST 2007


Chat-28.xo

  * use NotifyAlert from sugar.graphics.alert instead of local copy
  * Use sugar.graphics.alert to show status info
  * #4320: better URL handling and display (morgs)
  * #4331: Don't crash/ignore non-Sugar buddies (morgs)

  -- Morgan Collett <morgan.collett@collabora.co.uk> Mon Oct 29 14:56:48 SAST 2007


ClockActivity-1.xo

 * Most minimal possible clock

  -- Ben Schwartz <bens@alum.mit.edu> Fri, 2 Nov 2007


ClockActivity-2.xo

 * A clock so great, it could be Swiss
 * includes color coding, improved double-buffering, auto shutoff, and more

  -- Ben Schwartz <bens@alum.mit.edu> Fri, 2 Nov 2007


ClockActivity-3.xo

 * Activity goes idle whenever it is not visible.
 * Moved all rendering into the X-server
 * only redraw date when necessary

  -- Ben Schwartz <bens@alum.mit.edu> Sat, 3 Nov 2007


Connect-19.xo

  * #4663: fix and use _get_buddy again to convert handles into buddies
    (fixes problem joining a shared game)

  -- Morgan Collett <morgan.collett@collabora.co.uk> Thu Nov  8 20:13:53 SAST 2007


Connect-20.xo

  * Fix traceback in removing buddy from buddiespanel (morgs)
  * Not intended for Update.1, just joyride

  -- Morgan Collett <morgan.collett@collabora.co.uk> Mon Nov 19 21:04:48 SAST 2007


Dictionary-1.xo

 * Added as an xo
  -- Fri Nov 02 2007 19:30  SJ Klein <sj@laptop.org>


Etoys-61.xo
etoys-2.2.1710-1.noarch.rpm
etoys-2.2.1710-1.src.rpm

  * changed activity launch to match new Sugar
  * words in tiles separated by spaces not camelCase
  * adds "distance to" and "bearing to" tiles
  * better .pot sort order
 
  -- Bert Freudenberg <bert@freudenbergs.de>  Tue, 16 Oct 2007


Etoys-62.xo
etoys-2.2.1715-1.noarch.rpm
etoys-2.2.1715-1.src.rpm

  * make same bundle work in old and new Sugar
  * add Unicode input

  -- Bert Freudenberg <bert@freudenbergs.de>  Thu, 18 Oct 2007


Etoys-63.xo
etoys-2.2.1715-2.noarch.rpm
etoys-2.2.1715-2.src.rpm

  * revised .mo directory structure

  -- Bert Freudenberg <bert@freudenbergs.de>  Thu, 18 Oct 2007


Etoys-64.xo
etoys-2.2.1737-1.noarch.rpm
etoys-2.2.1737-1.src.rpm

  * new translation framework, now .mo based
  * better support for drag and drop of sound files
  * new Sound Library tool
  * various fixes

  -- Bert Freudenberg <bert@freudenbergs.de>  Wed, 31 Oct 2007


Etoys-65.xo
etoys-2.2.1747-1.noarch.rpm
etoys-2.2.1747-1.src.rpm

  * better quick guides
  * show-source key support
  * better tool bar
  * changed cursor

  -- Bert Freudenberg <bert@freudenbergs.de>  Wed, 31 Oct 2007


Etoys-66.xo
etoys-2.2.1759-1.noarch.rpm
etoys-2.2.1759-1.src.rpm

  * share via presence service (#3758)  
  * use "data/" subdirectory of $SUGAR_ACTIVITY_ROOT (#2546)
  * fix guides, compress with --rsyncable (#4620)


Etoys-67.xo
etoys-2.2.1767-1.noarch.rpm
etoys-2.2.1767-1.src.rpm

  * make private dir group-writable for rainbow compatibility
  * larger PaintBox (#4071)
  * fix view-source key binding (#2132)
  * extend text on user input (#4557)
  * renamed Launcher to Etoys Activity

  -- Bert Freudenberg <bert@freudenbergs.de>  Thu, 08 Nov 2007


Etoys-68.xo
etoys-2.2.1771-1.noarch.rpm
etoys-2.2.1771-1.src.rpm

  * set umask to 0002 to make files group-accessible (#4770)
  * disable sandbox and key generation (#4787, #4788)
  * fix guides
  * cope with read-only source file

  -- Bert Freudenberg <bert@freudenbergs.de>  Fri, 09 Nov 2007


Etoys-69.xo
etoys-2.2.1784-1.noarch.rpm
etoys-2.2.1784-1.src.rpm

  * support newer Sugar keybindings (#4863)
  * tiny font fixed (#4943)
  * tiny arrows fixed (#2807)
  * minor fixes (#4808, #4807)

  -- Bert Freudenberg <bert@freudenbergs.de>  Fri, 16 Nov 2007


FlipSticks-1.xo

  * First version in joyride

  -- Ed Stoner <ed@whsd.net> Wed Oct 31 14:15:46 SAST 2007


Gmail-1.xo

  * Gmail activity from walter (trac #4600).

  -- C. Scott Ananian <cscott@laptop.org>  Fri,  2 Nov 2007 14:41:01 -0400


Gmail-2.xo

  * New Gmail activity from walter (trac #4619).

  -- C. Scott Ananian <cscott@laptop.org>  Fri,  2 Nov 2007 14:41:01 -0400


JigsawPuzzle-1.xo

  * First version in joyride

  -- Carlos Neves <cn@sueste.net> Tue, 30 Oct 2007


JigsawPuzzle-2.xo

  * Updated lesson plans.
  * Changed the way NotebookReader uses abiword Canvas, making open document look
    consistent when opened multiple times.
  * Updated tube handling helper to match the new Presence API and removed local tubeconn.py.
  * Removed a little kungfu with soft links. This adds some files redundantly
    across our activities, but makes activities self contained.

  -- Carlos Neves <cn@sueste.net> Tue, 13 Nov 2007


JokeMachine-6.xo

  * Updated Lesson plans.

  -- Antoine van Gelder <hummingbird@hivemind.net>  Tue, 13 Nov 2007


Journal-67.xo

    * #4380 Add downloaded entries from the school server to the journal. (tomeu)
    * #1941 Implement FocusSearch method for popping up the journal. (rwh)
    * #3498, #4558 Mount removable devices as utf8. (tomeu)
    * display standard icon when icon for mime type is not found (erikos)

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Fri, 02 Nov 2007


Journal-68.xo

    * Include forgotten file.

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Fri, 02 Nov 2007


Journal-69.xo

    * #4704 Fix mounting of removable devices. (tomeu)

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Fri, 07 Nov 2007


Journal-70.xo

    * #4638 Update dates when the journal is displayed. (tomeu)
    * #4409 Fix showing malformed bundles. (tomeu)

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Tue, 13 Nov 2007


Journal-71.xo

    * #4414 Don't unfocus the search entry when the autosearch is fired. (tomeu)

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Tue, 13 Nov 2007


Journal-72.xo

    * #4909 Add Resume method to the DBus service. (marco)

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Wed, 14 Nov 2007


LearningCenter-2.xo

  * First version in joyride

  -- Carlos Neves <cn@sueste.net> Tue, 30 Oct 2007


LearningCenter-3.xo

  * Updated lesson plans.
  * Changed the way NotebookReader uses abiword Canvas, making open document look
    consistent when opened multiple times.
  * Updated tube handling helper to match the new Presence API and removed local tubeconn.py.
  * Removed a little kungfu with soft links. This adds some files redundantly
    across our activities, but makes activities self contained.

  -- Carlos Neves <cn@sueste.net> Tue, 13 Nov 2007


Log-2.xo

   * Drop presence and network interfaces

  -- Eduardo Silva <edsiper@gmail.com>  Tue, 30 Oct 2007


Log-3.xo

   * Read check permission

  -- Eduardo Silva <edsiper@gmail.com>  Tue, 30 Oct 2007


Log-4.xo

   * logcollect.py now defaults to http://olpc.scheffers.net/olpc/submit.tcl
   * Fix command-line mode and cleanup 'usage' after rename from log-collect.py

  -- Pascal Scheffers <pascal@scheffers.net>  Fri, 2 Nov 2007


Log-5.xo

   * Harden logcollect.py with a whole bunch of try...except to always 
     collect as much as possible. 

  -- Pascal Scheffers <pascal@scheffers.net>  Fri, 3 Nov 2007


MaMaMediaMenu-1.xo

  * First version in joyride

  -- Carlos Neves <cn@sueste.net> Tue, 30 Oct 2007


MaMaMediaMenu-2.xo

  * bundle.get_service_name became bundle.get_bundle_id according to Sugar.
  * Updated tube handling helper to match the new Presence API and removed local tubeconn.py.

  -- Carlos Neves <cn@sueste.net> Tue, 13 Nov 2007


Measure-12.xo

	* Disabled gobject.timeout when activity goes into background, this thus prevents the expose event to be queued up for drawing when Activity is not active.

  -- Arjun Sarwal <arjun@laptop.org> Monday, 30 Oct 2007


Measure-13.xo

	* Changing sampling rate from ALSA rather than using downsampling in code
	* Frequency slider now takes three discrete values
	* Faster background drawing and overall response (With Codyl's help)
	* Code cleanup
	* Fixed Activity not calling on_quit when quitting.

  -- Arjun Sarwal <arjun@laptop.org> Thursday, 1 Nov 2007


Measure-14.xo

	* (Note This release doesn't comply with Bitfrost. Please see AnalogInput.py to correct that)
	* Revisited Journal Integration - now scale, mode etc. are also written in logfile
	* Details show/hide added - rms, avg, X Axis scale and Y Axis scale are visible
	* Fixed #3616 by making the Activity wait for ,active = True to fire before trying to get hold of the sound device
	* Increased gain slider sensitivity, also disabled Mic Boost throughout Activity

  -- Arjun Sarwal <arjun@laptop.org> Friday, 2 Nov 2007


Memorize-20.xo

  * Temp folders changed for Rainbow compliance
  * Set correct path for demo games #4752
  * Change tube methods to use new tube interface #4739

  -- Muriel de Souza Godoi <muriel@laptop.org>  Thu, 08 Nov 2007


OurStories-2.xo

 * from John Huang
  -- Fri Nov 07 2007 19:30  SJ Klein <sj@laptop.org>


Paint-12.xo

   * Fitting canvas to usable area (See ticket #3689)
   * Using Sugar's Object Chooser to "Import Image" dialog box; user imports images from Journal.
   * Palettes' layout changed (see ticket #4231).
   * Image Toolbar buttons active only when there is a selection.
   * Clear button now works with selected areas.
  -- Alexandre Antonino Gonçalves Martinazzo <alexandremartinazzo@gmail.com>


Paint-12.xo

   * adding new spanish translation
  -- Nathalia Sautchuk Patricio <nathalia.sautchuk@gmail.com>


Paint-12.xo

   * now effects can be used in selection
   * fixed bug in "insert image"
   * added rotate
  -- André Mossinato <andremossinato@gmail.com>


Pippy-10.xo

  * Fix sound library playback (Nat)
  * Skeleton i18n support (Rafael)
  * "Thanks" example (Walter)
  * "Guess" example (Pilar Saenz)

  -- Chris Ball <cjb@laptop.org>  Fri Nov  2 12:16:55 EDT 2007


Poll-12.xo

  * #4743: Fix problem stopping activity (conflict with screenshot for
    journal

  -- Morgan Collett <morgan.collett@gmail.com> Thu Nov  8 20:01:25 SAST 2007


Read-35.xo

    * #4454: Added a broad try..except Exception: to write_file() to allow
    read to close if write_file has an error. (pascals)

  -- Tomeu Vizoso <tomeu@tomeuvizoso.net> Fri, 02 Nov 2007


Record-38.xo

	* Joyride commit

  -- Erik Blankinship <erikb@mediamods.com> Monday, 5 Nov 2007


Record-39.xo

       * Thumbnail fixes
       * Gamekey fixes
       * Tray fixes

  -- Erik Blankinship <erikb@mediamods.com> Thursday, 8 Nov 2007


Record-40.xo

       * Path fixes

  -- Erik Blankinship <erikb@mediamods.com> Wednesday, 14 Nov 2007


SimCity-1.xo

 * Add ChangeLog
 * Add SimCity.xo from Don Hopkins, without gplv3 notices
 * update to SimCity with some legal copy 
 * gz to zip (fixed in don's branch now)

  -- Wed Nov 15 2007 SJ Klein <sj@laptop.org>


SliderPuzzle-3.xo

  * First version in joyride

  -- Carlos Neves <cn@sueste.net> Tue, 30 Oct 2007


SliderPuzzle-4.xo

  * Updated lesson plans.
  * Changed the way NotebookReader uses abiword Canvas, making open document look
    consistent when opened multiple times.
  * Updated tube handling helper to match the new Presence API and removed local tubeconn.py.
  * Removed a little kungfu with soft links. This adds some files redundantly
    across our activities, but makes activities self contained.

  -- Carlos Neves <cn@sueste.net> Tue, 13 Nov 2007


TamTamEdit-43.xo

* Added new sounds (Olipet)
* Adjusted slider range (Olipet)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Mon, 29 Oct 2007


TamTamEdit-44.xo

* Added missing icons (Olipet)
* Fixed startup problem (lync)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Fri, 2 Nov 2007


TamTamJam-43.xo

* Loading bug fix (Lync, LeJames)
* Added new sounds (Olipet)
* Desktop sounds fix (Olipet)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Fri, 2 Nov 2007


TamTamJam-44.xo

* Fixed instrument saving bug (lync)
* Microphone fix (Olipet)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Fri, 2 Nov 2007


TamTamMini-43.xo

* Added new sounds (Olipet)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Fri, 2 Nov 2007


TamTamSynthLab-43.xo

* Added new sounds (Olipet)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Mon, 29 Oct 2007


TamTamSynthLab-44.xo

* Instrument fixes (Olipet)

  -- Nathanaël Lécaudé <nat-list@studioimaginaire.com> Fri, 2 Nov 2007


Terminal-2.xo

   * Go to home user directory
   * Decrease font size

  -- Eduardo Silva <edsiper@gmail.com>  Tue, 28 Oct 2007


Web-74.xo

    * #4720: new index page for browse (erikos)

  -- Simon Schampijer <simon@schampijer.de> Sat, 17 Nov 2007


WikiBrowse-1.xo
* Add WikiBrowse.xo and two wikislices (wp-en-abr and wp-es-abr)

  -- Thu Nov 01 2007 SJ Klein <sj@laptop.org>


Write-53.xo
libabiword-2.6.0.svn20071113-1.i386.rpm
libabiword-plugins-2.6.0.svn20071113-1.i386.rpm
pyabiword-0.6.0.svn20071113-1.i386.rpm

  * Fix 4850: Abiword save as rtf can't be read by other programs (uwog)

  -- Marc Maurer <uwog@uwog.net>  Tue Nov 13 16:15:59 CET 2007


avahi-0.6.20-5.fc7.i386.rpm
avahi-autoipd-0.6.20-5.fc7.i386.rpm
avahi-compat-libdns_sd-0.6.20-5.fc7.i386.rpm
avahi-dnsconfd-0.6.20-5.fc7.i386.rpm
avahi-glib-0.6.20-5.fc7.i386.rpm
avahi-tools-0.6.20-5.fc7.i386.rpm
avahi-ui-0.6.20-5.fc7.i386.rpm
dbus-python-0.82.1-2.fc7.i386.rpm
evince-olpc-0.3-1.i386.rpm
fonts-thai-ttf-0.4.4-1olpc1.2.noarch.rpm
gtksourceview2-1.90.3-3.olpc2.i386.rpm
hippo-canvas-0.2.23-1.fc7.i386.rpm
hippo-canvas-python-0.2.23-1.fc7.i386.rpm
hulahop-0.2-0.22.20071013git47eec13acd.i386.rpm
libabiword-2.5.2.svn20070910-1.i386.rpm
libabiword-plugins-2.5.2.svn20070910-1.i386.rpm
mailcap-2.1.23-2.marco.noarch.rpm
olpc-logos-0.1-3.fc7.noarch.rpm
pyabiword-0.5.2.svn20070910-1.i386.rpm
pygobject2-2.14.0-1.fc7.i386.rpm
pygtksourceview-1.90.3-1.fc8.i386.rpm
python-telepathy-0.14.0-1.olpc2.noarch.rpm
pyvserver-1.0-0.3.fc7.noarch.rpm
rainbow-0.6.6-1.fc7.noarch.rpm
sugar-0.65-0.88.20071026git176262f2e9.i386.rpm
sugar-base-0.1-0.3.20071016git7364e0078e.i386.rpm
sugar-datastore-0.2.2-0.39.20071024git26a372063c.noarch.rpm
sugar-presence-service-0.65-0.21.20071018git25577b1486.noarch.rpm
telepathy-glib-0.6.0-1.olpc2.i386.rpm
wpa_supplicant-0.5.7-4.fc7.i386.rpm
xulrunner-1.9-0.10.a9pre.olpc2.i386.rpm

  * Marco needs to write a real ChangeLog!

  -- Michael Stone <michael@laptop.org>  Sun, 28 Oct 2007 00:11:16 -0400


bootanim-0.10-1.i386.rpm
bootanim-0.11-1.i386.rpm
bootanim-0.12-1.i386.rpm
bootanim-0.9-1.i386.rpm
bootchart-0.9-1.noarch.rpm
bootchart-javadoc-0.9-1.noarch.rpm
bootchart-logger-0.9-1.noarch.rpm
libertas-usb8388-firmware-5.110.17.p2-0.1.20070829.olpc2.noarch.rpm

  * Scott needs to write a real ChangeLog!
  * And he needs to give us his sources!

  -- Michael Stone <michael@laptop.org>  Sun, 28 Oct 2007 00:10:01 -0400


bootfw-q2d03-1.i386.rpm

  * Latest OFW firmware: q2d03

  -- C. Scott Ananian <cscott@laptop.org>  Wed, 31 Oct 2007 19:01:01 -0400


buildsys-build-0.6.2-1.olpc2.noarch.rpm
buildsys-build-0.6.2-1.olpc2.src.rpm
buildsys-macros-8-4.olpc2.noarch.rpm
buildsys-macros-8-4.olpc2.src.rpm

  * Build root for OLPC packages.

  -- C. Scott Ananian <cscott@laptop.org>  Wed,  7 Nov 2007 18:22:01 -0500


dbus-python-0.82.3-1.fc7.i386.rpm
dbus-python-debuginfo-0.82.3-1.fc7.i386.rpm
dbus-python-devel-0.82.3-1.fc7.i386.rpm

  * Don't know why these are in joyride.  If unused, they should be removed.

  -- C. Scott Ananian <cscott@laptop.org>  Mon, 12 Nov 2007 18:35:01 -0500


evince-olpc-0.3-1.src.rpm
glibc-2.6.90-19.src.rpm
pygtksourceview-1.90.3-1.fc8.src.rpm
wpa_supplicant-0.5.7-4.fc7.src.rpm

  * Hunt down sources for some packages currently in joyride.
	
  -- C. Scott Ananian <cscott@laptop.org>  Sat, 10 Nov 2007 05:05:01 -0500


glibc-devel-2.6.90-19.i386.rpm

  * glibc-devel package to go with glibc packages bernie is providing.
  * This is used to construct a build root.
	
  -- C. Scott Ananian <cscott@laptop.org>  Fri,  9 Nov 2007 16:51:01 -0500


initscripts-8.54.1-12.olpc2.src.rpm
libX11-1.1.3-1.git20070822.olpc2.src.rpm
libXi-1.1.2-0.git.olpc2.src.rpm
pixman-0.9.5-2.20070924.olpc2.src.rpm
xkeyboard-config-1.1-5.20071009cvs.olpc2.src.rpm
xorg-x11-drv-amd-0.0-27.20071019.olpc2.src.rpm
xorg-x11-drv-evdev-1.2.0-2.olpc2.src.rpm
xorg-x11-drv-fbdev-0.3.1-3.olpc2.src.rpm
xorg-x11-drv-keyboard-1.2.1-0.olpc2.src.rpm
xorg-x11-drv-mouse-1.2.2-0.olpc2.src.rpm
xorg-x11-drv-void-1.1.1-6.olpc2.src.rpm
xorg-x11-server-1.4-7.olpc2.src.rpm

  * Bernie's sources, which need ChangeLog entries.

  -- C. Scott Ananian <cscott@laptop.org>  Sat, 10 Nov 2007 08:21:01 -0500


kernel-2.6.22-20071106.1.olpc.392edb0680e0d8a.i586.rpm
kernel-2.6.22-20071106.1.olpc.392edb0680e0d8a.src.rpm

  * Hack around bugs getting dilinger's latest kernels into joyride.
	
  -- C. Scott Ananian <cscott@laptop.org>  Wed,  7 Nov 2007 16:42:01 -0500


kernel-2.6.22-20071115.3.olpc.50a2eb18ef06d31.i586.rpm
kernel-2.6.22-20071115.3.olpc.50a2eb18ef06d31.src.rpm

  * Hack around bugs getting dilinger's latest kernels into joyride.
	
  -- C. Scott Ananian <cscott@laptop.org>  Fri, 16 Nov 2007 10:00:01 -0500


libX11-1.1.3-1.git20070822.olpc2.i386.rpm
libX11-1.1.3-1.git20070822.olpc2.src.rpm
libX11-debuginfo-1.1.3-1.git20070822.olpc2.i386.rpm
libX11-devel-1.1.3-0.git20070822.olpc2.i386.rpm
libX11-devel-1.1.3-1.git20070822.olpc2.i386.rpm
libXi-1.1.2-0.git.olpc2.i386.rpm
libXi-1.1.2-0.git.olpc2.src.rpm
libXi-devel-1.1.2-0.git.olpc2.i386.rpm
pixman-0.9.5-2.20070924.olpc2.i386.rpm
pixman-0.9.5-2.20070924.olpc2.src.rpm
pixman-debuginfo-0.9.5-2.20070924.olpc2.i386.rpm
pixman-devel-0.9.5-2.20070924.olpc2.i386.rpm
xkeyboard-config-1.1-5.20071009cvs.olpc2.noarch.rpm
xkeyboard-config-1.1-5.20071009cvs.olpc2.src.rpm
xorg-x11-drv-amd-0.0-27.20071019.olpc2.i386.rpm
xorg-x11-drv-amd-0.0-27.20071019.olpc2.src.rpm
xorg-x11-drv-amd-debuginfo-0.0-27.20071019.olpc2.i386.rpm
xorg-x11-drv-evdev-1.2.0-2.olpc2.i386.rpm
xorg-x11-drv-evdev-1.2.0-2.olpc2.src.rpm
xorg-x11-drv-evdev-1.2.0-2norel.olpc2.i386.rpm
xorg-x11-drv-evdev-1.2.0-2norel.olpc2.src.rpm
xorg-x11-drv-evdev-debuginfo-1.2.0-2.olpc2.i386.rpm
xorg-x11-drv-evdev-debuginfo-1.2.0-2norel.olpc2.i386.rpm
xorg-x11-drv-fbdev-0.3.1-3.olpc2.i386.rpm
xorg-x11-drv-fbdev-0.3.1-3.olpc2.src.rpm
xorg-x11-drv-fbdev-debuginfo-0.3.1-3.olpc2.i386.rpm
xorg-x11-drv-keyboard-1.2.1-0.olpc2.i386.rpm
xorg-x11-drv-keyboard-1.2.1-0.olpc2.src.rpm
xorg-x11-drv-keyboard-debuginfo-1.2.1-0.olpc2.i386.rpm
xorg-x11-drv-mouse-1.2.2-0.olpc2.i386.rpm
xorg-x11-drv-mouse-1.2.2-0.olpc2.src.rpm
xorg-x11-drv-mouse-debuginfo-1.2.2-0.olpc2.i386.rpm
xorg-x11-drv-void-1.1.1-6.olpc2.i386.rpm
xorg-x11-drv-void-1.1.1-6.olpc2.src.rpm
xorg-x11-drv-void-debuginfo-1.1.1-6.olpc2.i386.rpm
xorg-x11-proto-devel-7.2-13.olpc2.i386.rpm
xorg-x11-proto-devel-7.2-13.olpc2.src.rpm
xorg-x11-server-1.4-7.olpc2.src.rpm
xorg-x11-server-Xorg-1.4-7.olpc2.i386.rpm
xorg-x11-server-debuginfo-1.4-7.olpc2.i386.rpm
xorg-x11-server-sdk-1.4-7.olpc2.i386.rpm
xorg-x11-server-source-1.4-7.olpc2.i386.rpm

  * Bernie misunderstood what I asked him to do and moved the X 1.4
    packages out of joyride and into xtest.  I've copied them here to
    work around this problem for the time being.
	
  -- C. Scott Ananian <cscott@laptop.org>  Fri, 16 Nov 2007 10:07:01 -0500


libX11-devel-1.1.3-1.git20070822.olpc2.i386.rpm

  * Bernie included the wrong version of libX11-devel. =(

  -- C. Scott Ananian <cscott@laptop.org>  Sat, 10 Nov 2007 08:21:01 -0500


libabiword-2.6.0.svn20071106-1.i386.rpm
libabiword-plugins-2.6.0.svn20071106-1.i386.rpm
pyabiword-0.6.0.svn20071106-1.i386.rpm

  * Fix http://bugzilla.abisource.com/show_bug.cgi?id=11190 :
    Intermediate glyphs not visible during composition (tf)

  -- Marc Maurer <uwog@uwog.net>  Mon Nov 12 19:19:04 CET 2007


libertas-usb8388-firmware-5.110.19.p0-1.olpc1.noarch.rpm
libertas-usb8388-firmware-5.110.19.p0-1.olpc1.src.rpm

  * Latest libertas wireless firmware: 5.110.19.p0

  -- C. Scott Ananian <cscott@laptop.org>  Wed, 31 Oct 2007 19:01:01 -0400


libertas-usb8388-firmware-5.110.20.p0-1.olpc2.noarch.rpm
libertas-usb8388-firmware-5.110.20.p0-1.olpc2.src.rpm

  * Latest libertas wireless firmware: 5.110.20.p0

  -- C. Scott Ananian <cscott@laptop.org>  Tue,  6 Nov 2007 20:57:01 -0500


loudmouth-1.2.3-2.fc7.i386.rpm
loudmouth-1.2.3-2.fc7.src.rpm
loudmouth-debuginfo-1.2.3-2.fc7.i386.rpm
loudmouth-devel-1.2.3-2.fc7.i386.rpm

  * Add gnutls-compression.patch to negotiate DEFLATE compression if available.

  -- Robert McQueen <robert.mcqueen@collabora.co.uk>  Wed Nov 14 2007


ohm-0.1.1-5.4.20071105git.fc7.i386.rpm
ohm-0.1.1-5.4.20071105git.fc7.src.rpm
ohm-debuginfo-0.1.1-5.4.20071105git.fc7.i386.rpm

  * Implement power management features: 
    #2243 (Shouldn't wake up on lid close)
    #2679 (Suspend on idle..)
    #4329 (Laptop comes out of sleep on network traffic)
    #4729 (Screen should dim partially by default)
  * Creates a distinction between "sleep" and "suspend" modes; when in 
    "sleep", only a power button press will fully wake up the machine.  
    Closing the lid or pressing the power button enters sleep mode.
  * Current timeouts are 20s until screen dim, 60s until suspend-on-idle.
    These are editable in /etc/ohm/plugins.d/timeouts.ini.

  -- Chris Ball <cjb@laptop.org>  Mon Nov 12 00:14:45 EST 2007


ohm-0.1.1-5.5.20071112git.fc7.i386.rpm
ohm-0.1.1-5.5.20071112git.fc7.src.rpm
ohm-devel-0.1.1-5.5.20071112git.fc7.i386.rpm
ohm-debuginfo-0.1.1-5.5.20071112git.fc7.i386.rpm

  * Change timeouts to 25s dim, 30s suspend.
  * Never suspend if /etc/ohm/inhibit-suspend exists.  To do this:
    "touch /etc/ohm/inhibit-suspend".
  * Don't dim or suspend when on AC power.

  -- Chris Ball <cjb@laptop.org>  Mon Nov 12 20:55:05 EST 2007


olpc-library-common-1-3.noarch.rpm
olpc-library-common-1-3.src.rpm

  * fixed missing dependency on sugar

  -- Benjamin Mako Hill <mako@laptop.org>  Sat, 17 Nov 2007


olpc-library-core-1-3.noarch.rpm
olpc-library-core-1-3.src.rpm

  * initial RPM version of the core content library example bundles

  -- Benjamin Mako Hill <mako@laptop.org>  Tue, 13 Nov 2007


olpccontents-1.0-1.20070925git30cbb9db3b.i386.rpm

  * First release.

  -- C. Scott Ananian <cscott@laptop.org>  Mon Sep 24 19:15:07 2007 -0400


olpccontents-1.1-1.20071004gitef677d0168.i386.rpm

  * Update olpc-contents-* utilities; internal names are now 'contents'
    uniformly, instead of 'manifest'.

  -- C. Scott Ananian <cscott@laptop.org>  Wed, 31 Oct 2007 19:01:01 -0400


olpccontents-1.2-1.20071010git8b3a9e4754.i386.rpm

  * olpc-contents-verify now verifies that contents file matches given hash.
  * Unify terminology: manifest -> "contents" or "contents manifest".

  -- C. Scott Ananian <cscott@laptop.org>  Wed Oct 10 17:06:40 2007 -0400


olpccontents-1.3-1.20071112git44cf8450b8.i386.rpm

  * Add olpc-incr-rsync command used by new olpc-update.

  -- C. Scott Ananian <cscott@laptop.org>  Mon, 12 Nov 2007 18:35:01 -0500


olpccontents-1.4-1.20071114git427aca9bf5.i386.rpm

  * Add contents_hash() method to Contents objects.
  * This method is required by the new olpc-update code.
  * Remove olpc-incr-rsync command (this has been moved to olpc-update)
  * Fix error when passing pristine inode list to olpc-contents-verify.

  -- C. Scott Ananian <cscott@laptop.org>  Tue, 13 Nov 2007 15:52:00 -0500


olpccontents-1.5-1.20071115git345154039c.i386.rpm

  * Performance improvements to canonical JSON encoding/decoding.
  * Add Contents.get_dirobject_pair() and json.write_to_file(), which can
    be used for performance improvements to client code.
	
  -- C. Scott Ananian <cscott@laptop.org>  Wed, 14 Nov 2007 19:12:00 -0500


olpccontents-1.6-1.20071115git3c3c70f229.i386.rpm

  * Better error diagnostics when verification fails.
  * Use unicode normalization form D when comparing UTF-8 filesystem data.
	
  -- C. Scott Ananian <cscott@laptop.org>  Thu, 15 Nov 2007 11:55:00 -0500


olpccontents-1.7-1.20071115git2ad3604a88.i386.rpm

   * Fix verification bug with non-ASCII filenames.

  -- C. Scott Ananian <cscott@laptop.org>  Thu, 15 Nov 2007 13:30:00 -0500


olpcrd-0.31-1.20071010git81ebb054e4.i386.rpm
olpcrd-0.32-1.20071018git072ad8e70b.i386.rpm
olpcrd-0.33-1.20071023git61b9d437a1.i386.rpm
olpcrd-0.34-1.20071029git6b5a6fe212.i386.rpm

  * Latest initramfs: FRS upgrade and COW upgrade fixes.

  -- C. Scott Ananian <cscott@laptop.org>  Wed, 31 Oct 2007 19:01:01 -0400


olpcupdate-1.0-1.20071114gitbb1f534209.i386.rpm

  * Initial release of vserver-less olpc-update.
  * Fixes trac #3777 (sticky flag), #4553 (olpc-update broken by vserver
    removal), #4643 (olpc-update missing)
  * Partial fix for trac #4156 (absolute symlinks).  OFW doesn't permit a
    full fix yet.

  -- C. Scott Ananian <cscott@laptop.org>  Tue, 13 Nov 2007 16:56:00 -0500


olpcupdate-1.1-1.20071114git4351acd6e7.i386.rpm

  * Inhibit suspends during updates.
  * Performance improvements to incremental rsync.
  * Hack around a few files which are not kept pristine.
    (/etc/alsa/asound.state, /var/run/utmp, and /var/log/wtmp)
  * Clean up /versions directory during update.

  -- C. Scott Ananian <cscott@laptop.org>  Wed, 14 Nov 2007 18:32:00 -0500


olpcupdate-1.2-1.20071115gita51cacaf30.i386.rpm

  * Fix /versions cleanup code, which was failing.

  -- C. Scott Ananian <cscott@laptop.org>  Thu, 15 Nov 2007 13:17:00 -0500


olpcupdate-1.3-1.20071116gitdc058f54b0.i386.rpm

  * Don't die if ohm is not installed.
  * Add --full option to olpc-update to skip incremental rsync.


squeak-vm-3.9-12olpc1.i386.rpm
squeak-vm-3.9-12olpc1.src.rpm

  * big merge with trunk
  * unicode key events
  * fixed dbus plugin

  -- Bert Freudenberg <bert@freudenbergs.de>  Mon, 15 Oct 2007


squeak-vm-3.9-12olpc2.i386.rpm
squeak-vm-3.9-12olpc2.src.rpm

  * re-enable -O2 to get back speed (duh!)
  * handle view-source key

  -- Bert Freudenberg <bert@freudenbergs.de>  Tue, 23 Oct 2007


squeak-vm-3.9-12olpc3.i386.rpm
squeak-vm-3.9-12olpc3.src.rpm

  * fix freeze in drag and drop
  * add analog input support
  * fix cursor keys

  -- Bert Freudenberg <bert@freudenbergs.de>  Wed, 31 Oct 2007


telepathy-gabble-0.7.1-0.4.olpc2.i386.rpm
telepathy-gabble-0.7.1-0.4.olpc2.src.rpm
telepathy-gabble-debuginfo-0.7.1-0.4.olpc2.i386.rpm

  * dev.laptop.org #4948: Add OLPC-specific patch to disable checking of the
    UID connecting to D-Bus tubes.

  -- Robert McQueen <robert.mcqueen@collabora.co.uk>  Wed Nov 15 2007


telepathy-salut-0.1.9-0.9.olpc2.i386.rpm
telepathy-salut-0.1.9-0.9.olpc2.src.rpm
telepathy-salut-debuginfo-0.1.9-0.9.olpc2.i386.rpm

  * dev.laptop.org #4947: Add OLPC-specific patch to disable checking of the
    UID connecting to D-Bus tubes.

  -- Robert McQueen <robert.mcqueen@collabora.co.uk>  Wed Nov 15 2007