-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchangelog
2273 lines (1647 loc) · 76.9 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
commit 2a8c9d77035cb9c1bab9ed0e8bfba4e05acfbd99 (HEAD, origin/master, origin/HEAD, master)
Author: xombra <[email protected]>
Date: Thu Oct 9 15:21:45 2014 -0430
* Cambios en conf LXDE y uso de Chromium
commit a8d44dd98641556ca293c0b203b33c565c5c39ec
Author: xombra <[email protected]>
Date: Wed Oct 8 21:15:19 2014 -0430
* changelog
commit 1be81c38f120478f978013e11f1245fe39394202
Author: xombra <[email protected]>
Date: Wed Oct 8 16:41:38 2014 -0430
* Cambios en gestion de purga y permisos
commit 634640e4c3368e24dd5ebaf259231212e50c8c5f
Author: xombra <[email protected]>
Date: Wed Oct 8 16:33:39 2014 -0430
* Cambios en conf LXDE y supresion temporal de brltty para ser
* colocado en script
commit 0a717e23182eea57dcf74dda434139e95f95bb21
Author: xombra <[email protected]>
Date: Wed Oct 8 10:49:14 2014 -0430
* changelog
commit b988380e8b44631e8e053a1f8aad076a0574de04
Author: xombra <[email protected]>
Date: Wed Oct 8 10:48:34 2014 -0430
* Eliminacion de paquetes redundantes
commit e834042b0515567739c84b7ca59ff72435b4c40a
Author: xombra <[email protected]>
Date: Tue Oct 7 14:21:31 2014 -0430
* changelog
commit 73f3fa185670d120bbf10c4a9043b365f52f84c9
Author: xombra <[email protected]>
Date: Tue Oct 7 14:20:18 2014 -0430
Cambios en la conf de LXDE
commit 1603813ac42a46175d0a2fd9c7a730772ba8c1c6
Author: xombra <[email protected]>
Date: Tue Oct 7 13:46:29 2014 -0430
* changelog
commit 8adc5f2dd96f924c1b2022b7e9bfb031f445938f
Author: xombra <[email protected]>
Date: Tue Oct 7 13:45:41 2014 -0430
* Cambios en paquetes y configuraciones
commit 6452744080819d44f824bed2cd2c88b359e1b7f8
Author: xombra <[email protected]>
Date: Mon Oct 6 18:17:27 2014 -0430
* changelog
commit d618edff1e6c07d658243a67ebdff69ead5fb774
Author: xombra <[email protected]>
Date: Mon Oct 6 18:16:40 2014 -0430
* Cambios Menores de conf
commit 557a417fab2ed1e1ba3f360a5af5a820caf77370
Author: xombra <[email protected]>
Date: Mon Oct 6 15:26:56 2014 -0430
* changelog
commit 5ad40c059b0702735b02861827ff182cf0d5472f
Author: xombra <[email protected]>
Date: Mon Oct 6 13:09:00 2014 -0430
* Cambios menores
commit 3a3525693d828b1d22cace88d0c49cc628c504f8
Author: xombra <[email protected]>
Date: Fri Oct 3 19:13:22 2014 -0430
* changelog
commit 4294205a04f3ccf5129db111117d192f41467b50
Author: xombra <[email protected]>
Date: Fri Oct 3 19:12:32 2014 -0430
* se arreglan los repos
commit d0b2754eb79e6f10af6c9061fde8e90c2afe369b
Author: xombra <[email protected]>
Date: Fri Oct 3 19:09:36 2014 -0430
* changelog
commit dc75d68948bd2153407f9f8ac755f17161e48df8
Author: xombra <[email protected]>
Date: Fri Oct 3 19:08:47 2014 -0430
* se repara lxpanel
commit dfd0f945cbea80c2571d69cf57a6e8c9e1ffaeab
Author: xombra <[email protected]>
Date: Fri Oct 3 13:03:21 2014 -0430
* changelog
commit d03cc58e852287c847d2ce8235f06e5b1b3c49b1
Author: xombra <[email protected]>
Date: Fri Oct 3 13:02:29 2014 -0430
* Ajustes menores - Eliminacion de redundancia en paquetes
commit a712ad28fcc1b2af9d19119478aebb936f928c8c
Author: xombra <[email protected]>
Date: Sun Sep 28 20:51:14 2014 -0430
* changelog
commit c241d07d01cb5227bb93aed8c95a856c8f565161
Author: xombra <[email protected]>
Date: Sun Sep 28 20:27:20 2014 -0430
* Agragados Plugines WOT - HTTPS Anywhere - APPT
* Cambios en paquetes
commit 1373db3b10d1869c0f9c34212e7bfd281369918d
Author: xombra <[email protected]>
Date: Wed Sep 24 19:55:38 2014 -0430
* changelog
commit 19fcf4ed82ee8ce363b69daa51f462f5006d9e05
Author: xombra <[email protected]>
Date: Wed Sep 24 19:54:50 2014 -0430
* Correciones
commit 7d57fccbe178610bcc6aed94b1c23951d89d93c3
Author: xombra <[email protected]>
Date: Wed Sep 24 19:53:31 2014 -0430
* Correcciones - Eliminacion/Agragados Paquetes
commit 6b21ac14a59667d1c4cbdcc95f4a803e30f36a84
Author: xombra <[email protected]>
Date: Tue Sep 23 14:20:00 2014 -0430
* changelog
commit 15df8e678fc3e771240ede7833e3f40d148352ac
Author: xombra <[email protected]>
Date: Tue Sep 23 14:18:08 2014 -0430
* Cambios en paquetes
commit f5f9c4954cebcda2dcd43427b428a6e615c8f319
Author: xombra <[email protected]>
Date: Fri Sep 19 19:28:14 2014 -0430
* changelog
commit 244313ca00743e95620515c492843a9861269e39
Author: xombra <[email protected]>
Date: Fri Sep 19 19:26:44 2014 -0430
* Cambios en algunos paquetes
commit b43477d68e9ba17245bd5d8055dba8a6c6a415f3
Author: sinfallas <[email protected]>
Date: Sun Sep 7 19:39:06 2014 -0430
* changelog
commit c9168fc7bbecc8648cee1b581984fd52e1610af0
Author: xombra <[email protected]>
Date: Mon Sep 1 09:06:12 2014 -0430
* changelog
commit f36074200a6921e8e3fdb1a59c9e576803fbc325
Author: xombra <[email protected]>
Date: Mon Sep 1 09:04:43 2014 -0430
* Eliminacion del repo Kali del source list
commit ad54e75f7b8b28cfcf5c00d4a1463ec7d7e07076
Author: xombra <[email protected]>
Date: Sun Aug 31 17:58:20 2014 -0430
* changelog
commit b59181028f8e52df842b74fd639133ae18cee3e8
Author: xombra <[email protected]>
Date: Sun Aug 31 17:56:50 2014 -0430
* Eliminacion de repo siduction - probando sin libsystemd-login0
* Prueba de Login
commit 1f87da98fdf524fa74a990fe369a23763cb168e2
Author: xombra <[email protected]>
Date: Sun Aug 24 16:06:33 2014 -0430
* changelog
commit e35ccceab31462c6c505c2bd927cf94cd37dbbd2
Author: xombra <[email protected]>
Date: Sun Aug 24 16:03:27 2014 -0430
* Cambios en imagen Desktop, eliminación de jwm y regreso a openbox/lxde
* Eliminacion de algunos paquetes innecesarios
* Regreso a clave de SO Original
* OJO: Presenta problemas con el Login <Hay que solventar>
commit 6347c019529c3322fbf996b49f13c5f3634bcee2
Author: xombra <[email protected]>
Date: Sat Aug 23 19:53:18 2014 -0430
* changelog
commit 57410d8684c617fbd7854d8c4aef2377a309910d
Author: xombra <[email protected]>
Date: Sat Aug 23 19:51:20 2014 -0430
* Cambios Importantes: Eliminacion de repositorios, eliminacion de imagenes innecesarioss, eliminacion de carpetas irrelevantes
commit 267f2bb6f80d3db4196fe584a8da649708aea207
Author: xombra <[email protected]>
Date: Wed Aug 20 15:14:41 2014 -0430
* changelog
commit ce7e2921db41df54c70d9c46d099c2de9b4d7a35
Author: xombra <[email protected]>
Date: Wed Aug 20 15:13:56 2014 -0430
* Agregado nuevos soportes para printers
commit 428cba5855696b3b502b1da0f9cd440f1195e584
Author: xombra <[email protected]>
Date: Wed Aug 20 14:38:54 2014 -0430
* Cambios en paquetes, eliminacion xchat por Hexchat, cambios en utilidades y otras herramientas
commit 1015723f46d2eef292d93ba5a3ac312ae944c041 (tag: v.1.3)
Author: xombra <[email protected]>
Date: Tue Aug 19 20:18:17 2014 -0430
Libreria necesaia para integracion systemd / systemv
commit ec46be7d39d6eaf4ea0e1495bc770d0ac996d79a
Author: xombra <[email protected]>
Date: Mon Aug 18 20:33:19 2014 -0430
Cambio de Icewasel a Chromium - Eliminacion de Imagenes innecesarias en LXDE
commit 58a7577c0d131cb61cf24ba12b4fb7e2661c4b6a
Author: xombra <[email protected]>
Date: Mon Aug 18 20:23:06 2014 -0430
Cambios en el Hooks eliminando algunos archivos que no existian de la lista
commit f52853673b643cc9ca19c99d36465e687140683e
Author: xombra <[email protected]>
Date: Mon Aug 18 20:13:50 2014 -0430
Mejorando Integracion entre SystemV & SystemD
commit 15e2e4dbcfeccde90bba748bc268b07983007cb6
Author: xombra <[email protected]>
Date: Tue Aug 12 23:19:05 2014 -0430
Cambios en Paquetes
Sigue sin trabajar con Canaima-Base
commit dd2cce562c0c37a929559931ca2471dbfdc68b98
Author: xombra <[email protected]>
Date: Sat Aug 9 12:48:53 2014 -0430
Cambios menores
commit 6958b934e2e4123e8cbdb7b960e8c1b28b839720
Author: xombra <[email protected]>
Date: Fri Aug 8 22:12:47 2014 -0430
Cambios varios. se agrego varios paquetes
commit b9dc61e39b5ba56b27dd387cc552e39794da050b
Author: xombra <[email protected]>
Date: Fri Aug 8 21:49:32 2014 -0430
ajuste de icon con los de mint-x
commit 9e946d73bfaf469caa565af48cdd14eaec08a1b9
Merge: 6c21a42 8ded837
Author: xombra <[email protected]>
Date: Fri Aug 8 21:42:40 2014 -0430
Actualizacion de varios archivos y eliminacion de otros
Merge branch 'master' of https://github.com/xombra/Canaima-Wadameka
Conflicts:
config/package-lists/base.list.chroot
config/package-lists/drivers.list.chroot
config/package-lists/escritorio.list.chroot
commit 6c21a423d8e3b1e858ce63c0278919b050ecbeb9
Author: xombra <[email protected]>
Date: Fri Aug 8 21:36:26 2014 -0430
Cambios en enlaces de imagenes, reestructuracion de opexbox con icon de mint
commit 7e803c802c88602f7a7acbfe4f993c36ce045467
Author: xombra <[email protected]>
Date: Fri Aug 8 21:28:18 2014 -0430
Cambios en paquetes
commit 8ded83751a603c780dd277a7dfa24454ffc40bb6
Author: sinfallas <[email protected]>
Date: Thu Aug 7 18:26:06 2014 -0430
* modificaciones varias
commit 83da43721a760c4f46893664743723fcb6f7c32a
Author: abr4xas <[email protected]>
Date: Tue Aug 5 12:44:37 2014 -0430
Cambios generales.
Se realizan cambios generales en el proyecto.
commit e650c438845763c0b03a4a70759549e37f66da49
Author: xombra <[email protected]>
Date: Mon Aug 4 14:58:28 2014 -0430
Agragada configuracion temporal del JWM separando los archivos de conf.
Eliminacion de otros archivos no necesarios
commit 906b7ef2b68bad6aad281ec1fa866f89a3cc88ce (tag: v1.2)
Author: xombra <[email protected]>
Date: Mon Aug 4 10:30:35 2014 -0430
- Se regreso nuevamente a LXDE y se agrego JWM, integrando ambos.
- Se incluyeron las opciones para integrar SystemV con SystemD
- Se creo un archivo aparte para Canaima-Base (aun presenta problemas)
- Se eliminaron algunos paquetes innecesarios
commit 770a5eec4b2fca8aed0ac3bc91f5d776cbe1e3ca
Author: xombra <[email protected]>
Date: Mon Jul 28 17:00:27 2014 -0430
Se agrego en todos la lista de paquetes htop al final debido a problemas del contrusctor que no tomaba la ultima linea
commit 1954b3050eaaed42e1cd2552b903c68f88f08fb6
Author: sinfallas <[email protected]>
Date: Sat Jul 26 13:58:50 2014 -0430
* changelog
commit 3f7f44500eee7b2ff20cc72608fb33555407386f
Author: sinfallas <[email protected]>
Date: Sat Jul 26 13:57:35 2014 -0430
* se eliminan repositorios innecesarios
* se realiza limpieza sobre el sistema de archivos
commit 28f7fad08b18bac4efb2d13b0b330a2a15d46f39
Author: sinfallas <[email protected]>
Date: Sat Jul 26 13:50:16 2014 -0430
* changelog
commit 4de07291fea239229d66a8affbd45ee1f091c337
Author: sinfallas <[email protected]>
Date: Sat Jul 26 13:49:49 2014 -0430
* se eliminan directorios innecesarios
commit 678f9454aa7e03db04de075748468e6216a6fc8d
Author: sinfallas <[email protected]>
Date: Sat Jul 26 13:44:43 2014 -0430
* se sustituye lxde por xfce4
* se eliminan paquetes innecesarios
* se hace limpieza
commit 44435141699912dfb3e38d1215dbd9fa256fd72c
Author: xombra <[email protected]>
Date: Thu Jul 10 18:21:02 2014 -0430
Cambios menores en paquetes
commit 4452cc8a69bafa739afd43ceaec91203fa9043a5
Author: xombra <[email protected]>
Date: Wed Jul 2 21:20:47 2014 -0430
actualizacion de paquetes
commit 5e734e1cd48709d2b3f2b086bd5b332d4b54c2ec
Author: abr4xas <[email protected]>
Date: Wed Jul 2 15:26:44 2014 -0430
** update
commit 34597146429cf1b9594d968511d529b8fd5891e6
Author: xombra <[email protected]>
Date: Wed Jun 25 11:29:19 2014 -0430
agregado repo siduction, cambios en configuraciones,
arreglo para usar ultimo kernel disponible
eliminacion de archivos no necesarios
commit 322239dc67ad09aaed5dea4aff709740d9485240
Author: sinfallas <[email protected]>
Date: Mon Jun 23 12:00:02 2014 -0430
* changelog
commit 1e95546bf83f6e90b40c1b0351e6cc99408c4d2b
Author: sinfallas <[email protected]>
Date: Mon Jun 23 11:59:37 2014 -0430
* correciones de isolinux
commit 5e3ff75980529551d876b0a82375238fc3dbff61
Author: xombra <[email protected]>
Date: Sun Jun 1 12:52:01 2014 -0430
Cambios en paquetes, eliminando innecesarios y/o dupĺicados
commit 2aceab39116b36c984d1b7c090be21aab86e4e36
Author: xombra <[email protected]>
Date: Mon May 12 20:25:55 2014 -0430
Añadido soporte a systemd, inclusion de varias herramientas y eliminacion de otras no necesarias u obsoletas
commit 5c7f6a0a24dce2c586d942ebfe326e3150141caa
Author: sinfallas <[email protected]>
Date: Thu May 1 20:56:19 2014 -0430
* se eliminan imagenes innecesarias
commit a2332f70a1c25a07e52d79b29696fc86879834ed
Author: sinfallas <[email protected]>
Date: Thu May 1 20:51:41 2014 -0430
* cambios a licencia
commit b68ffb5f7178b27e92e88646730c4247ad0788cb
Author: ángel <[email protected]>
Date: Thu May 1 20:50:20 2014 -0430
Delete
commit 4e800c975c35527047e8b6249a483d12bdea8ef5
Author: sinfallas <[email protected]>
Date: Thu May 1 20:17:15 2014 -0430
* se eliminan paquetes innecesarios
commit d315ef22c9da9156984785739ac87ccc51571dbc
Author: sinfallas <[email protected]>
Date: Thu May 1 18:07:16 2014 -0430
* se eliminan paquetes
commit 794f1be0b3da933bdf4adab4cbeb2e1a0f795a3d
Author: Xombra <[email protected]>
Date: Fri Apr 25 19:44:45 2014 -0430
archives pref cambiados, priority
commit 89055b89f26008ba706f0e12a523be04fb07026b
Author: Xombra <[email protected]>
Date: Fri Apr 25 19:43:36 2014 -0430
hooks cambiados
commit a45d3547b8148c0db113e2144472a0458b3a6ae9
Author: Xombra <[email protected]>
Date: Fri Apr 25 19:43:08 2014 -0430
Archivos package-list cambiados
commit 4a14e7aad7f9a3ff388689596891dc905d86009a
Author: xombra <[email protected]>
Date: Wed Apr 9 11:16:49 2014 -0430
/ ‘README.md’
commit 1f0eb8122a49396fe72236c15330e4512125fc9b
Author: xombra <[email protected]>
Date: Wed Apr 9 11:15:08 2014 -0430
/ ‘config/package-lists/red.list.chroot’
commit 86947a359ebce5aebaaefb3c3fb2eb7293e27530
Author: xombra <[email protected]>
Date: Sun Apr 6 11:27:16 2014 -0430
+ ‘instalar.shX’
/ ‘config/includes.chroot/etc/iceweasel/pref/iceweasel.js’
- ‘config/includes.chroot/etc/iceweasel/pref/iceweasel.old’
- ‘config/includes.chroot/etc/iceweasel/profile/iceweasel.js’
- ‘instalar.sh’
commit 28dcbd9fded1985ee96bcae399df4c0518052116
Author: xombra <[email protected]>
Date: Sun Apr 6 00:42:40 2014 -0430
+ ‘config/includes.chroot/home/user/Escritorio/’
/ ‘README.md’
/ ‘config/includes.binary/LEEME.txt’
/ ‘config/includes.chroot/etc/fstab’
/ ‘config/includes.chroot/usr/share/lxde/images/lxde-icon.png’
/ ‘config/package-lists/base.list.chroot’
- ‘config.tar.gz’
- ‘config/includes.chroot/home/user/Escritorio/Instalar Wadameka.desktop’
- ‘config/includes.chroot/usr/bin/change-username’
- ‘config/includes.chroot/usr/bin/refractainstaller’
- ‘config/includes.chroot/usr/bin/refractainstaller-gui’
- ‘config/includes.chroot/usr/bin/refractainstaller-wrapper.sh’
- ‘config/includes.chroot/usr/bin/refractainstaller-yad’
- ‘config/includes.chroot/usr/lib/refractainstaller/home_boot_exclude.list’
- ‘config/includes.chroot/usr/lib/refractainstaller/inittab.debian’
- ‘config/includes.chroot/usr/lib/refractainstaller/installer_exclude.list’
- ‘config/includes.chroot/usr/lib/refractainstaller/post-install/cleanup-install.sh’
- ‘config/includes.chroot/usr/lib/refractainstaller/pre-install/limpiar.sh’
- ‘config/includes.chroot/usr/lib/refractainstaller/pre-install/loc-timezn.sh’
- ‘config/includes.chroot/usr/share/applications/Instalar Wadameka.desktop’
...
commit 2f17b18489bd2e8cd258d5e1df20a4bf1c44957a
Author: xombra <[email protected]>
Date: Sat Apr 5 22:34:22 2014 -0430
+ ‘config.tar.gz’
+ ‘config/includes.binary/LEEME.txt’
+ ‘config/includes.binary/isolinux/modules.alias’
+ ‘config/includes.binary/isolinux/modules.pci’
+ ‘config/includes.binary/isolinux/pci.ids’
+ ‘config/includes.chroot/etc/dpkg/origins/Wadameka’
+ ‘config/includes.chroot/etc/hdparm.conf’
+ ‘config/includes.chroot/etc/kernel-img.conf’
+ ‘config/includes.chroot/etc/kerneloops.conf’
+ ‘config/includes.chroot/root/.synaptic/synaptic.conf’
+ ‘config/includes.chroot/usr/local/bin/post’
+ ‘config/includes.chroot/usr/share/images/desktop-base/wadameka_minimal.png’
+ ‘config/includes.chroot/usr/share/images/desktop-base/wadameka_wallpaper.svg’
/ ‘config/archives/mirror.list.chroot’
/ ‘config/binary’
/ ‘config/bootstrap’
/ ‘config/chroot’
/ ‘config/hooks/01-localepurge.chroot’
/ ‘config/includes.chroot/etc/dpkg/origins/default’
/ ‘config/includes.chroot/etc/os-release’
...
commit d29c8380bb00648fbbc5da6c2cc75d25f8cbae25
Author: xombra <[email protected]>
Date: Sat Apr 5 15:02:18 2014 -0430
/ ‘config/package-lists/varios.list.chroot’
commit a6b0b1d73a98c174c9d8a20be9fca2c5dce367d2
Author: xombra <[email protected]>
Date: Thu Apr 3 19:19:11 2014 -0430
/ ‘config/binary’
/ ‘config/bootstrap’
/ ‘config/chroot’
/ ‘config/hooks/01-localepurge.chroot’
commit f5cdd33a3496452856340c5c1c8d2453adfc317f
Author: xombra <[email protected]>
Date: Wed Apr 2 17:06:03 2014 -0430
/ ‘config/hooks/01-localepurge.chroot’
/ ‘config/package-lists/red.list.chroot’
/ ‘config/package-lists/utilidades.list.chroot’
/ ‘config/package-lists/varios.list.chroot’
commit 73570b72272e5349ae83a7b2c4e9aacde5ddb1c4
Author: xombra <[email protected]>
Date: Tue Apr 1 19:19:34 2014 -0430
- ‘changelog’
commit 996bbdafe80b9d1461edd44ce417175ebc6fb50e
Author: sinfallas <[email protected]>
Date: Mon Mar 31 22:24:28 2014 -0430
* nuevos repos
commit 735c2192c8f81715fd1ff47a11e34225fe0040b3
Author: sinfallas <[email protected]>
Date: Mon Mar 31 21:56:50 2014 -0430
* correcion de error de proxy
commit 7c346d53b9539f2f9c9365812ffd7a35639a8800
Author: sinfallas <[email protected]>
Date: Mon Mar 31 20:47:31 2014 -0430
* correcion de errores
commit 8550c4125c2600b9762cc31f58200a7f498053ff
Author: sinfallas <[email protected]>
Date: Sun Mar 30 22:45:33 2014 -0430
* se corrige el error al cerrar sesion y el error del instalador
commit 8e64eb2cbce491ed54f59514551601ba47097e95
Author: sinfallas <[email protected]>
Date: Fri Mar 28 16:44:35 2014 -0430
* timezone se establece en arranque
* hdparm no se debe usar en modo live porque no todos los disco aceptan las opciones que alli se aplicaban, por eso se debe generar en post-instalacion
* kerneloops.conf y kernel-img.conf no tienen utilidad en una distro de este tipo
commit c92f98cd83e47bebde7a29ba00876126120eee88
Author: sinfallas <[email protected]>
Date: Fri Mar 28 16:37:54 2014 -0430
* se elimino fxload porque no tiene utilidad: http://ccrma.stanford.edu/planetccrma/man/man8/fxload.8.html
commit bb862838b7fbfa8b9a4e56cad1edf03646ffa265
Author: xombra <[email protected]>
Date: Wed Mar 26 18:00:39 2014 -0430
/ ‘instalar.sh’
commit 38d09478d57b6b8d0fca4fb4d5b9f6a8e83956dc
Author: xombra <[email protected]>
Date: Tue Mar 25 18:59:28 2014 -0430
/ ‘config/apt/preferences’
/ ‘config/hooks/01-localepurge.chroot’
commit 7b2812504cf9abdcf13c673d060afbc4d1b3b8ce
Author: xombra <[email protected]>
Date: Mon Mar 24 21:52:55 2014 -0430
+ ‘config/apt/apt.conf’
commit e0d089beb02a7bce6765f8aa5df43393e82dd2ee
Author: xombra <[email protected]>
Date: Mon Mar 24 17:19:21 2014 -0430
+ ‘config/includes.chroot/etc/polipo/options’
/ ‘config/binary’
/ ‘config/includes.chroot/etc/iceweasel/pref/iceweasel.js’
/ ‘config/includes.chroot/etc/iceweasel/profile/iceweasel.js’
/ ‘config/includes.chroot/etc/polipo/config’
commit aa7b35fef3f7476ea907028a7b84985682190627
Author: xombra <[email protected]>
Date: Mon Mar 24 11:24:56 2014 -0430
/ ‘config/includes.chroot/etc/memlockd.cfg’
commit 76816e082b2a58dbd14cb061b62379c265b06c14
Author: xombra <[email protected]>
Date: Mon Mar 24 11:04:29 2014 -0430
+ ‘config/includes.chroot/etc/memlockd.cfg’
commit acef49739501321a3de08664bd01232184fed654
Author: xombra <[email protected]>
Date: Mon Mar 24 10:48:21 2014 -0430
+ ‘config/includes.chroot/usr/share/images/desktop-base/random/canaima_lxde_1600x1200.jpg’
+ ‘config/includes.chroot/usr/share/images/desktop-base/random/wadameka_wall_1.jpg’
+ ‘config/includes.chroot/usr/share/images/desktop-base/random/wadameka_wall_2.jpg’
+ ‘config/includes.chroot/usr/share/lxde/wallpapers/wadameka_wall_1.jpg’
+ ‘config/includes.chroot/usr/share/lxde/wallpapers/wadameka_wall_2.jpg’
commit e81676bb28a331b63c9ee2cb2d31c549b9fff019
Author: xombra <[email protected]>
Date: Mon Mar 24 09:58:47 2014 -0430
+ ‘art/logo.png’
/ ‘config/includes.chroot/etc/iceweasel/pref/iceweasel.js’
/ ‘config/includes.chroot/etc/iceweasel/profile/iceweasel.js’
/ ‘config/includes.chroot/usr/share/images/desktop-base/joy-wallpaper_1280x1024.svg’
/ ‘config/includes.chroot/usr/share/images/desktop-base/login-background.png’
/ ‘config/includes.chroot/usr/share/images/desktop-base/minimal.png’
/ ‘config/includes.chroot/usr/share/images/desktop-base/random/joy-wallpaper_1280x1024.svg’
- ‘art/logo_fuente.png’
- ‘config/includes.chroot/usr/share/images/desktop-base/login-background.svg’
commit 0bb05d5f12ef343365cf3b9f7734c7462a15f6d3
Author: xombra <[email protected]>
Date: Mon Mar 24 09:24:21 2014 -0430
+ ‘art/colores.png’
+ ‘art/copyright’
+ ‘art/logo_fuente.png’
/ ‘config/chroot’
/ ‘config/package-lists/base.list.chroot’
/ ‘config/package-lists/drivers.list.chroot’
/ ‘config/package-lists/escritorio.list.chroot’
/ ‘config/package-lists/internet.list.chroot’
/ ‘config/package-lists/red.list.chroot’
- ‘colores.png’
- ‘config/includes.chroot/etc/privoxy/config’
commit ed9e33ca6247c1e2dc6411a36bb241fcf55dca1d
Author: xombra <[email protected]>
Date: Sun Mar 23 23:28:23 2014 -0430
/ ‘README.md’
commit b725593b4f9cd82e53b91b7ecbfb4deeb6f9009d
Author: xombra <[email protected]>
Date: Sun Mar 23 23:27:50 2014 -0430
/ ‘README.md’
commit b347b8b8db9fc56a027726b0908c7fc4e945aa0b
Author: xombra <[email protected]>
Date: Sun Mar 23 23:26:57 2014 -0430
- ‘configaaaa.tar.gz’
commit a61e2b60f0334eb3c7a9d361e3b09d19235f6657
Author: xombra <[email protected]>
Date: Sun Mar 23 23:25:24 2014 -0430
+ ‘configaaaa.tar.gz’
commit 6dbc030555cc41600a8a718c7e2f46f68b6d947a
Author: xombra <[email protected]>
Date: Sun Mar 23 23:18:56 2014 -0430
- ‘configaaaa.tar.gz’
commit e82996fd67ac259e6df2f29ccd12769f89432e45
Author: xombra <[email protected]>
Date: Sun Mar 23 23:17:55 2014 -0430
+ ‘config/includes.binary/LEEME.txt’
+ ‘config/includes.chroot/etc/privoxy/config’
+ ‘configaaaa.tar.gz’
/ ‘config/archives/mirror.list.chroot’
/ ‘config/archives/yad.list.chroot’
/ ‘config/chroot’
/ ‘config/package-lists/base.list.chroot’
- ‘config.tar.gz’
commit f7e4a41be12de4e2d501bd39d3fbe35847b3bc44
Author: xombra <[email protected]>
Date: Sun Mar 23 20:30:14 2014 -0430
+ ‘config.tar.gz’
commit 252eac4676608f7133427da01f750c9565da68d9
Author: xombra <[email protected]>
Date: Sun Mar 23 19:46:20 2014 -0430
- ‘config.tar.gz’
commit fc0ff869cdf78f6ec402fa6cef4630da640a8c15
Author: xombra <[email protected]>
Date: Sun Mar 23 19:46:19 2014 -0430
+ ‘config.tar.gz’
+ ‘config/includes.chroot/var/cache/polipo/.vacio’
+ ‘config/includes.chroot/var/lib/tor/.vacio’
+ ‘config/includes.chroot/var/log/polipo/.vacio’
/ ‘changelog’
- ‘config/includes.chroot/var.tar.gz’
commit 0dd35d1123cc399d42899ad1aa766f7a32e93b92
Author: xombra <[email protected]>
Date: Sun Mar 23 19:45:18 2014 -0430
+ ‘config/includes.chroot/var.tar.gz’
commit 8bc37087c2cc6b9080402718b9a531dfe80a3d92
Author: xombra <[email protected]>
Date: Sun Mar 23 19:41:26 2014 -0430
- ‘config.tar.gz’
commit db742abaf5450ab7317f12ee501fad996c349b75
Author: xombra <[email protected]>
Date: Sun Mar 23 19:40:53 2014 -0430
+ ‘config.tar.gz’
commit 37dccfbee750da70f5105312545abf09beb2f59d
Author: xombra <[email protected]>
Date: Sun Mar 23 19:40:32 2014 -0430
/ ‘config/includes.chroot/etc/iceweasel/profile/iceweasel.js’
commit 009e204593b6586c2ab2d7a44564299fae53feab
Author: xombra <[email protected]>
Date: Sun Mar 23 19:39:06 2014 -0430
/ ‘config/includes.chroot/etc/iceweasel/pref/iceweasel.js’
commit b3f3c14f9ee1640c388eede0d83e88978d61a275
Author: xombra <[email protected]>
Date: Sun Mar 23 19:30:03 2014 -0430
/ ‘config/bootstrap’
commit 640c320a4854793d64042d02bc0aec246672b7fc
Author: xombra <[email protected]>
Date: Sun Mar 23 19:28:19 2014 -0430
/ ‘config/includes.chroot/etc/iceweasel/pref/iceweasel.js’
commit 7c12e0de410191fb6519631f7ee72375a1a105e3
Author: xombra <[email protected]>
Date: Sun Mar 23 19:27:24 2014 -0430
/ ‘config/package-lists/varios.list.chroot’
- ‘config/includes.chroot/etc/privoxy/config’
commit f141e5a7cca18d9b8177fc88a37b60bcabde1246
Author: xombra <[email protected]>
Date: Sun Mar 23 19:26:22 2014 -0430
/ ‘config/package-lists/varios.list.chroot’
commit f797b771035511922e811cccc9a9ee6481317d06
Author: xombra <[email protected]>
Date: Sun Mar 23 19:24:51 2014 -0430
/ ‘config/package-lists/oficina.list.chroot’
commit 000560cdf82a6e02828efd4c4c93ea8897939dfd
Author: xombra <[email protected]>
Date: Sun Mar 23 19:21:40 2014 -0430
/ ‘config/package-lists/internet.list.chroot’
commit 49e88cbe68e6265e2ab7cb1bfb1c9999cd169992
Author: xombra <[email protected]>
Date: Sun Mar 23 19:21:14 2014 -0430
/ ‘config/package-lists/multimedia.list.chroot’
commit 76384eac1230ed5e2f465ba05053e765c0f8f55e
Author: xombra <[email protected]>
Date: Sun Mar 23 19:20:32 2014 -0430
/ ‘config/package-lists/multimedia.list.chroot’
commit f28fba2ed2b20f80548bfc6ece0f31fe6c698e72
Author: xombra <[email protected]>
Date: Sun Mar 23 19:18:33 2014 -0430
/ ‘config/package-lists/escritorio.list.chroot’
commit 6622adabce3fbfb04f2861051f5b7d8c31a6f58f
Author: xombra <[email protected]>
Date: Sun Mar 23 19:17:59 2014 -0430
/ ‘config/package-lists/drivers.list.chroot’
commit 87a240d52da155baf963ca93d845cff10032bdde
Author: xombra <[email protected]>
Date: Sun Mar 23 19:17:16 2014 -0430
/ ‘config/package-lists/varios.list.chroot’
commit 2fba334fe3f5f1a6a66e94e87022c67c2b5a830d
Author: xombra <[email protected]>
Date: Sun Mar 23 19:17:09 2014 -0430
/ ‘config/package-lists/base.list.chroot’
commit f4744fd3211ff5daaa98e601a18f9a0c1215b6c5
Author: xombra <[email protected]>
Date: Sun Mar 23 19:16:39 2014 -0430
/ ‘config/package-lists/base.list.chroot’
commit 41a5196a02b287c5d7a3c29e01c1936f9a34b28b
Author: xombra <[email protected]>
Date: Sun Mar 23 19:16:21 2014 -0430
/ ‘config/package-lists/base.list.chroot’
commit d4d5b6a1f477e1839e97c0c1528d5c736304b693
Author: xombra <[email protected]>
Date: Sun Mar 23 19:15:50 2014 -0430
/ ‘config/package-lists/base.list.chroot’
commit 69ef11b95a0449628e6eb6a11cdfea88bdd70d79
Author: xombra <[email protected]>
Date: Sun Mar 23 19:15:47 2014 -0430
/ ‘config/package-lists/base.list.chroot’
/ ‘config/package-lists/red.list.chroot’
commit 7b3ec879e8e706ee918e13bfd90c982ae28fe108
Author: xombra <[email protected]>
Date: Sun Mar 23 19:14:38 2014 -0430
+ ‘config/includes.binary/leeme.txt’
- ‘config/includes.binary/LEEME.txt’
commit fec63172a324628701957b2c6b7cdf1dd361ee09
Author: xombra <[email protected]>
Date: Sun Mar 23 19:14:13 2014 -0430
/ ‘config/includes.chroot/home/user/LEEME.txt’
commit 5565ffaa30d87fb55f9ec3edbed3efc439efb584
Author: xombra <[email protected]>
Date: Sun Mar 23 19:13:48 2014 -0430
/ ‘config/includes.binary/LEEME.txt’
commit e4212e58f4e90a71ab2bceaaefd90d5df0b33915
Author: xombra <[email protected]>
Date: Sun Mar 23 19:12:37 2014 -0430
+ ‘config/includes.binary/copyright’
commit d676b7f0eb7c4e1283139595eed3ae145dbccca2
Author: xombra <[email protected]>
Date: Sun Mar 23 19:12:20 2014 -0430
+ ‘config/includes.binary/LICENSE’
commit 1e39d13094808d98fc30f5d5561290ad90b1f576
Author: xombra <[email protected]>
Date: Sun Mar 23 19:11:07 2014 -0430
/ ‘config/hooks/01-localepurge.chroot’
commit d94a963827f1d0a744d8dfcbec18507b3b264096
Author: xombra <[email protected]>
Date: Sun Mar 23 19:09:11 2014 -0430
/ ‘config/archives/varios.list.chroot’
commit 3f85d69659ae1949bc3366a6f9685ed54c1895b4
Author: xombra <[email protected]>
Date: Sun Mar 23 19:07:02 2014 -0430
+ ‘config/archives/kxstudio.key.binary’
+ ‘config/archives/kxstudio.key.chroot’
+ ‘config/archives/kxstudio.list.binary’
+ ‘config/archives/kxstudio.list.chroot’
+ ‘config/archives/tryphon.key.binary’
+ ‘config/archives/tryphon.key.chroot’
+ ‘config/archives/tryphon.list.binary’
+ ‘config/archives/tryphon.list.chroot’
commit 86bcaee0d2deb52a46593f63b9aefa6c101377db
Author: xombra <[email protected]>
Date: Sun Mar 23 19:04:28 2014 -0430
/ ‘config/includes.chroot/etc/issue’
commit 926d625439f475b48858937808cdd2ec52a5c797
Author: xombra <[email protected]>
Date: Sun Mar 23 19:02:59 2014 -0430
/ ‘config/includes.chroot/etc/modprobe.d/no-pc-speaker.conf’
commit 4d214f9868e799aa453ca2cf293751b2d251634c
Author: xombra <[email protected]>
Date: Sun Mar 23 19:01:59 2014 -0430
/ ‘config/includes.chroot/etc/sysctl.conf’
commit 3eacd41a9dcb22e9d155aaf1a38775ed459007fe
Author: xombra <[email protected]>
Date: Sun Mar 23 19:00:58 2014 -0430
/ ‘config/includes.chroot/etc/environment’
commit 1aafa55ffd4f95ed8fbb7533a743ddecac38571d
Author: xombra <[email protected]>
Date: Sun Mar 23 19:00:41 2014 -0430
/ ‘config/includes.chroot/etc/modules’
commit aeceaa5668d2cc2970630aa5f0b981a10f4d83b2
Author: xombra <[email protected]>
Date: Sun Mar 23 18:55:29 2014 -0430