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
|
---
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
|