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
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
|
---
17659ce1983f39720de51b5fb898af515f701206
Tue Mar 12 07:37:29 2024 +0200
Caching enabled results and a fix
---
88e9bb162fecb6c44ac07b01e99fca1f69e2f5b6
Tue Mar 12 07:34:14 2024 +0200
Updated README
---
bf87d94330c6c6153eab9f1a3016efeef5ebc754
Mon Mar 11 19:36:28 2024 +0200
Introduced ./lib for common stuff
ofc, logit was the first lib to add... finally
---
d4e498a18f700e288764cdf8799a2b07a76e1615
Mon Mar 11 18:47:08 2024 +0200
More helpful output
---
b808eabf7a446a91efa8f5ec5240a8d60f4bc55d
Mon Mar 11 18:44:31 2024 +0200
Minor changes in documentation + a log format fix
---
da4c3d92640f8f8e32eafd8ebc5a707bf0d89961
Mon Mar 11 18:31:31 2024 +0200
Turned subcommands into flag like options
---
e31fd72048b68daa4dcac1319da0e28cc49c88b7
Sun Mar 10 05:44:05 2024 +0200
ak2html -> ak-zblock-gen-html
---
f01707d1ca1c0d5b56e69f280558ff30cfdf19d4
Sun Mar 10 05:41:58 2024 +0200
Updates on README
---
fb311543c9b5536b227833e94338e788e04cea47
Sun Mar 10 05:19:54 2024 +0200
new tool: ak-fs-cat
---
798a8a50445f894f7e6979b9e688639005d0a5d9
Sun Mar 10 02:08:24 2024 +0200
Renamed ak-sm-merkle-tree* to ak-fs-*
renamed: bin/ak-sm-merkle-tree -> bin/ak-fs-add
renamed: bin/ak-sm-merkle-tree-to-file -> bin/ak-fs-get
Also, minor fixes in README
---
cfdeb61252a100d660c047a4ea1eb5a38bba705b
Sat Mar 2 17:25:43 2024 +0200
Clean up leftovers from refactoring ak-logthis
---
1894d8cb5c4050de216f905f8ebbfcc1e7c8d58a
Sat Mar 2 07:24:49 2024 +0200
Follow up to 2e2e16e
---
935ee5be8b3d228a7119c77798b5d9dfe2a734fc
Sat Mar 2 07:02:56 2024 +0200
API welcome message update
---
d8543fd95a7e4519ef23ca0ea5125fcc4f860e76
Sat Mar 2 06:00:24 2024 +0200
Added specs subcommand
---
dcafdd7151abfed1f69407357854ae91deea0c0b
Sat Mar 2 05:58:11 2024 +0200
Exit on launch, no implementation yet
---
69ec28812cc1f6c68f139bbc93e95ab4424f8859
Sat Mar 2 05:57:34 2024 +0200
Exit if no value given to rebase onto
---
fe55a20c1d3d5eca8dd069167a444a1d82328294
Sat Mar 2 05:55:07 2024 +0200
Removed zpairs section from mining data, only zblocks are supported
---
00f7cb02f91e8aae9df69c33e28b05b54bd82561
Sat Mar 2 05:52:35 2024 +0200
Added specs subcommand
---
a6c00d58d0818fb6495f8407ff2573ff77bf29d6
Sat Mar 2 05:46:40 2024 +0200
Refactored ak-articles to match rest of scripts
- Removed git intergration
- Uses logit now instead of printing to stdout
- Checks for `EDITOR` variable instead of blindly running vi
- Spacings fix
- Removes temp dir after 'add' command is done
---
82934d0325e61669c877122b721f5fe72a25bea5
Sat Mar 2 05:45:20 2024 +0200
PROGRAM from script name instead of hardcoded string
---
e3a1c5e5c654c43f02d411b4805699d6a1d652fc
Sat Mar 2 05:44:30 2024 +0200
Make use AK_MINEDBLOCKSDIR variable
---
2e2e16eda2c02bf2b783ca5d4c649e17b287e16b
Sat Mar 2 05:42:27 2024 +0200
Removed ak-get-chain-minified in favor of ak-enter
---
8f6255ee35875d93b740c868d243eea7949f79c5
Sat Mar 2 05:39:15 2024 +0200
logit as an interface to ak-logthis
---
fd33f65d2768ed74346f509a4dd53b72c35bee23
Sat Mar 2 05:33:23 2024 +0200
Do the processing in a temp dir
---
9c69a97ad8cdbdd26a3b68bd896c0a439f0e3e7a
Sat Mar 2 05:30:14 2024 +0200
Added check for dumpLinks of cjdns-tools
---
a94106c216ea22a09f5149d56ece5c16489dc655
Sat Mar 2 05:28:07 2024 +0200
UTF8 encoding and viewport added
---
c619e83d4fcc4dadbe07ead7b58b88ca7524fbfb
Sat Mar 2 05:27:39 2024 +0200
Spacings adjustment
---
7fba668be61c89f133d821c2e7b46630c346fb43
Sat Mar 2 05:23:53 2024 +0200
Fixed tests
---
70495ffed262f268e2b8dc90617164b175341a78
Sat Mar 2 02:56:33 2024 +0200
Spacings adjustment
---
b11434ed1255f3c6a967be093e6e193780bc7ed5
Sat Mar 2 01:51:33 2024 +0200
Removed old ak-cli approach in favor of ak
Instead of hardcoding things in a big script we simply search in ak's
arguments for appropriate scripts and past the rest of values as
arguments to the script found.
Running with no arguments *will* be printing all available scripts with
--help flag to provide a good overview.
---
a506f0a48e02587f59bbd24f67812416a7a74038
Sat Mar 2 01:50:19 2024 +0200
Replaced obsoleted script
---
80bab8913b5ae88a6dc9a200ffb6668df5cffb97
Fri Mar 1 19:31:34 2024 +0200
Changes help subcommand to flag style -h, --help
---
3ca95b33f2dc650b384a96dc1d3aa3d8d18553d1
Fri Mar 1 19:30:33 2024 +0200
Changes help subcommand to flag style -h, --help
---
f8d2236e55e5c369b218017d1de1058d6a8ee361
Fri Mar 1 19:26:24 2024 +0200
Log formatting adjustment
---
7affa2082f61455a413d0c8fea08e79935d4f308
Fri Mar 1 19:20:34 2024 +0200
Spacing adjustment
---
cd43e57b999422980ea95df7f1d03117342e358e
Fri Mar 1 09:36:53 2024 +0200
Simplifying logs
---
4e8f09fcf92eb8de4e39d512ce36b9ed87fbde87
Fri Mar 1 05:45:13 2024 +0200
ak-node-info for cli
---
1b883da0cafceeb82883985486752d98299ece0e
Fri Mar 1 05:44:05 2024 +0200
Firstly clean up AK_BINDIR, then make links
---
9cd7baddbfa5a702486e35c2d8625106eb57981e
Fri Mar 1 05:42:14 2024 +0200
Removing old links when updating
---
a9a3bbaf400e98d6b4e9cdf765728864fe14a7e2
Fri Mar 1 05:36:17 2024 +0200
Rename ak-pack_z_block to ak-zblock-pack
---
c0410df04f57c166c79b8bbe584a97abadaed36e
Fri Mar 1 02:57:58 2024 +0200
Fixes in output format
---
6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd
Fri Mar 1 02:47:10 2024 +0200
Renamed functions and routes
receive* -> announce*
szbk -> /v0/announce/zblock
szch -> /v0/announce/zchain
---
11cd4029ee6e1e5368be22742827dba1547cfc71
Fri Mar 1 02:21:29 2024 +0200
Added debug
---
de65283475653e33de0b6be28f08b9d5004e9080
Fri Mar 1 00:46:46 2024 +0200
Fixes leftovers from refactoring
---
8323eaa985dcac1152e62df28903c643ce2c9f45
Fri Mar 1 00:34:50 2024 +0200
Added ak-logthis wrapper in API
---
f53340fa52437b7a4dbe06834f0cdf1233678c72
Thu Feb 29 19:44:00 2024 +0200
Added debug output
---
2e45e945cb7baa3131430c9c069f9ba9d4ee77b9
Thu Feb 29 08:04:42 2024 +0200
Refactoring
---
0960d34248a5af0df4a735e9a66476192ef1c971
Wed Feb 28 08:52:14 2024 +0200
Refactoring
---
54a6cf3bba10027f2cf9d7d641b667c8d9a400ea
Wed Feb 28 08:32:20 2024 +0200
Refactoring
---
9da29bce4fdd4ca0754f9c505b746d68182f6046
Wed Feb 28 07:09:00 2024 +0200
Refactoring
---
9c249804a4555793532b7ee3eb2d501c2f328cb9
Wed Feb 28 07:03:37 2024 +0200
Extracts fingerprint from IPFS CID holding a public GPG key
---
75c0f9508816bc8f4ca80cc60e5cf84e38927bc1
Tue Feb 27 07:54:34 2024 +0200
ak2html - more analytical zblock to html
---
0588b52635b715a5d7ad66a63f8379cb4408032a
Tue Feb 27 07:21:39 2024 +0200
Renamed script
---
fa5d6becb482da75e65683b0ae690d35fa3eade6
Tue Feb 27 07:20:27 2024 +0200
Refactor Arching Kaos ID to node_info
---
1da7813fe8dab6deb3bcbcfe79f4ad44c5f7fe0c
Tue Feb 27 06:15:55 2024 +0200
Moved block to appropriate place
---
94c6cd43413f266f0db898cfb3fc7a9833509ef8
Tue Feb 27 02:14:19 2024 +0200
Refactored function names
---
f93ebfadb3e0d89e668784cd781ad33c62e01065
Tue Feb 13 19:17:19 2024 +0200
off to make a cli tool
---
779bea336e3c30f89ab3850c625b39636c41cbd0
Tue Feb 13 06:19:19 2024 +0200
Soft link instead to the right place
---
a04d8d467406e37133915493f8883a3741ee6305
Tue Feb 13 06:13:15 2024 +0200
Added the libraries for the dumpLinks
---
5db7905cacaa1ea73ac31978dd94624600566082
Tue Feb 13 06:10:48 2024 +0200
Adding dumpLinks from cjdns to ak-bin directory
---
d744e9daee83ce703405a4ba4d0303daed0d1527
Tue Feb 13 02:26:07 2024 +0200
Clone and install cjdns script
---
2d10a049020b844bdfb9bbc62063bc4b07521536
Mon Feb 12 16:21:05 2024 +0200
Bettering the mask for SHA512 strings
---
1111b62d12a1df9cbfcc480e3e21e7be554c116d
Tue Jan 30 06:22:51 2024 +0200
Fixed add subcommand bug
---
fcca3cfad1008459b30a09ad245458f83d213806
Fri Jan 12 06:43:34 2024 +0200
local-index subcommand enhancment
Figures if files are published already in your zchain
---
7d137436bf7583ac30628d239fec55bb2f8a4ca5
Fri Jan 12 06:42:38 2024 +0200
Proper log script
---
72bf886edc73d1a5ddd8cbcdd083d42ce305ce22
Fri Jan 12 06:41:40 2024 +0200
Test when we send a ZBLOCK over the API
---
53b2f67cf0a41df6ddd0063d8ab004034e0fc17d
Fri Jan 12 06:40:09 2024 +0200
Now handles various request types
---
c047242c82611c3d35b2daf4e6888a3890772ee5
Fri Jan 12 06:39:25 2024 +0200
Changed welcome links to be ipv6 ready
---
44da30438cfb07cf08ef3293cc9ccb975d6c184e
Fri Jan 12 06:37:38 2024 +0200
Removed useless IDing
---
39866a01e1e08e2ec073a8501122d810c9c23f21
Thu Dec 14 23:15:08 2023 +0200
Follow up on 296074f6f5f45c8ab55b44309f9991dca8ef13da
---
f55bd1bba81aed7c90a6f43e3878b0fcbc23aeee
Tue Dec 12 12:33:33 2023 +0200
Working on remote downloads
---
82b235d290a330ba44ff81d248ba1ce5552a4393
Tue Dec 12 12:31:00 2023 +0200
A more complete take on a programs startup
---
deabc2c4c46237a3d8186f9b59fda5d975dfd50c
Tue Dec 12 12:29:51 2023 +0200
Simplification using jq
---
296074f6f5f45c8ab55b44309f9991dca8ef13da
Tue Dec 12 12:29:03 2023 +0200
Renamed scripts for convenience
---
a89cb5df04211968a4884b371b5810a708ce8fcf
Tue Dec 12 12:27:04 2023 +0200
Added depedencies to the Containerfile so there can be a cached image
---
e2cfcb93135978df20229256447b1a2ca788e2b4
Thu Nov 2 16:49:12 2023 +0200
Log file reader now formats timestamp in a human readable value
---
11d38df23c069e3e039cd4919327c8e494f030a1
Sat Sep 30 03:29:45 2023 +0300
Renamed ak-get-latest to ak-get-zlatest
---
9ef57d6e987dc15c02a7cfec64834ebd9aed954f
Sat Sep 30 02:55:51 2023 +0300
At last a logrotating script
---
41997666e4109b9ce22bb41407314402fe53f260
Thu Sep 28 06:00:49 2023 +0300
Fixed temporary folder/file handling
---
35b9daa63ac127e5a2a769cf96a56a0acd8da725
Wed Sep 27 16:40:43 2023 +0300
Got peers into the installation and configuration
---
95063fc1bd293520d2c11cc8cc091dbf619505b4
Wed Sep 27 16:38:12 2023 +0300
minor clean up
---
b9a7edbb1cdeed788cd0faa1f87bbafdaa4ac50c
Wed Sep 27 16:37:34 2023 +0300
New route: GET /peers
---
442ea8af4aefc9c1e04d53ba781e70c7036f17d6
Sun Sep 24 22:18:23 2023 +0300
Link to the location we retrieved from which
---
41363b4b99c5d094fbdea426d03b23194cd85a90
Sun Sep 24 22:17:59 2023 +0300
Added screen to the dependencies
---
645f2ed1ec9eac0263de95572ed821cf1c8389d9
Sun Sep 24 22:14:38 2023 +0300
Added REQUIREMENTS file
---
5e6e0e1dbfc9d7ae61d6917608ece66fd95d1a43
Sun Sep 24 22:12:58 2023 +0300
More info
---
f31e5c1b5ff521d24496bedb58a13d02872b56be
Sun Sep 24 14:51:26 2023 +0300
Added NETWORKING
---
4c67050673223d4ff714a3bae68e1528fefcc84e
Sun Sep 24 00:24:55 2023 +0300
cjdns network scanner prototype
---
47fa6d523d7503d657225413887c6f5c1f48d1ba
Thu Sep 14 20:19:45 2023 +0300
Added INSTALL file
---
b9557e0567908a963ffc269865f453fe2a81aedd
Thu Sep 14 00:29:15 2023 +0300
We should first install the api before building it
---
4598949d827219dfd202aad666ae70d3a2704ba7
Thu Sep 14 00:28:46 2023 +0300
Added log message
---
0319ad5bbf29b360108f9f9f45ed64b081fde569
Mon Sep 11 21:31:08 2023 +0300
Exposes API port, introduced startup script
---
7b623c8fb3a7897c567a98d04d0a44780a62f027
Mon Sep 11 21:26:03 2023 +0300
Build and install the API
---
143c4d5dbe4dd80163b5259e4d92365ab04aa9f0
Mon Sep 11 21:14:02 2023 +0300
Fixes log output
---
5bc6702517b2eaadf7f25f7fbaefc559c20442d8
Mon Sep 11 21:07:02 2023 +0300
Removes nodejs as explicit depedency
- Avoid name differences from package to executable (nodejs vs node)
- Gets installed via npm
---
b6c913a12cad506ed6ee2864d76fa93132341558
Mon Sep 11 21:05:36 2023 +0300
Fixes Makefile
---
7550b8ccb0b05d3b11a9bfcb45cee0849dc05f76
Mon Sep 11 20:57:04 2023 +0300
Workaround for IPNS unresolvable zchain links
- Adds a "zlatest" field to the configuration of the node
- We update and publish the configuration each time we change the latest
block of our zchain
---
6732953e0cc1e4d91d19dcddb90a2fc9afdfeace
Mon Sep 11 20:52:56 2023 +0300
Minified output
---
13a588499aee287ec819fd6d1f0e71e76df6d326
Mon Sep 11 20:51:54 2023 +0300
Usage info correction
---
efb322118ec49e02c3b3c1c52cada9de4142634e
Fri Sep 8 04:02:22 2023 +0300
Clean output
---
fafea198f1b587dcca3b4d74b99fb5295eb8b5f5
Thu Sep 7 16:19:29 2023 +0300
Corrected license duration span
---
bfa533d422bb6147af11c00c93f7f17ef5e42d8c
Thu Sep 7 16:15:48 2023 +0300
License includes all the work that is in this repository
---
f2cadb2a5fdd56c1d44bf9743303f3fef08ebfad
Tue Sep 5 02:28:38 2023 +0300
Added a new option/shortcut to rebase one zblock ago
---
d976f0e3f2d4f7d3cce4867ca21ec86c29e4fdef
Tue Sep 5 02:27:37 2023 +0300
Replaced tabs with spaces
---
c52361eccf1386d6ad28523f40680fbc527e1ac4
Tue Sep 5 02:24:29 2023 +0300
OpenSUSE podman image creator
---
4c2b357ff843ab37acd166928d103e4730e56c04
Tue Sep 5 02:24:07 2023 +0300
Alpine podman image creator
---
4d704573c7fb9e3ffebf4b9495cd1dd850c7e8f0
Fri Sep 1 10:48:52 2023 +0300
Added support for apk package manager
---
ea857d594dc7a446d6edf86e37ce2085dbbcc693
Fri Sep 1 10:48:32 2023 +0300
Corrected wrong log message
---
58dd9788da39d9f77af199fc6bdd68d9a35ddee5
Fri Sep 1 10:47:30 2023 +0300
Added support for zypper package manager
---
5390073b9aab92d6dbd601593a116e05fd55ccdb
Fri Sep 1 09:42:41 2023 +0300
[new] ak-news read command
---
bfc8039a974bec3dd382ec8c64cc93dfd002a498
Fri Sep 1 09:23:14 2023 +0300
Double check the input
---
0a55c353d61c1f3fa624a1d0c68c419868266095
Fri Sep 1 09:19:59 2023 +0300
Return json parse instead of stringified
---
32a5805a89e7ebb88d2f0aa66b7fd80749195121
Fri Sep 1 09:19:04 2023 +0300
Added new routes, fixed indentation
---
ad861504709c639ccc472f71b7db1fe7f52035d8
Wed Aug 23 19:27:58 2023 +0300
Moved the right variable to the right place
---
7cf79933bffcce36123d3a04f74afb11e94e9660
Wed Aug 23 19:19:59 2023 +0300
Added support for ArchLinux
---
1f517b6b25a5a1a5859f693015a2ce86df1f4b6f
Wed Aug 23 19:18:16 2023 +0300
Won't need. It was a mistaken assumption fixed at 587c1a5
---
a43a28abb7457a3166c8b18fe94245e629e6acc7
Wed Aug 23 19:16:18 2023 +0300
Applying work of two previous commits
---
a4b0e5d5cb75ff4af2054ed8df28bb10fe92e16a
Wed Aug 23 19:14:44 2023 +0300
Dynamic sudo usage
---
f56867064771d9a3560a2c2310d9703be34d594f
Wed Aug 23 19:13:35 2023 +0300
Preparing for dynamic package manager arguments
---
f2ab5bede258894e32f91e5ca6f1458a14f3d3ef
Wed Aug 23 15:49:46 2023 +0300
Provided container build target for Debian Linux
---
587c1a5b9aa027d7a6c61d6475703238aeef09d7
Wed Aug 23 15:34:00 2023 +0300
Fixed wrong dependency name
---
8759a66767f620e553740521a617ae042d197b49
Wed Aug 23 15:32:27 2023 +0300
Changed previous to new defaults
---
4a77f861b105a93e536d5a9717bde2d6296f6592
Wed Aug 23 15:31:24 2023 +0300
Removed sudo command as the container user is root, removed wget from deps
---
c4c09ce8912eaa38aaea3d610059c051d13beb9f
Wed Aug 23 15:29:00 2023 +0300
Script provided for testing containers under various Linux distros
---
5c6b610e905702074c80ce00b649b07df682fee6
Tue Aug 22 14:07:44 2023 +0300
Aborts installation if AK_WORKDIR is found.
---
2e76a77d92bfc5640b942f3b3a297d5cb079e94d
Tue Aug 22 14:07:15 2023 +0300
Fixed wrong array declaration
---
d41965e4845e6a722bcbc3ebc6e3ed21001f993b
Tue Aug 22 14:06:43 2023 +0300
Cleans output from which executions
---
ca21e17dba116d145e21dce8f96f3d10f987f850
Tue Aug 22 01:42:58 2023 +0300
Added dependency checking and attempts installing them
---
ae4a4cc06a1e30765973e9eea9753bcfbf99bab5
Mon Aug 21 17:27:55 2023 +0300
Removed forgotten message
---
1c8d1f4710e9f7686222ef842326e4516a5a40b3
Sun Aug 20 22:33:44 2023 +0300
Good update in README
---
bcb49941cd1f1d10b38ad0faef554f7f934702d3
Sun Aug 20 21:28:54 2023 +0300
Removed inlined thens
---
398a37f497b048ec39b1e20c4f7b42b8c01d94a2
Sun Aug 20 21:23:47 2023 +0300
Full ZBLOCK cache subfolder is created when it's needed
---
9dca9167ab62c5c2306e7ea4c3243a2991071461
Sun Aug 20 21:16:03 2023 +0300
Moving initial cache directory here
---
d2accf0f1862b81068d4df16e4b28827db245409
Sun Aug 20 21:14:06 2023 +0300
Fixed check
---
36a98974e4144fc7a387aa73a37daf040c3131be
Sun Aug 20 21:12:31 2023 +0300
Removed trailing slash
---
1a96713b1a5fc0832f83781b5bd96fe870fb5a23
Sun Aug 20 21:03:03 2023 +0300
Cache folder initial appearence
---
feb828c6ca4af1708c4c204a86150f37ca3eaa0e
Sun Aug 20 20:53:09 2023 +0300
Fixed bug when ak-config key was not initially created
---
0bd4af9936319a0ac122f2dbb61949aa01bf698d
Sun Aug 20 20:33:51 2023 +0300
Tar warnings off
---
0a76505ed90768d9695e58590aa0d5716a203c71
Sun Aug 20 20:30:53 2023 +0300
Fixed bug and inconsistency in configuration
---
956fb6d7ece35bbbb0162a3c9ac7d2ce73756f46
Sun Aug 20 15:28:15 2023 +0300
Fixed a wrong condition
---
b0fe96e841f794055371a2ac301f99e5451198c7
Sun Aug 20 15:23:14 2023 +0300
No need for importing keys manually, they get created during install
---
0fb64d189f74ca32dad32401d9789efd6257ab59
Sun Aug 20 14:47:17 2023 +0300
Tidying up and some additions
---
f3e77a4ff03b54e0b2db2a46e9eb3ad345a0b0c4
Sun Aug 20 13:59:51 2023 +0300
Fixed a bug where ZGENESIS pointer file wasn't created
---
8240bd9106a4c3a019a70340b7709a13a9e7e8f4
Sun Aug 20 13:24:44 2023 +0300
Check if there is already a zchain key in IPFS
---
925b16d12bc27aba96b9d543485a20a5e25ddbac
Sun Aug 20 13:14:38 2023 +0300
Corrected condition and worked around printf bug
---
038cd220d6edf02a5e92e58ccf1097b49f4cc626
Sun Aug 20 13:10:46 2023 +0300
Now checking if it is installed first
---
c17eb61eae6b3aee57ffd2287a88e07aef4ed511
Sun Aug 20 13:05:53 2023 +0300
Removed verbose output
---
857f1720f181927249dec7430042eb7b11560bba
Sun Aug 20 13:03:52 2023 +0300
Fixed a bug that could cause installation to fail
---
2e5a5246016724aca4f3bbc2d7418542317a5147
Sun Aug 20 13:01:40 2023 +0300
(new) uninstall script
---
a53f4930669fe6a1bec6dea3ce76f1a92bbe18ec
Sun Aug 20 12:41:24 2023 +0300
Replaced double brackets with single ones
---
5f7fb5e7a9caaf6f5fe4d994e07bef367d41efd4
Sat Aug 19 23:27:38 2023 +0300
Added routes to merkle leafs and file chunks
---
3855b9b657568f2270d63eae157923cc119fa866
Sat Aug 19 14:47:30 2023 +0300
Fixed bug for files less than 4097 bytes
---
47f0fb1bae66ce55be238578a24b0168076b7f12
Sat Aug 19 13:39:32 2023 +0300
More accurate description
---
24d17272e64869fbbc0f465494854ff12e47dc7a
Fri Aug 18 23:08:37 2023 +0300
Needless to create .ipfs manually, needless to call IPFS with specified PATH
---
a51fd3cadbcc4be13dda57217fea6232aae1a182
Fri Aug 18 23:05:17 2023 +0300
Added a condition where we have the IPFS binary but we haven't configured
---
112e4f7be6c6cbdeab8543b4cc64e5b2ae25e155
Fri Aug 18 22:44:36 2023 +0300
Fixed wrong flag
---
49f138f7b2ae9ae46d0d8eb7cc69aad24bd97a14
Fri Aug 18 22:38:13 2023 +0300
Added gpg key create implementation and minor refactor
---
da5c4e118f6d5b04ee31ca2374a1bd8aa8c00e37
Fri Aug 18 22:30:19 2023 +0300
Moved GPG keyring to dedicated folder under .arching-kaos/
---
39ed9fd836004d44bc31ecb4a63376a3c2087da6
Sat Aug 5 08:23:30 2023 +0300
New tool: Restore file from merkle tree
---
776d222eae20aed29ff2e4dbfcececec3c1f0efc
Sat Aug 5 08:15:06 2023 +0300
Removed 1 level of verbosity
---
0da28a5de5876e404009cd8dcd4aa131750bea83
Sat Aug 5 08:14:08 2023 +0300
Makes use of ak-tempassin instead of static temp dir
---
fbbb358b8faf7e966ffa476cd1125673c69b3ab6
Sat Aug 5 08:13:10 2023 +0300
Encodes file to base64 to avoid losing bytes
---
ceab9d276be46d6d136d6a7d48c7ed165f7bc0f1
Thu Aug 3 20:11:54 2023 +0300
New tool: Create merkle tree from file
---
67c23e3746159299d5bdd8be03ba94c5d9f2cc3a
Thu Aug 3 20:04:46 2023 +0300
Fixed the way cache is stored or not
---
b6d3c26ab4d56b8e3c94e99e43c66b1891fb6477
Thu Aug 3 19:47:06 2023 +0300
Tiny rework and cleanup
---
79abed7416cc95f83080a61c497d78891f4a7cbc
Thu Aug 3 19:40:50 2023 +0300
Cleanup
---
da98fe9e28ef47488a34b038736d0b765e1e1e8c
Thu Aug 3 19:35:27 2023 +0300
Updated example in the comments
---
11a4191c4ccb308614cb8fcf883d29c757109f45
Thu Aug 3 19:34:39 2023 +0300
Cleanup and fixed call to script
---
09e8affcadf0106bef20f2ba0a6a19e9f2e3e1fe
Thu Aug 3 19:33:17 2023 +0300
Cleanup
---
ec34fa3d4c2fd608930bc95c80283a1be2b5bf62
Thu Aug 3 19:22:33 2023 +0300
Removed git integration
---
9372f8efb478243e9575972e73b9d419706add97
Thu Aug 3 12:04:59 2023 +0300
Removed use of json2bash, exit with error if no genesis
---
8a31a8395de66dbbbfc9df821d48ca8dce7da979
Thu Aug 3 10:56:41 2023 +0300
Nullify non valid zblock
---
d67b39684bd60d9b7df54bd7900407d6ee9a5cc6
Thu Aug 3 10:51:06 2023 +0300
Adds id that counts zblocks, changed when output starts
---
46d5134382be9073bb9aac935b36821b1aeedc76
Thu Aug 3 10:46:11 2023 +0300
Minified output
---
67450601ebcbf4cd31d316e9e9a8a339a0719766
Thu Aug 3 10:43:32 2023 +0300
Changed to get params instead of query
---
eb83dc73c0f71b2cf3480b17658ef7f21e92e570
Thu Aug 3 10:34:53 2023 +0300
Simplified and fixed argument parsing
---
63744307feb91bae9206851113d08c64d6c7e413
Sun Jul 30 20:56:15 2023 +0300
Renamed ZLATEST to AK_ZLATEST
---
b86dc0b6438709b9138cd8750fe47dcb5189a80b
Sun Jul 30 20:13:47 2023 +0300
Deduped ak-zblock-show to use ak-enter
---
e2cb232a4d456bdb3d7ccb0c0eff7a07b2ae9d5e
Sun Jul 30 20:11:25 2023 +0300
cacheDir imported in API
---
58b888574923c46c3854090c5cd5d8106e39d46a
Sun Jul 30 20:08:57 2023 +0300
Added checks to detect success and failure of underlying commands being run
---
d512be24515b0afb669578d16576fe2db840990b
Sun Jul 30 20:06:37 2023 +0300
Renamed FINGERPRINT to AK_FINGERPRINT
---
c6469c308c62218884077a81c3544e9b0128327f
Sun Jul 30 20:03:30 2023 +0300
Added ak- or AK_ prefix to functions called and variables
---
6fc35fa5ddf17dfeda8d09de124fef0466ace0bd
Sat Jul 8 02:57:01 2023 +0300
Fix typo
---
77c9edf809cac2e9577e1b9de5236fd6de6be578
Sat Jun 17 02:48:36 2023 +0300
API: Error response errno -> error
---
01ff1c0a97cd36e69e21bac0776bef21be7ae374
Thu Jun 15 19:47:29 2023 +0300
Fixed script call and one bug
---
ff23bc03e5f9f3b08d7d7d60fb33614ad48f9637
Wed Jun 14 21:12:50 2023 +0300
Replaced if..elif with getopts for finding out arguments given
---
e667f1e583dda2b9d5a13cd520fdcd0acb627519
Wed Jun 14 20:50:09 2023 +0300
Making sure we get the return codes and display appropriate messages wherever needed
---
59ac2791e57066c3fd75e34f6dd037583eba71b9
Wed Jun 14 20:47:25 2023 +0300
Adapting to renaming of scripts
---
1860e2326f41382bd8c725ea867bf3a3e3c81133
Wed Jun 14 20:29:13 2023 +0300
Return an actual error message
---
d777daf5cfff0f9107efb4feecab671ed372c4fe
Wed Jun 14 20:28:21 2023 +0300
Added new route
---
cc2711769f8d90451c53e52ed68fb37cebbab7d6
Thu May 4 04:03:35 2023 +0300
Updated ipfs script
---
83680bafd73a3d4c2842902c12d0d15a030d849c
Fri Apr 21 08:52:43 2023 +0300
Fixed references to shell variables
---
5c9c4b177400c5279b6a7c3f05e9be113cf5458b
Sun Apr 16 04:48:19 2023 +0300
Added crawler for the Stellar Network, returning addresses and configuration values if any
---
b68cfb97905628e60f23c430b253e5c69eeaa3f9
Sat Apr 15 20:40:53 2023 +0300
Install script is broken
---
389cf355eb2344b4d5246a2e5c4b2ac31fec7f1b
Sat Apr 15 20:37:56 2023 +0300
Clearly trying to figure out things :)
---
0ce8b434e264b0fca5bb900ba57701ee05216170
Sat Apr 15 20:10:50 2023 +0300
still fixing installation
---
15d49c853c96ebef6c1826d0eeeeac54d0956d6f
Fri Apr 14 15:22:32 2023 +0300
Updated CHANGELOG
---
57f1866c1102e6b5fa23222bcc205c0f85917669
Mon Apr 10 15:55:08 2023 +0300
More verbose logs
---
762bee582ff2634eeef8fb08b42145d029bd1d7a
Mon Apr 10 15:54:33 2023 +0300
Changed way that we unpack the data field. Now we return both the IPFS hash value in the data field and the inner data block
---
27e2fe661df3e299d6ef9f5dfa39f12f4633746a
Mon Apr 10 15:52:13 2023 +0300
Made getZblock a bit more secure and not able to crash the app
---
02451920cffb8314656b42bb6f7dc9c8e97f366e
Mon Apr 10 15:49:11 2023 +0300
New API route to fetch content from IPFS hashes that is cached in the filesystem
---
5cafa276f4a243740113c5c813fab04918fa5c96
Mon Apr 10 15:47:17 2023 +0300
Added pagination feature, set -l to a number to crawl up to that number (starting by the latest ofc)
---
df923aade9354b03fd2dc981fe39bb9a4cbb3fe5
Mon Apr 10 15:44:49 2023 +0300
Cache better
---
025f027d9add0751c9fbaa6ffdc728bba61ca4de
Sat Apr 8 19:30:37 2023 +0300
Outputing the directory we were called from to reference the path later
---
490c94fef4446b3b8408b81788cf5e24eb018b8a
Sat Apr 8 19:29:00 2023 +0300
Changed forgotten variable name
---
704669d5056b46568ae2e3f8b65199c915fc45a9
Tue Apr 4 19:08:14 2023 +0300
Fixed installation errors
---
5ead09f48384882c64d77cd4628adbc1897302ee
Mon Apr 3 08:23:08 2023 +0300
At last a working ak-tempassin
---
2f11539eef545fc0a9761693ae55e837b460beac
Mon Apr 3 08:22:39 2023 +0300
Added ak-zblock-show with appropriate route in API with caching feature
---
05ea0e3dca7209d1490658014c5e598e4d4dfdc4
Mon Apr 3 07:40:52 2023 +0300
Pass clean formatted text to tmpfiles
---
2e7c34e1d5c2f407650648b7cba7f1621c9e8705
Mon Apr 3 07:39:16 2023 +0300
Fixed sed expression
---
21f76a6dbf6fab5311ab7f4b7b2fb5d0991ea3b2
Mon Apr 3 05:18:04 2023 +0300
Attempt to create cache places for the API to hit instead of running things
---
fc91066907e4d16a951c8d72d23aa610945f5407
Mon Apr 3 05:15:00 2023 +0300
Clean up, elimination of duplicate tempassins, fixed current directory problems, introduced new tool
---
ad7d6281475c4adb67e0a43017803aeb4a9059ce
Mon Apr 3 03:22:23 2023 +0300
Some cleanup and further working on the tool
---
f923b782d6d1dae8af03ab9f1ef709dd0c4c6b10
Mon Apr 3 01:15:44 2023 +0300
ak-tempassin is working upon mktemp from coreutils
---
d747677c2860326e7d673861319dcb0e2149daa4
Mon Apr 3 01:14:58 2023 +0300
Fixed temporary folder creation
---
4f8fb0a8acd5eec0caaf1087d7ecf91f9166c807
Mon Apr 3 00:26:07 2023 +0300
Clean up and adjustment
---
9606644a0beb4f2883e1e0f4c6c81b42ab40b3a1
Mon Apr 3 00:24:49 2023 +0300
Renaming to prefix convention, introduced ipfs wrappers so it can be easier to maintain, changes in filesplitter and filejoiner as they move sm submodule namespace... like there are namespaces in bash or something
---
fe1fb88889b2c3949383c254f3058da24ba5e3f2
Sun Apr 2 20:14:43 2023 +0300
Added some comments to what each step is accomplishing
---
cb2e7d67bd7fab16ca758b8c04243cc38c49c857
Sun Apr 2 19:26:05 2023 +0300
Updated requirements
---
a4e83a94b06110ac3a2b82c1061d0073e359eda8
Sun Apr 2 19:25:12 2023 +0300
Eliminated json_pp usage
---
1e779e30ef68bbc07fa7a205403d585868dc6b35
Sun Apr 2 19:16:48 2023 +0300
Makefile for the API
---
52e61043bcb716af42f9fd167aa2bb280bde5b5b
Fri Mar 31 21:34:47 2023 +0300
Updated test scripts
---
3023b8396d3656887a95f11e45da2e79406d64d1
Fri Mar 31 21:33:20 2023 +0300
Fixed call to the right script
---
5157dc62fc6bd010e8616ae59b462fd8c58f1d9b
Fri Mar 31 21:32:07 2023 +0300
Added two new variables
---
7257ae0bf26f85082c5a5a5ed505a55d49c0d2ac
Fri Mar 31 02:30:11 2023 +0300
Fixed ZblockValidator an ZchainValidator
---
bc99d5f59de11e712fd47c1f30c31996f50ef5d0
Fri Mar 31 02:19:28 2023 +0300
Fixed json2bash call
---
b5b6815c29dacefbe77385b8f6c0e5aad201f9b2
Thu Mar 30 17:47:32 2023 +0300
Minor rename
---
85a6991d762591fd523155c9671216601c3d60e7
Thu Mar 30 17:46:19 2023 +0300
Fixed not working values
---
381e3d2a31ca6fa184f9c5e48288c0f55f84560f
Thu Mar 30 16:58:56 2023 +0300
Updated README
---
4f1df24786d4be95e0029e6c142ce376f98377dc
Thu Mar 30 03:18:43 2023 +0300
Fixed test command
---
33ee49ef0be280bb5862cc9192b8f506503d3ea9
Thu Mar 30 01:14:43 2023 +0300
Updated README
---
e2da6d2db20093ebd2a65aad35c9991ab1a02176
Thu Mar 30 01:09:30 2023 +0300
Introducing an HTTP JSON API
---
a4901ad47d2945e9a6c6616661840c97ebbf03e7
Wed Mar 29 23:58:58 2023 +0300
Finished enter to ak-enter
---
fd4ecb94584c47aba7494972661f7c9da25f8723
Wed Mar 29 23:58:58 2023 +0300
Finished enter to ak-enter
---
d85efb21fa554877b21f08a3ffdd51ebb49c55ca
Wed Mar 29 23:56:26 2023 +0300
Fix json2bash to ak-json2bash
---
1c25589a8aca3d6dbb84a37240efd4652fbfeab7
Wed Mar 29 23:49:57 2023 +0300
Renaming of the scripts
---
7e45b9def509ff28f70c28f50f5aa931f512d81b
Wed Mar 29 23:46:45 2023 +0300
Further renaming
---
286b71a6ead8c7234cfbc0b8ece05c8239a4f32c
Wed Mar 29 23:45:49 2023 +0300
Renamed everything
---
b5394a6bd9f0b9fbd9bafc3e963dafbbc87f2ed2
Wed Mar 29 03:48:56 2023 +0300
Miner prototype
---
9fd4e766723948da785461fbd40ce18fa9b85b98
Wed Mar 29 03:28:45 2023 +0300
Updated Changelog
---
36339e1f2839305e22748b9d3cf347847592565a
Wed Feb 1 06:51:02 2023 +0200
Removed -z flag and functionality, add regex check for IPFS CIDv0
---
45f47e430c1fe28fefd14ecb1c24af508dea2399
Wed Feb 1 06:17:56 2023 +0200
Updated README file
---
62c9055ef12b179fa3a9d28d3986b2e52520ce6a
Wed Feb 1 04:57:08 2023 +0200
Updated README file
---
0968bee52889d9c5a54959264a6cf97ee4c4749e
Wed Feb 1 04:00:45 2023 +0200
Added rebase tool
---
324b9145f630463c45dc851971c2e476ea1a0613
Wed Feb 1 03:41:26 2023 +0200
Change directory to ZPROFILEDIR and remove temporary folder
---
3aaae3f2ace309f1a7e7d27b97e3a5d2c22c6304
Wed Feb 1 03:40:25 2023 +0200
Spacing
---
eda4db2f53bdecfb443558459d09bcc0690aa319
Wed Feb 1 03:39:54 2023 +0200
No reason to return the folder of the name since we don't use it
---
558af1306734d68885426e89a5de343b72302e11
Wed Feb 1 03:37:57 2023 +0200
Reverse if statement to avoid else
---
49306c23a40eb579ab872b4e7c8237aa03d53294
Wed Feb 1 03:34:56 2023 +0200
Print the key-value pair of the DATA block provided in simple valid JSON format
---
2614de5d972f2db5568cf18e08798d472d6910e0
Wed Feb 1 03:31:15 2023 +0200
Use gpg2 instead of gpg
---
d5f2aa03b95e4900ec569acefa71702ae0e4dacf
Wed Feb 1 03:30:41 2023 +0200
Don't print new lines
---
c7876f0de5e40e137c77d265df96a3bb7df85c88
Wed Feb 1 03:26:27 2023 +0200
Removed unused code
---
aeda467f9c619deb30306023aab8a0e26c42589e
Wed Feb 1 03:24:43 2023 +0200
Removed unused code
Signed-off-by: kaotisk <kaotisk@arching-kaos.org>
---
d39b26b36a7079e288dc57611364ef146ce7f0fa
Wed Feb 1 03:19:20 2023 +0200
Exits on failures, added check so we don't produce duplicate references to the same ipfs key
---
4b5a8f019e6cb58be0d4fb28d02f7ff5ce6e0197
Sat Jan 21 09:18:32 2023 +0200
Fixed spacing in usage screen
---
2e1735069f128ec1b40d0f9890d4791849094d42
Sat Jan 21 08:50:18 2023 +0200
Replaced tabs with spaces, changed exit code checkers to only check for non-zero values, added exit when ak-data-expand fails.
---
07db19f526755d3d8acc3f0b6b7f678b00650400
Sat Jan 21 08:13:00 2023 +0200
Added minimal usage message when no arguments
---
b60e089c93cd8b93bd87e5a3a42bae071d6d4ad0
Sat Jan 21 08:11:53 2023 +0200
Expands the whole data file instead of outputing only ipfs and detach values
---
4d3f83f631e5513fbdec16f056dc8a7d48871479
Sat Jan 21 08:10:16 2023 +0200
More verbose log output
---
308354f0ff654f9a1b4ecf99630f575f8149ca41
Sun Jan 8 22:27:05 2023 +0200
Forgot a line that outputs a brief JSON object for the data given
---
f7cd24457c84358ca131c6ca5a77243ca7d95669
Sun Jan 8 21:46:54 2023 +0200
Made script more readable
---
f975639c8013e7450878ae9cffdf8c0e34a01d95
Thu Dec 15 09:26:22 2022 +0200
Outputs only the sha512sum of the map file created
---
b0bd9068957bd96beaa3eb4f15acd6a9804bba70
Thu Dec 15 07:16:20 2022 +0200
Commented out -xe flags from script and generated script, outputs map's hash.
---
ab13523b261dc973410b06d6ebf6ad6f395329bb
Thu Dec 15 06:39:34 2022 +0200
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change. Commented out git usage.
---
ddfd339bb23e8cec8c697ffbf02553629be166b4
Thu Dec 15 06:37:41 2022 +0200
The test failed as sha512sum didn't successfully verified the resulted file
---
c8138911d13855fa17e501cb148b99b5a4e4c85a
Thu Dec 15 06:36:33 2022 +0200
Adapting to solution with printf
---
2e17fa8cfe2dfbd4634eacc2f2735d9bff032d2a
Mon Dec 12 04:14:25 2022 +0200
renamed readme
---
25a6710b5d206a6edb51d5efeeafc6b0d7e2d9a2
Sat Dec 3 01:38:38 2022 +0200
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change, also provide a useful message in case of failing pubishing
---
7e08d401a7d9acba7b9e319ca981b78dd8b00556
Tue Nov 15 00:31:26 2022 +0200
File splitter and joiner scripts
---
1db7cda752ed90919917b6979975eae0c7ed4af3
Wed Nov 2 03:16:42 2022 +0200
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change, also provide usage text
---
082177d774668ee925e43da0d741d8642d87f9ea
Wed Nov 2 02:51:19 2022 +0200
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change
---
db3c53b069617c57f49985b7ad8e5a2f97d1f54d
Wed Nov 2 02:37:40 2022 +0200
Removed trailing new lines from echo output (-n flag added)
---
83398721f7b4d6d4b7ef9e4c5607620d6353045b
Wed Nov 2 00:13:08 2022 +0200
Removed trailing new lines from echo output (-n flag added)
---
b0379d703f09dc6db6d7a21a60fc628012a88965
Mon Oct 31 05:14:26 2022 +0200
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change
---
099326c77bf347a056f3168b800592675087643a
Mon Oct 31 04:57:28 2022 +0200
Updated the way to expand the data part of each block
---
06c1e6bf576bd36f8fde0b5be6200c79a387cfa8
Thu Oct 27 14:14:40 2022 +0300
Better implementation that doesn't produce splitted CIDs
---
ec812d4606fcda595448967b04ec6ee59ecba979
Tue Oct 25 13:32:57 2022 +0300
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change
---
c230f21f1a7d52418cdc025b15e5cbd669204d9f
Tue Oct 25 13:32:19 2022 +0300
Adapting to 96ae225b2a179ec36fdb01eaf906fec096002a08 change
---
96ae225b2a179ec36fdb01eaf906fec096002a08
Tue Oct 25 13:29:34 2022 +0300
New log format: script, level, message
---
4c76faf4c1a3d41fbd4c208d4ed43063077a2558
Tue Oct 25 13:25:43 2022 +0300
Added usage information
---
43fd4cd936eed3cbb9651942d7f21115dca1ea1d
Mon Sep 19 17:46:09 2022 +0300
Reformed log messages to much the generic style approach
---
2b802d54e660b6bb8961564870c19fe9c0665a68
Mon Sep 19 17:32:26 2022 +0300
Changed way of getting latest version
---
04f746ddb8a6403ac2f1e369b7b860a2fa6b8a6d
Sat Sep 17 12:05:46 2022 +0300
It was not grepping the correct value, resulting to duplication in rc files
---
dfbcb50aaf34520512f7b94d76b3c355e498574a
Sat Sep 17 11:07:07 2022 +0300
Return counted blocks to the log even if we end up on pseudo-genesis
---
e002960333010d784ed37a0b8cca90efb492dc9c
Thu Sep 15 07:17:40 2022 +0300
Changed error message to warning message since it currently doesn't crash anything.
---
a89cbaaea98bca707a9438613d3e25888c4c6387
Thu Sep 15 07:16:28 2022 +0300
mirroring change of go-ipfs to kubo
---
dbcf60db8d077772b024428867ae1f8997013aeb
Wed Sep 7 14:28:43 2022 +0300
Removed trailing spaces
---
1d5fa45dbc08be1842d7df86aafa056745f772e4
Wed Sep 7 13:45:33 2022 +0300
Fixed usage screen options spacing
---
452061f3271e4d6643a1cde4b69beb703a958561
Wed Sep 7 13:42:02 2022 +0300
Modified the reference to changelog with a link to the actual file
---
7c6953f2e5197275efdd5553b59a5d8df40cff38
Wed Sep 7 13:40:12 2022 +0300
The bash script I am using to create the CHANGELOG file
---
fd75073ead22af51224691c3bd58097aa5030ab4
Wed Sep 7 13:37:02 2022 +0300
Updates!
---
bd179055cd591fa47f4be21cc08f71195656f789
Wed Sep 7 13:29:51 2022 +0300
Added some checks to make sure zblocks are zblocks and blocks are blocks
---
d8ea00662a931b438fa984b12d50387cd9f3c397
Wed Sep 7 03:10:32 2022 +0300
Fixed breaking heading typo, updated enter -h text.
---
1a2717207fd47f6c0a3dc4948fb87106504789dd
Wed Sep 7 01:07:01 2022 +0300
Enriched with information, added a dependency, a how-to-update and mentioned a CHANGELOG file.
---
e825d716f66013de7837bd82dfdea80a80b15e13
Wed Sep 7 01:04:52 2022 +0300
Added change log in case you don't want to git log yourself
---
199e8b673fdde520f0501cde0943388d99a83069
Wed Sep 7 01:00:42 2022 +0300
Tool to run after git pull so you can skip relaunching init.sh or install.sh
---
d54132bfd7cc569cfef7beda0860a375625383ea
Wed Sep 7 00:58:01 2022 +0300
Tool to calculate the size of a zchain
---
ae6064bc89a0cbb73d7416bb5103aba42d331f97
Wed Sep 7 00:53:09 2022 +0300
Tool to extract all the IPFS CIDs from a zchain
---
581d4a14cda6b84a1d0b5bd8a5d40d58f93b554a
Wed Sep 7 00:52:16 2022 +0300
Reworked logging and Usage
---
7bb430f171a456a0eb7332886b6cfae0f0737ac9
Wed Sep 7 00:50:41 2022 +0300
Removed trailing newline from output
---
325542061f289d1329a0c38db3a34d591aa9e931
Wed Sep 7 00:49:29 2022 +0300
Added a functionality I forgot to mention in the Usage section, changed a tag of a log message
---
c9f0da132ef5af2078fe2245bbf16d1350ae2dfc
Wed Aug 10 05:25:46 2022 +0300
README update with todo and thoughts
---
a3a12739f07be87d2df96671ed437bbb10064ae2
Wed Aug 10 04:58:17 2022 +0300
Some edits to distinguish use cases
---
f61aea58a45dec7ac9ed0216895eb032cec42424
Wed Aug 10 04:40:19 2022 +0300
No longer initiating with README file
---
d1be63af8bf6683fb0f53ec26991277bf0f4423e
Wed Aug 10 04:39:14 2022 +0300
Simple duplication of code
---
d6595e3a11736008ce10389ae81e3ea43e53b615
Wed Aug 10 04:38:09 2022 +0300
Added a function to return from IPFS as well
---
e894f848a4cee589b3e5fe915ad23e09aedcfd6f
Mon Jul 25 19:36:19 2022 +0300
Comments and reference scripts are a feature and a mechanism. Comments will use reference to create the reference to the zblock we want to comment at, while comments will produce the zblock with our comment only.
---
57281aea1ddf11ad4fb0543c4c4ba205ee33eee3
Sun Jul 24 09:45:34 2022 +0300
Updated logging style
---
fb478a0780564cf3c80cfc1e8e4c1ea573e8f02e
Sun Jul 24 08:02:57 2022 +0300
Added more
---
77ee96aff5b215bab4a8fd567b7aa6b6e6b30961
Sun Jul 24 07:48:27 2022 +0300
Updated readme
---
7b8baf0e6301b7dbd57e0c0f3433e36d57b3be82
Sun Jul 24 07:31:52 2022 +0300
Since we reached gpg verification of block signatures, let's do this the new default for when recursing a zchain. Thoughts?
---
de432985d4e2e0bb3b1159173599dd5716bbdee3
Sat Jul 23 18:03:03 2022 +0300
Takes two arguments, one for type of log entry, error, info for now
---
29cbba119d6c7328a95703a9c365db369f6097d5
Sat Jul 23 17:59:54 2022 +0300
GPG verification and an aesthetic patch for logs
- Added gpg verification option (currently works for hosted chain)
- Refactored the log output
---
a22be9abdd594cdb7b3205b99dbebd8c3ebbef2e
Sat Jun 25 18:29:02 2022 +0300
Simple check tool for zchain. It makes sure that your blocks are going down to a seed block (default seed: IPFS hash link of an empty file)
---
32bf52722a1c7a4f5d831aca38f5e05510d8aca8
Sat Jun 25 18:26:13 2022 +0300
Simple AK check for IPFS integrations
---
87f2ab23e54896d648ab14c958a631ad8d2f138d
Sun Jun 19 22:02:35 2022 +0300
Fixed bug that outputs invalid json when first block does not refer to GENESIS. We force an entry on the fly for it.
---
1e016904fa37c4bc3673dbafa4b9f89fd3db3d1d
Sun Jun 5 01:30:32 2022 +0300
New flags and help
---
1e965d6723ce0a9371d1166d29b246caf5ba8adf
Wed May 18 17:50:51 2022 +0300
Added --show-zblocks-only
Feature:
Outputs your local's chain zblocks, with their signatures,
timestamp, gpg public key and previous zblock. Iterates the whole chain
and returns a JSON array of these entries sorted from latest to oldest.
---
87f0e0a083bb7e1978cc03a92b304ff545701ebb
Fri May 6 07:55:00 2022 +0300
fixed news module, added ipns flag on enter module
---
01df6934a465ed046ce0af746c2d996ea383c876
Fri May 6 07:46:23 2022 +0300
Fixed some wrong directory and miscuttings of fields
---
3c551c3f567a3342f3168d08eae52a97bc8b2ed6
Wed Apr 20 08:33:25 2022 +0300
a bit of work on name resolving
---
2d5df53b1aacc4e5528541cb98bfcf00dffa6c38
Fri Feb 11 10:45:09 2022 +0200
removed trailing comma
---
700d27bc66169cf0ef38ce8399166e62e0c835df
Fri Feb 11 10:42:27 2022 +0200
[module] Added ak-folders module like ak-files but for folders
---
60633e776cf4c1ce298a6fd83a59045dd756e056
Fri Feb 11 10:36:31 2022 +0200
Change order of procedure, leaving name publishing for the end
---
b884eac5c8b3742924ca29658ec2c9e1f2e1c972
Fri Feb 11 10:33:18 2022 +0200
Fixing possible problems related to IPFS keys
---
ea876839b8026694cbc09b2903d5dd9d690c0b0a
Fri Feb 11 10:18:03 2022 +0200
Fixed logging
---
0ae7d319f8138e6544fab3f0ccf2c156ba044234
Fri Feb 11 10:17:15 2022 +0200
Fixed escaping and the forgotten grep in pipes
---
5b6c322d0bb8a131aa947b135a731a3f88e50c2d
Fri Feb 11 10:15:14 2022 +0200
IPFS check tool for debugging IPFS
---
c353ce52726914602b27a80950138ce56c28047d
Fri Feb 11 09:47:04 2022 +0200
Finally?
---
1feca3a43dfa1f2e24c2150088d7f2125dfbf6ea
Fri Feb 11 09:41:17 2022 +0200
Exit script if pack_z_block fails
---
6185e933cf51bb9cc6d43d03b0bcbbb424f084a8
Fri Feb 11 09:37:47 2022 +0200
Removed TEMPASSIN from FILE path on gpg command as well
---
b5a3b718159d1ec0aa8edc585c196fc1357f85e8
Fri Feb 11 09:36:31 2022 +0200
Removed TEMPASSIN from SIGN_FILE path on gpg command
---
221672ff13aeb390bccbf14a443733667ac9a77b
Fri Feb 11 09:33:54 2022 +0200
Added some more debug messages
---
d643dfcd3548fc9c0fbb01bee3a88984000ecea6
Fri Feb 11 09:29:51 2022 +0200
Added some debug messages
---
f3cbbde027900643d5ec56af6746be0dab9dfb9e
Fri Feb 11 09:23:39 2022 +0200
more fixes++
---
143b88e33d8c09e6baf947f9d4f2550458b069d8
Fri Feb 11 09:22:27 2022 +0200
more fixes
---
06ab9d299786e3d25b7f3726a6877c4072aa6abe
Fri Feb 11 09:19:09 2022 +0200
files completed?
---
c7d1a43d41f848663c0de87b5c8d38d02ca7d708
Fri Feb 11 09:08:03 2022 +0200
possible fix
---
e604f9b5fbf97d40da6ffaa69cc4755dce667a12
Fri Feb 11 09:05:55 2022 +0200
possible fix
---
3376c472fada0453eaed54b66fb62316deab22ef
Fri Feb 11 08:00:54 2022 +0200
Further solving
---
cf5e5e6833383fde13bf91c82daa76e3114ecfda
Fri Feb 11 07:53:33 2022 +0200
Fixed TEMPASSASIN -> TEMPASSIN (WTF)
---
57f0f016a6c9947c19cc4ebab0c50193f17935b5
Fri Feb 11 07:52:48 2022 +0200
Better written I suppose
---
3008ae73a432f19ee369fe05ee72a0199d663b30
Fri Feb 11 07:43:04 2022 +0200
[module] fix
---
c96e3709d1b019dd1217c921b2070f6221db2943
Fri Feb 11 07:39:21 2022 +0200
[module] ak-files
---
d5f9085737874dcef201a8ddbdc0b8cb32d969b1
Fri Feb 11 07:24:40 2022 +0200
possible fix for not installing genesis
---
bf634db74ecdd43263042c2a9f9a25bcb4a5d6ba
Fri Feb 11 07:18:19 2022 +0200
Added debug messages for each step
---
3a6c8b17c28c165a41dbd8b1d6741030a97f814b
Fri Feb 11 07:02:19 2022 +0200
removed duplication adding another one
---
3e72a68646644769b2a0c5b8c36429df7d93a641
Fri Feb 11 06:58:57 2022 +0200
possible fix
---
d87a8bfc818371a31e3b0ad22f505049b0060b32
Sat Feb 5 17:49:29 2022 +0200
Added some text explaining and a usage message when no arguments
---
fc8efd3bd49b8b4fc3a1c5d77020be75824d26c3
Tue Feb 1 20:45:01 2022 +0200
Check step by step the procedure in order to be sure the right thing is happening. Fixed an error where wrong path was trying to be copied
---
9bba811e7c6c1081cd73a935ee9eb043b6574e0a
Tue Feb 1 20:43:36 2022 +0200
Added GPG key on the configuration output
---
347e75c7b74ed95f967f0f51a08b49c98eeaa9d6
Mon Jan 31 16:32:37 2022 +0200
show and publish implementation
---
f768939b36dd377bde182805bda24e9646620625
Mon Jan 31 15:54:48 2022 +0200
Draft tool for configuration build/read/publish
---
861f2b08841e5b8e96ad9f8dc0f85ab73c35b742
Mon Jan 31 15:31:35 2022 +0200
Excluded README file from index
---
95ffb10421341080bec6529c06b5e7fa2c23979d
Fri Jan 28 11:19:13 2022 +0200
[Change and fix]
Change:
- Brought up detach signatures for both BLOCK and DATA.
Fix:
- Reset timestamp to avoid printing the latest to blocks that are not
have any.
---
e52404199eb6a4ef79eb5395c8cd92f37430c13c
Thu Jan 27 12:15:59 2022 +0200
Added info about ContainerFile
---
13524d39ee177d8324c1119f4dd1bc23e2d72ed1
Thu Jan 27 06:28:02 2022 +0200
Additions and changes
- Added more explanotary depedencies, with versions
- Minor formatting on #install section
---
ddc7694beeb920f2fd740f263126c0a02d889ddd
Wed Jan 26 22:13:14 2022 +0200
Grammar fix
---
da87a28ac0d4f6779ce17be75e9e4183a762c489
Wed Jan 26 22:06:46 2022 +0200
Added timestamp inside BLOCK.
Since most of the transactions will be done offline and then published,
is better to have a timestamp for each addtion.
---
fdb9b2f60e04520c92bc47077bd3815ac5904000
Tue Jan 18 04:44:06 2022 +0200
Fixed formatting
---
68dc2b09cc813ff6f889a688f7e99095b2e6c6a3
Tue Jan 18 04:42:22 2022 +0200
Update TODO list
---
ad961c137782a96d4f9b2c27b0422ce5155f4f38
Tue Jan 18 04:37:50 2022 +0200
Fixed formatting
---
8adacb20369410f1fa70e14d640d6d681b10851e
Mon Jan 17 20:53:06 2022 +0200
Making the output to be JSON, log messages to log file
---
117d9cd6208ca13f6dfdbd90ace987d076189cde
Wed Jan 5 04:35:27 2022 +0200
Changes
Minimized the output
Redirected output to null for programs used
---
94fa2007d44c76b4856ed85a52075b40842697ee
Tue Jan 4 05:46:59 2022 +0200
Difference from arching-kaos-infochain script is the addition of timestamp
---
f51747953f55827b8b2cca8f7aaaebe3f3015d22
Sun Dec 26 08:56:24 2021 +0200
Added logfollow to follow logs
---
e28ed03fb50f212b72b8ccf3ff8fd8e44aece278
Sun Dec 26 08:55:13 2021 +0200
Changed email example search to test@test.test
---
d686a5cd76a23bb7bbed8f3b976a3c410580ca7b
Sun Dec 26 08:54:24 2021 +0200
Fixed warning for default branch when using git, set master
---
29d256a370622139ed5b9916726b0730121d12e4
Sun Dec 26 08:25:40 2021 +0200
Added counter
---
8569905d2f740e94053def935a08c20e589d8d68
Sun Dec 26 08:10:42 2021 +0200
Lose the comment
---
6979e55191143e455f678873c3ec7c1b0e7ac953
Sun Dec 26 07:44:20 2021 +0200
Removed useless -zsh from log
---
6ad3011ba81cdca601f3598d2b10139c7b395b5a
Sun Dec 26 07:15:45 2021 +0200
Added tool for list following artifacts, started on Sun 26 Dec 07:12:53 EET 2021
---
811bf46ff36ff7ad939318b26bccc1b9715dc427
Sun Dec 26 07:11:11 2021 +0200
Added tool for unfollowing, started on Sun 26 Dec 06:58:08 EET 2021
---
92ae94d36bfb8730b8c07f14feca990e0701bb43
Sun Dec 26 06:55:54 2021 +0200
Added follow tool
---
98b8d407cb4650234d15cfe4d9322ad3bfe6c341
Sun Dec 26 06:34:03 2021 +0200
Added generic tempassin (temp folder creator)
---
e96c39de735baa31012f09589fb493f5960ef595
Sun Dec 26 06:33:06 2021 +0200
Added profile tool
---
b050dabab59a10f0898ea6e2fa0a83b82ff01647
Sun Dec 26 06:26:13 2021 +0200
Added various stuff
- gpg imports now from repo the test key
- git is set up for testing
- some ports are exposed for ipfs
- added screen
- added pinentry
Known bugs
-----------
Major:
- ipfs doesn't find interfaces to listen to
Minor:
- gpg generate thing is not working
---
ebad312dc41719d902e41c29c74c13723f1deab5
Sun Dec 26 06:23:55 2021 +0200
Fixed logging and assube bash is the default shell
---
b44bbcf99996e8f0c6a774cc7044ced11949ffb2
Sun Dec 26 06:23:23 2021 +0200
Turned echos to log messages
---
52bf926baf3957c799da01d7329db5c8ea07bb22
Sun Dec 26 06:22:10 2021 +0200
Added repositories tool
---
0e544652466d338b23ae4356983242d3619445c1
Sat Dec 25 23:52:53 2021 +0200
Added logs file creation
---
572590b670582f5d9fca8db61f9aaf417a60c9a9
Sat Dec 25 23:50:18 2021 +0200
gpg2 to gpg
---
57fc68cdd42a22c381928c9ece96bd06ae870ef3
Sat Dec 25 23:49:29 2021 +0200
Added a line after usage for the essance
---
c3b69b3c2dbf62fa789cda588f0077b8c5bc9732
Sat Dec 25 18:03:53 2021 +0200
Added temp folder
---
3006c1936ed54510dba9b36fe4a18c8981ba361d
Sat Dec 25 17:40:38 2021 +0200
Added cleaner of temporary folders
---
136f49738454f5441b7b44a76a837aea16c79b71
Sat Dec 25 17:40:02 2021 +0200
Added temporary folder
---
16ef6e4c03e1c69afd9419888f475fe5fb16e9b7
Fri Dec 24 23:17:15 2021 +0200
Changes and fixes
- fix binpath and make directories
- changed logging
- fix copy to binpath
---
88adb6f4bd9b3a1ce01ce05317b8aee1a8301ff3
Fri Dec 24 20:35:16 2021 +0200
Log writer to file
---
fc73bd4a564dc4f89129dc00344acdd95e68142b
Mon Dec 20 20:36:17 2021 +0200
Updated requirements and TODO
---
339a5d4d9cf54519cad92d5c74da9eb3e0ea864a
Sat Dec 18 08:52:10 2021 +0200
Changes
- exit codes
- gpg2 to gpg
- break to exit
---
606e3bd269fdc2cf687db82c43a5346f8081864f
Sat Dec 18 08:33:02 2021 +0200
Different approach on installing, now symlinks
---
6cbf9b47f966556f92565392e83b410729c8be35
Sat Dec 18 08:10:56 2021 +0200
Complete crawler based on the ZLATEST file
---
7b4deed0b8fe309631f35dfc9ed9b6c09d09f325
Sat Dec 18 08:01:13 2021 +0200
Changes
- FINGERPRINT assign is removed since is now part of config and
environment
- IPFS files system lowercase policy :)
- Shorten title of script
- Mess with exit codes
- Pushes ZBLOCK's CID into ZLATEST file
---
af5e46aa4c258a115ac2e5894a69aa8a019c3009
Sat Dec 18 07:59:48 2021 +0200
Changed order of commands
---
73125773584e562b07e2246aa2e11838b0ce7052
Sat Dec 18 07:56:07 2021 +0200
Simple pipeline using sed
Inputs a json object with keys and values
Outputs a bash like assigning to variables
---
00d341f72b8a1ef978810b57fc2305aaf7008872
Sat Dec 18 07:54:34 2021 +0200
Added 3 folders to store ZBLOCKS, BLOCKS and DATA
---
0a101637c6e0c2528b9ea9eb02892da3d862c56c
Sat Dec 18 07:50:49 2021 +0200
Changes
- lower case names in ipfs fs
- gpg2 to gpg since gpg is the binary on most distributions
- add 3 new folders to store references to ZBLOCKs, BLOCKS and DATA
---
288e24bcd9c1905bc46a5bc97247bc6c9f642634
Sat Dec 18 04:43:41 2021 +0200
Enter script
- Gets the ZLATEST and scrolls back up to the first ever block
- Dry run script, just scrolls the chain based on latest
---
a6a3d2d893e852b860af6baff507b602d64f704b
Thu Dec 16 11:58:16 2021 +0200
Fix, missing double-quotes in filename attribute
---
64d66eac9c37d2d42e6f9cdc9f7dc35e57aa88c3
Thu Dec 16 11:18:28 2021 +0200
New command create() for news script
- ZNEWSDIR check/create
- Create now adds to ZCHAIN
- git repo integration and updating for new articles
- fixes
---
d38aa53173dc000e2200d3fbc562677c0162df98
Thu Dec 16 11:14:40 2021 +0200
Initiate ipfs after installation
---
0ae00eb5468fd8cc681705e0b127d02dfc0eab50
Thu Dec 16 11:12:30 2021 +0200
Fixes (2):
- Changed name to variable for rc file
- Changed order of running scripts
---
7f619627dfba6f130b73584241b86e6245a9cd8b
Tue Dec 14 03:59:46 2021 +0200
News writer, indexer, create from scratch new, add from file
---
03a0fd66bd696a5cbf9cd91dde242df60e4a6f96
Tue Dec 14 03:50:02 2021 +0200
As far as I 've been
---
e93bc58da017610d6f92d68b40f908d09d529d53
Tue Dec 14 03:42:41 2021 +0200
Readme addition
|