-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.html
1283 lines (1182 loc) · 72.5 KB
/
changelog.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Changelog and Status Information | ArtikelSchreiber.com</title>
<meta charset="UTF-8" />
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=1, initial-scale=1" />
<meta name="keywords" content="Changelog, Status information, Service, Backend, Frontend, Server, API" />
<meta name="description" content="Status Information and Changelog for Server, Webservices and Backend for ArtikelSchreiber.com" />
<meta name="mobile-web-app-capable" content="yes" />
<meta property="og:title" content="Changelog and Status Information | ArtikelSchreiber.com" />
<meta property="og:description" content="Status Information and Changelog for Server, Webservices and Backend for ArtikelSchreiber.com" />
<meta property="og:url" content="https://www.artikelschreiber.com/en/" />
<meta property="og:image" content="https://www.artikelschreiber.com/images/logo.png" />
<meta property="og:site_name" content="ArtikelSchreiber.com" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="Website" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="531" />
<meta property="og:image:height" content="628" />
<meta property="og:image:alt" content="Changelog and Status Information | ArtikelSchreiber.com" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="artikelschreiber.com" />
<meta name="twitter:title" content="Changelog and Status Information | ArtikelSchreiber.com" />
<meta name="twitter:description" content="Status Information and Changelog for Server, Webservices and Backend for ArtikelSchreiber.com" />
<meta name="twitter:creator" content="artikelschreiber.com" />
<meta name="twitter:image:src" content="https://www.artikelschreiber.com/images/logo.png" />
<meta name="twitter:domain" content="www.artikelschreiber.com" />
<meta name="twitter:url" content="https://www.artikelschreiber.com/" />
<meta name="twitter:image" content="https://www.artikelschreiber.com/images/logo.png" />
<link rel="icon" type="image/png" sizes="120x120" href="https://www.artikelschreiber.com/images/apple-icon-120x120.png" />
<link rel="canonical" href="https://www.artikelschreiber.com/status/" />
<link rel="alternate" href="https://www.artikelschreiber.com/status/" hreflang="x-default" />
<!-- https://mincss.com/example2.html https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_atob -->
<style>
body,textarea,input,select{background:0;border-radius:0;font:16px sans-serif;margin:0}.addon,.btn-sm,.nav,textarea,input,select{outline:0;font-size:14px}.smooth{transition:all .2s}.btn,.nav a{text-decoration:none}.container{margin:0 20px;width:auto}@media(min-width:1310px){.container{margin:auto;width:1270px}}.btn,h2{font-size:2em}h1{font-size:3em}.btn{background:#999;border-radius:6px;border:0;color:#fff;cursor:pointer;display:inline-block;margin:2px 0;padding:12px 30px 14px}.btn:hover{background:#888}.btn:active,.btn:focus{background:#777}.btn-a{background:#0ae}.btn-a:hover{background:#09d}.btn-a:active,.btn-a:focus{background:#08b}.btn-b{background:#3c5}.btn-b:hover{background:#2b4}.btn-b:active,.btn-b:focus{background:#2a4}.btn-c{background:#d33}.btn-c:hover{background:#c22}.btn-c:active,.btn-c:focus{background:#b22}.btn-sm{border-radius:4px;padding:10px 14px 11px}label>*{display:inline}form>*{display:block;margin-bottom:10px}textarea,input,select{border:1px solid #ccc;padding:8px}textarea:focus,input:focus,select:focus{border-color:#5ab}textarea,input[type=text]{-webkit-appearance:none;width:13em;outline:0}.addon{box-shadow:0 0 0 1px #ccc;padding:8px 12px}.nav,.nav .current,.nav a:hover{background:#000;color:#fff}.nav{height:24px;padding:11px 0 15px}.nav a{color:#aaa;padding-right:1em;position:relative;top:-1px}.nav .pagename{font-size:22px;top:1px}.btn.btn-close{background:#000;float:right;font-size:25px;margin:-54px 7px;display:none}@media(max-width:500px){.btn.btn-close{display:block}.nav{overflow:hidden}.pagename{margin-top:-11px}.nav:active,.nav:focus{height:auto}.nav div:before{background:#000;border-bottom:10px double;border-top:3px solid;content:'';float:right;height:4px;position:relative;right:3px;top:14px;width:20px}.nav a{display:block;padding:.5em 0;width:50%}}.table th,.table td{padding:.5em;text-align:left}.table tbody>:nth-child(2n-1){background:#ddd}.ico{font:33px Arial Unicode MS,Lucida Sans Unicode}.row{margin:1% 0;overflow:auto}.col{float:left}.table,.c12{width:100%}.c11{width:91.66%}.c10{width:83.33%}.c9{width:75%}.c8{width:66.66%}.c7{width:58.33%}.c6{width:50%}.c5{width:41.66%}.c4{width:33.33%}.c3{width:25%}.c2{width:16.66%}.c1{width:8.33%}@media(max-width:870px){.row .col{width:100%}}.msg{background:#def;border-left:5px solid #59d;padding:1.5em}
.hero{background:#eee;padding:10px;border-radius:10px;margin-top:2px}h1{margin-top:0;margin-bottom:.3em;font-size:18px}h2{margin-top:0;margin-bottom:.3em;font-size:15px}h3{margin-top:0;margin-bottom:.3em;font-size:18px}h4{margin-top:0;margin-bottom:.3em;font-size:18px}h5{margin-top:0;margin-bottom:.3em;font-size:18px}.c4{padding:10px;box-sizing:border-box}.c4 h3{margin-top:0}.c4 a{margin-top:10px;display:inline-block}.divScroll{overflow-y:scroll;height:250px;width:650px}.nm-button{text-transform:uppercase;padding:5px;color:#000;font-weight:900}.video-container{position:relative;padding-bottom:3.25%;padding-top:30px;height:0;overflow:hidden}.video-container object,.video-container object,
footer a{text-decoration:none;color:rgba(0,0,0,0.8)}
.tooltip{position:relative;display:inline-block}.tooltip .tooltiptext{visibility:hidden;width:140px;background-color:#555;color:#fff;text-align:center;border-radius:6px;padding:5px;position:absolute;z-index:1;bottom:150%;left:50%;margin-left:-75px;opacity:0;transition:opacity 0.3s}.tooltip .tooltiptext::after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip:hover .tooltiptext{visibility:visible;opacity:1}
textarea {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: 100%; max-width:95%;}
ledgend {max-width:95%;}
.linkme {width: 100%; max-width:95%; height: 47px;}
iamsmaller {font-size: 12px;}
.input-res {width: 100%; max-width: 500px; box-sizing: border-box; }
html { font-size: calc(1em + 1vw) }
.responsive { max-width: 100%; height: auto; }
#footer {font-size:14px; position: sticky; bottom:0px;}
#footer_ul {overflow-x:hidden;white-space:nowrap; width: 100%;}
.footer_ul_li {display:inline; margin: 5px;}
#header_ul {list-style-type: none; margin: 0; padding: 0; overflow: hidden; xbackground-color: #333; }
.header_li {float: left;}
.header_li a {display: block; color: white; text-align: center; xpadding: 14px 16px; text-decoration: none; }
.header_li a:hover:not(.active) { background-color: #111;}
.active { background-color:#3c5;}
fieldset > ul > li {margin:7px;}
</style>
</head>
<body itemscope itemtype="https://schema.org/WebPage" class="hmedia" style="text-align: left; overflow-wrap: break-word; word-wrap: normal; word-break: break-word;" translate="yes" lang="en">
<a name="IamOnTop"></a>
<span id="body"></span>
<header>
<nav class="nav" tabindex="-1" role="navigation" onclick="this.focus()" aria-label="Navigation">
<div class="container">
<a hreflang="en" href="https://www.artikelschreiber.com/status/" title="Automatically write english articles"><img src="https://www.artikelschreiber.com/images/flags/en.png" width="32" height="32" alt="English Flag" />Changelog</a>
<a href="https://www.artikelschreiber.com/en/" target="_self" hreflang="en" title="SEO Tool: Write an article for digital marketing | ArtikelSchreiber.com"><img src="https://www.artikelschreiber.com/images/flags/en.png" width="32" height="32" alt="English Flag" title="SEO Tool: Write an article for digital marketing | ArtikelSchreiber.com" />Text Generator</a>
<a hreflang="en" href="https://www.unaique.net/en/" title="AI Text Generator for Content Marketing | UNAIQUE.NET"><img src="https://www.artikelschreiber.com/images/flags/en.png" width="32" height="32" alt="AI Text Generator" />AI Text Generator</a>
<a href='https://www.unaique.com/' title='AI WRITER | UNAIQUE.COM' target='_self' hreflang='en'><img src="https://www.artikelschreiber.com/images/flags/en.png" width="32" height="32" alt="AI WRITER | UNAIQUE.COM" />AI WRITER</a>
</div>
</nav>
</header>
<div class="container">
<br />
<fieldset>
<legend><b>Changelog for Webservices, Backends and Servers for ArtikelSchreiber.com and unaique.net</b></legend>
<br />
<h1 style="font-size:18px;font-weight: bold;" role="heading" aria-level="1"><b>Changelog: Development Status Update for Webservices, Backends and Servers for ArtikelSchreiber.com and unaique.net</b></h1>
<br />
<blockquote cite="https://www.artikelschreiber.com/" >
<div class="row">
<div class="col c1">
<img src="https://www.artikelschreiber.com/images/logo.png" height="75" width="75" alt="ArtikelSchreiber.com" />
</div>
<div class="col c5">
<strong><h2 style="font-size:18px; font-weight: bold;">"ArtikelSchreiber.com will forever be free of costs!"</h2></strong>
CEO & Founder
</div>
<div class="col c1">
<img src="https://www.artikelschreiber.com/images/logo.png" height="75" width="75" alt="ArtikelSchreiber.com" />
</div>
</div>
</blockquote>
<br />
<b>Please consider to link to us:</b> <textarea class="linkme" id="myInput" name="myInput"><a href="https://www.artikelschreiber.com/" hreflang="de" title="SEO Optimizer: Ghost Writer zum Hausarbeiten schreiben mit Ghostwriter Service und dem kostenlosen SEO Tool ➡️ Jetzt gratis nutzen">SEO Optimizer: Ghost Writer - Hausarbeiten schreiben mit KI</a></textarea>
<div class="tooltip">
<button onclick="myFunction(); jsLinksFunction('linkshare_status_en');" onmouseout="outFunc()" title="Click here to copy the text to the clipboard!">
<span class="tooltiptext" id="myTooltip">Copied to clipboard!</span>
Copy Text
</button>
</div>
<br />
<fieldset lang="en">
<p>
<b><u id="SocialShareButtons">Share your Article:</u></b>
<p>
<ul role="list">
<li role="listitem" id="shareFacebook"></li>
<li role="listitem" id="shareTwitter"></li>
<li role="listitem" id="shareWhatsApp"></li>
<li role="listitem" id="shareTelegram"></li>
<li role="listitem" id="shareLinkedIn"></li>
<li role="listitem" id="shareEmail"></li>
<li role="listitem" id="sharevKontakte"></li>
<li role="listitem" id="shareTumblr"></li>
<li role="listitem" id="shareXing"></li>
<li role="listitem" id="shareLineit"></li>
<li role="listitem" id="shareSkype"></li>
<li role="listitem" id="shareSnapChat"></li>
<li role="listitem" id="shareReddit"></li>
<li role="listitem" id="shareFlipboard"></li>
</ul>
</p>
</p>
</fieldset>
<br />
<b>Date: 2023 October</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Veröffentlichung von: <a href="https://rechthaben.net/lifestyle/gedicht-your-beautiful-blue-eyes/" target='_self' hreflang='de' title="Gedicht: Your beautiful blue Eyes">Gedicht: Your beautiful blue Eyes (für Laura Faye)</a></li>
<li>Veröffentlichung von: <a href="https://rechthaben.net/beratung/feststellung-der-staatsangehoerigkeit/" target='_self' hreflang='de' title="Feststellung der deutschen Staatsangehörigkeit">Feststellung der deutschen Staatsangehörigkeit</a></li>
<li>Sprache: Deutsch, Englisch, Spanisch, Italienisch, Russisch, Französisch - Einbau des Schema.org "SoftwareApplication"</li>
<li>Veröffentlichung von: <a href="https://github.com/sebastianenger1981/BitJoe" target='_self' hreflang='de' title="Quellcode von mobile Gnutelle Client BitJoe">Quellcode von mobile Gnutelle Client BitJoe</a></li>
</ul>
<hr>
<b>Date: 2023 September</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Veröffentlichung von: <a href="https://artikelschreiber.substack.com/p/die-evolution-des-webinhalts-von" target='_self' hreflang='de' title="Die Evolution des Webinhalts: Von KI zu AGI">Die Evolution des Webinhalts: Von KI zu AGI</a></li>
<li>Account auf Substrack angelegt: <a href="https://substack.com/@sebastianenger" target='_self' hreflang='de' title="Sebastian Enger auf Substrack">Sebastian Enger auf Substrack</a></li>
<li>Ghost Writer: Software für <a href="https://github.com/sebastianenger1981/ghostwriter" target='_self' hreflang='de' title="Ghostwriter Artikelschreiber.com">Ghostwriter Artikelschreiber.com</a> veröffentlicht</li>
<li><a href="https://rechthaben.net/lifestyle/gedicht-angel-of-love-fuer-laura-faye/" target='_self' hreflang='de' title="Gedicht: Angel of Love (für Laura Faye)">Angel of Love (für Laura Faye)</a> Gedicht auf Rechthaben.net veröffentlicht</li>
<li>Veröffentlichung von Artikeln auf <strong><b><a href="https://muckrack.com/markus-muller" target="_self" hreflang="de" title="https://muckrack.com/markus-muller">muckrack.com</a></b></strong></li>
<li>Optimized AI Module for normal and advanced Article Generation</li>
<li>Optimized external Links</li>
<li>Optimized Text Copy Feature to support Browser Google Chrome, Mozilla Firefox, Opera, Vivaldi, Apple Safari and Microsoft Edge and Internet Explorer</li>
<li>Optimized Blog Posting Framework: <a href="https://www.artikelschreiber.com/texts/" target='_self' hreflang='en' title="Blog | ArtikelSchreiber.com">Blogs</a></li>
<li>Veröffentlichung der kostenlosen Ghostwriter Version:<b><a href="https://www.artikelschreiber.com/advanced/de/" target="_self" hreflang="de" title="Erweiterte Suche">Erweiterte Suche</a></b></li>
<li>Release of Ghostwriter Enhanced: <strong><a href="https://www.artikelschreiber.com/advanced/en/" target="_self" hreflang="en" title="Advanced Search">Advanced Search</a></strong></li>
</ul>
<hr>
<b>Date: 2023 July</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>ArtikelSchreiber.com German and English Startpage new Articles and Landinge Page Texts changed, Keywords linking to UNAIQUE.NET changed</li>
<li>ArtikelSchreiber.com, Unaique.net, ArtikelSchreiben.net, Rechthaben.net: ads removed</li>
<li>ArtikelSchreiber.com - <b><a href="https://www.artikelschreiber.com/advanced/de/" target="_self" hreflang="de" title="ArtikelSchreiber.com - Erweiterte Suche">Erweiterte Suche</a></b> fertig gestellt</li>
<li>ArtikelSchreiber.com, Unaique.net: Backend improvements: 29.07.2023 - 7.0.3.8.2</li>
<a href="https://www.laurafayeoracle.com/" target="_self" hreflang="en" title="Laura Faye is an expert Psychic Reader, does professional Tarot Cards and Tarot Readings. Support Laura Faye by booking her services on https://www.laurafayeoracle.com/ !">Laura Faye</a>
<li><a href="https://wayranks.com/content-creation-its-importance-and-a-guide-to-get-you-started/" target="_self" hreflang="en">wayranks.com</a></li>
<li><a href="https://toptohigh.com/what-are-the-different-content-type/" target="_self" hreflang="en">toptohigh.com</a></li>
<li><a href="https://heavenarticle.com/content-creation-and-marketings/" target="_self" hreflang="en">heavenarticle.com</a></li>
<li><a href="https://webscountry.com/the-5-steps-content-creation-process/" target="_self" hreflang="en">webscountry.com</a></li>
<li><a href="https://kingranks.com/best-content-creation-tips/" target="_self" hreflang="en">kingranks.com</a></li>
<li><a href="https://articlement.com/3-techniques-to-power-up-your-content-creation/" target="_self" hreflang="en">articlement.com</a></li>
<li><a href="https://worldranksite.com/the-only-guide-youll-ever-need-for-content-creations/" target="_self" hreflang="en">worldranksite.com</a></li>
<li><a href="https://microlinksite.com/content-creation-process-everything-you-need-to-wow-your-audiences/" target="_self" hreflang="en">microlinksite.com</a></li>
<li><a href="https://topbilliondirectory.com/what-is-a-content-creator-how-to-become-a-successful-one/" target="_self" hreflang="en">topbilliondirectory.com</a></li>
<li><a href="https://www.unaique.net/en/copywriter-powered-by-chatgpt-gpt4.html" target="_self" hreflang="en" title="Englisch Landing Page | UNAIQUE.NET">Englisch Landing Page</a></li>
<li><a href="https://www.unaique.net/textgenerator-fuer-copywriting-mit-ki.html" target="_self" hreflang="de" title="Deutsche Landing Page | UNAIQUE.NET">Deutsche Landing Page</a></li>
<li><a href="https://www.artikelschreiber.com/en/seo-tool-content-writing-powered-by-agi.html" target="_self" hreflang="en" title="Englisch Landing Page | UNAIQUE.NET">Englisch Landing Page | ArtikelSchreiber.com</a></li>
<li><a href="https://www.artikelschreiber.com/seo-optimizer-ghost-writer-mit-ki.html" target="_self" hreflang="de" title="Deutsche Landing Page | ArtikelSchreiber.com">Deutsche Landing Page | ArtikelSchreiber.com</a></li>
<li><b><a href="https://www.artikelschreiber.com/advanced/de/" target="_self" hreflang="de" title="ArtikelSchreiber.com - Erweiterte Suche">Erweiterte Suche</a></b></li>
</ul>
<hr>
<b>Date: 2023 June</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>ArtikelSchreiber.com, Unaique.net: Frondend, Backend code released on Github: <a href="https://github.com/sebastianenger1981/" target='_self' hreflang='en' title="https://github.com/sebastianenger1981/">https://github.com/sebastianenger1981/</a></li>
<li>Code improvements: stability, functionality, code cleanup, Blog Framework Backend, Sitemaps</li>
<li>Unaique.net: Integrated FAQ and Youtube Video in Article Generation Results</li>
<li>ArtikelSchreiber.com: Review Generator for Product Reviews complete rework now enabled and powered by AI: Version vom: 23.06.2023 - 1.0.0.2.5</li>
<li>ArtikelSchreiber.com, Unaique.net: Backend has now integrated IP Blocker against crawling bots</li>
<li>ArtikelSchreiber.com, Unaique.net: Backend improvements: 23.06.2023 - 7.0.2.7.4</li>
<li>Source Code Release on SourceForge.net: <a href="https://sourceforge.net/projects/artikelschreiber/" target='_self' hreflang='en' title="https://sourceforge.net/projects/artikelschreiber/">https://sourceforge.net/projects/artikelschreiber/</a></li>
</ul>
<hr>
<b>Date: 2023 March, April, May</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>ArtikelSchreiber.com, Unaique.net: Backend code improvements plus integrated ChatGPT support</li>
<li>Unaique.com: Released <a href='https://www.unaique.com/' title='AI WRITER | UNAIQUE.COM' target='_self' hreflang='en'>AI WRITER</a></li>
<li>ArtikelSchreiber.com: <a href="https://www.artikelschreiber.com/texts/" target='_self' hreflang='en' title="Blog | ArtikelSchreiber.com">Blog</a> Software complete rewrite and release</li>
<li>Nginx: latest version compiled and integrated</li>
<li>Nginx: fixed http to https, and non-www to www HTTP 301 redirects</li>
<li>Code improvements: stability, functionality, code cleanup, Blog Framework Backend canonical-Linking</li>
<li>Frontend: Please link to us code optimized, Blog Framework optimized, Backend Code optimized, External-Link Section optimized, DE/EN index Page new keyword optimization</li>
</ul>
<hr>
<b>Date: 2023-02-06</b><br />
Services affected: Backend<br />
<ul>
<li>ArtikelSchreiber.com, Unaique.net: Backend code improvements</li>
</ul>
<hr>
<b>Date: 2023-01-28</b><br />
Services affected: Frontend<br />
<ul>
<li>ArtikelSchreiber.com, Unaique.net: input type changed from "text" to "search"</li>
<li>Unaique.net: added anchor below picture for better navigation</li>
</ul>
<hr>
<b>Date: 2023-01-27</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>ArtikelSchreiber.com: Loading Templates all languages changed: new Share Links and new loading progress bar</li>
<li>ArtikelSchreiber.com, Unaique.net: backend improved for better article generation quality</li>
<li>ArtikelSchreiber.com: Blog Frontend optimized</li>
</ul>
<hr>
<b>Date: 2023-01-25</b><br />
Services affected: Frontend<br />
<ul>
<li>Unaique.net: New Startpage Article: 25 Artikel Generatoren</li>
<li>ArtikelSchreiber.com: Loading Templates EN, DE changed</li>
<li>Lines of Code: 17.072 Python3, 5.296 PHP7, 19.943 Template</li>
</ul>
<hr>
<b>Date: 2023-01-24</b><br />
Services affected: Frontend<br />
<ul>
<li>ArtikelSchreiber.com: HTML5 Templates Link us and Email Newsletter optimized for DE and EN Startpages</a></li>
<li>ArtikelSchreiber.com: Inline CSS optimized for all pages</li>
<li>Unaique.net: New Startpage Article</a></li>
</ul>
<hr>
<b>Date: 2023-01-23</b><br />
Services affected: Frontend<br />
<ul>
<li>ArtikelSchreiber.com, Unaique.net: HTML5 Templates Navigation optimized</li>
<li>ArtikelSchreiber.com, Unaique.net: HTML5 Templates with ARIA-roles optimized</li>
<li>ArtikelSchreiber.com, Unaique.net: social Share links HTML5 optimized</li>
<li>ArtikelSchreiber.com: On-Page SEO Update: created new article for Sourcecode hosting plattforms for German Startpage</a></li>
</ul>
<hr>
<b>Date: 2023-01-21</b><br />
Services affected: Frontend<br />
<ul>
<li>Code Improvements for unaique.net in the front- and backend</li>
<li>Release of Q1-2023 upgrade for unaique.net</li>
<li><a href="https://sebastianenger1981.github.io/inkassos/">inkassos</a></li>
<li><a href="https://rechthaben.net/beratung/grundsteuererklaerung/">grundsteuererklaerung</a></li>
<li><a href="https://rechthaben.net/beratung/grillen-im-essen/">grillen-im-essen</a></li>
<li><a href="https://github.com/inkassos/inkasso">inkasso</a></li>
<li><a href="https://inkassos.github.io/inkasso/">inkasso abwehren</a></li>
</ul>
<hr>
<b>Date: 2023-01-10</b><br />
Services affected: Frontend<br />
<ul>
<li>New Article on RechtHaben.net: https://rechthaben.net/beratung/steuer-2022/ <a href="https://rechthaben.net/beratung/steuer-2022/">https://rechthaben.net/beratung/steuer-2022/</a></li>
</ul>
<hr>
<b>Date: 2023-01-07</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
<li>Blog Framework improvements implemented</li>
</ul>
<hr>
<b>Date: 2023-01-06</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
<li>Loading Template simple HTML5 improvements</li>
</ul>
<hr>
<b>Date: 2023-01-05</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
<li>12 Language Index Pages Footer Links upgraded for ArtikelSchreiber.com</li>
<li>2 Language Index Pages DE, EN Footer Text removed headlines for ArtikelSchreiber.com</li>
<li>12 Language Load Template files changed for ArtikelSchreiber.com</li>
<li>Released first version of ArtikelSchreiber.com Q1-2023 upgrade</li>
</ul>
<hr>
<b>Date: 2023-01-04</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
</ul>
<hr>
<b>Date: 2023-01-01/2023-01-02</b><br />
Services affected: Frontend<br />
<ul>
<li>New Article on RechtHaben.net: "Anschreiben für Behörden": <a href="https://rechthaben.net/inkasso/anschreiben-fur-behoerden/">https://rechthaben.net/inkasso/anschreiben-fur-behoerden/</a></li>
<li>New Article on RechtHaben.net: "7 Solfeggio Frequenzen": <a href="https://rechthaben.net/gesundheit/7-solfeggio-frequenzen-vereint/">https://rechthaben.net/gesundheit/7-solfeggio-frequenzen-vereint/</a></li>
</ul>
<hr>
<b>Date: 2022-12-28 - 2022-12-31</b><br />
Services affected: Frontend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
<li>SEO Onpage Improvements for unaique.net</li>
<li>ArtikelSchreiber.com Marketing Page remove NFT and Youtube Support</li>
</ul>
<hr>
<b>Date: 2022-12-25</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
<li>Title Changer implemented for German and English Index and Result Pages for Artikelschreiber.com</li>
</ul>
<hr>
<b>Date: 2022-12-24</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Q1-2023 upgrade</li>
<li>Open Graph Tags fixed for whole Artikelschreiber.com: "og:site_name"</li>
<li>Metakeywords optimized for whole Artikelschreiber.com</li>
<li>Index Templates changed for Artikelschreiber.com and Unaique.net</li>
<li>Favicon and new jquery.js implemeted for Unaique.net</li>
<li>hreflang fixed for Artikelschreiber.com</li>
</ul>
<hr>
<b>Date: 2022-12-22</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Stopword List improved</li>
<li>Continued: Codings for ArtikelSchreiber.com Final 2022 upgrade</li>
</ul>
<hr>
<b>Date: 2022-12-21</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>PERL CPAN Archive optimized</li>
<li>Continued: Codings for ArtikelSchreiber.com Final 2022 upgrade</li>
<li>Fixed Loading bug</li>
</ul>
<hr>
<b>Date: 2022-12-17</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Linking title for English Startpage changed for ArtikelSchreiber.com</li>
<li>Removed unused HTML from Templates for ArtikelSchreiber.com</li>
<li>Improved Blog Backend for ArtikelSchreiber.com</li>
<li>Continued: Codings for ArtikelSchreiber.com Final 2022 upgrade</li>
</ul>
<hr>
<b>Date: 2022-12-11</b><br />
Services affected: Backend<br />
<ul>
<li>Continued: Codings for ArtikelSchreiber.com Final 2022 upgrade</li>
</ul>
<hr>
<b>Date: 2022-12-10</b><br />
Services affected: Backend<br />
<ul>
<li>Prepared some codings for ArtikelSchreiber.com Final 2022 upgrade</li>
<li>Preparation for better Bookmark support on ArtikelSchreiber.com and UNAIQUE.net</li>
<li>Blogging Software Backend Code upgraded</li>
<li>Database cleanup</li>
</ul>
<hr>
<b>Date: 2022-11-26</b><br />
Services affected: Frontend<br />
<ul>
<li>New Article on RechtHaben.net: "Ode an die Erzengel": <a href="https://rechthaben.net/gesundheit/ode-an-die-erzengel/">https://rechthaben.net/gesundheit/ode-an-die-erzengel/</a></li>
<li>Startpage for artikelschreiber.com German: first Link to English Website (for Mobile)</li>
<li>Startpage for ArtikelSchreiber.com English first Link to German Website (for Mobile)</li>
<li>Startpage for unaique.com new link Website</li>
</ul>
<hr>
<b>Date: 2022-11-17</b><br />
Services affected: Frontend<br />
<ul>
<li>Startpage for artikelschreiber.com English, German USP changed</li>
<li>Startpage for unaique.net, artikelschreiber.com English cpan links changed</li>
<li>Startpage for unaique.net English Keywords changed</li>
<li>Startpage for unaique.net German Keywords changed</li>
<li>Startpage for ArtikelSchreiber.com English Keywords changed (KI Content Generator)</li>
</ul>
<hr>
<b>Date: 2022-11-16</b><br />
Services affected: Frontend<br />
<ul>
<!-- <li><a href="https://huggingface.co/spaces/senger/AI-TextGenerator">https://huggingface.co/spaces/senger/AI-TextGenerator</a></li> -->
<!-- <li><a href="https://huggingface.co/spaces/SebastianEnger/textgenerator">https://huggingface.co/spaces/SebastianEnger/textgenerator</a></li> -->
<li><a href="https://www.artikelschreiber.com/marketing/">https://www.artikelschreiber.com/marketing/</a></li>
<li>Startpage Title and Description for ArtikelSchreiber.com English changed</li>
</ul>
<hr>
<b>Date: 2022-10-20</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Google Ads removed from unaique.net, artikelschreiber.com, artikelschreiben.com completly</li>
<li>HTML optimization for Templates for all 12 languages for artikelschreiber.com</li>
</ul>
<hr>
<b>Date: 2022-10-19</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Google Ads Count reduced for unaique.net, rechthaben.net, artikelschreiber.com, artikelschreiben.com</li>
<li>Google Ads removed from Startpage of all 12 artikelschreiber.com startpages</li>
<li>Startpage Links to 12 fixed the BLOG link</li>
<li>Blog framework filtering function optimized</li>
<li>Blog framework Startpage Code optimized</li>
<li>Blog framework Sitemaps Code optimized</li>
<li>rechthaben.net overall Google Ads removed</li>
</ul>
<hr>
<b>Date: 2022-10-18</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Startsite of every language now gets also Links to Blog of this language</li>
<li>Blog template links to blog result pages marked rel="ugc"</li>
</ul>
<hr>
<b>Date: 2022-10-17</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Template for artikelschreiben.com optimized</li>
<li>Filter list optimized</li>
<li>Improved non-html-entity to html-enity</li>
</ul>
<hr>
<b>Date: 2022-10-15</b><br />
Services affected: Backend<br />
<ul>
<li>Filtering software module improved</li>
<li>Filter list optimized</li>
<li>Fixed non-html-entity to html-enity converter</li>
</ul>
<hr>
<b>Date: 2022-10-14</b><br />
Services affected: Backend<br />
<ul>
<li>Disabled adult related content creation in the backend (filtering module updated, filter list updated) - text generation software of artikelschreiber.com and unaique.net are effected</li>
</ul>
<hr>
<b>Date: 2022-10-13</b><br />
Services affected: Frontend<br />
<ul>
<li>SEO Optimization for Onpage law related text articles on https://rechthaben.net/</li>
<li>Favicon Icon installed on Rechthaben.net Blog</li>
<li>Favicon Icon updated on English, French, Spanish, German, Italien and alltogether all of ArtikelSchreiber.com Websites</li>
</ul>
<hr>
<b>Date: 2022-10-12</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>ArtikelSchreiber.com, Unaique.net Filtering Module improved</li>
<li>SEO Optimization for Onpage SEO for <a href="https://rechthaben.net/">https://rechthaben.net/</a></li>
<li>SEO Optimization for <a href="https://rechthaben.net/inkasso/inkassos/">https://rechthaben.net/inkasso/inkassos/</a></li>
<li>SEO Optimization for <a href="https://rechthaben.net/beratung/widerspruch-gegen-gaspreise/">https://rechthaben.net/beratung/widerspruch-gegen-gaspreise/</a></li>
<li>SEO Optimization for <a href="https://rechthaben.net/beratung/zensus-2022/">https://rechthaben.net/beratung/zensus-2022/</a></li>
</ul>
<hr>
<b>Date: 2022-10-11</b><br />
Services affected: Frontend<br />
<ul>
<li>New article on Rechthaben.net Blog -> <a href="https://rechthaben.net/bank/kfw-kredit/">https://rechthaben.net/bank/kfw-kredit/</a></li>
</ul>
<hr>
<b>Date: 2022-10-08</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Updated Blog Backend and Frontend software (filtering)</li>
<li>Updated Filterlist for artikelschreiber frontend and backend software</li>
</ul>
<hr>
<b>Date: 2022-10-05</b><br />
Services affected: Frontend<br />
<ul>
<li>Updated Blog HTML Templates including optimized Link structure, Meta Key improvements</li>
<li>Prepared new Article for rechthaben.net</li>
<li>Off Page SEO & Linkbuilding</li>
</ul>
<hr>
<b>Date: 2022-10-03</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Updated Blog-Backend Software</li>
<li>Updated Frontend Linking structure on artikelschreiber.com, unaique.net, paraphrasingtool1.com</li>
<li>Updated German and English artikelschreiber.com Feature Texts in the bottom of the Website</li>
</ul>
<hr>
<b>Date: 2022-09-25</b><br />
Services affected: Backend<br />
<ul>
<li>Updated Blog-Backend Software</li>
</ul>
<hr>
<b>Date: 2022-09-23</b><br />
Services affected: Frontend<br />
<ul>
<li>Updated Source Code Documentation Archive</li>
</ul>
<hr>
<b>Date: 2022-09-21</b><br />
Services affected: Frontend<br />
<ul>
<li>Changed Link Names and Titles on unaique.net, unaique.com and artikelschreiber.com</li>
<li>removed old and unused HTML from templates</li>
<li>Added Links to websites we like (English unaique.net Website)</li>
</ul>
<hr>
<b>Date: 2022-09-18</b><br />
Services affected: Frontend<br />
<ul>
<li>Added Links to websites we like (English ArtikelSchreiber.com Website)</li>
<li>Changed quote on footer of German and English ArtikelSchreiber.com Website)</li>
</ul>
<hr>
<b>Date: 2022-09-12</b><br />
Services affected: Frontend<br />
<ul>
<li>Blogging Software for ArtikelSchreiber.com improved, Linking structure optimized, reelit link removed</li>
</ul>
<hr>
<b>Date: 2022-09-11</b><br />
Services affected: Frontend<br />
<ul>
<li>Text descriptions of the USP / unique selling propositions on german and english ArtikelSchreiber.com webpage optimized</li>
</ul>
<hr>
<b>Date: 2022-06-18</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Minor changes on "UNAIQUE"-Algorithm for <a href="https://www.unaique.com/">unaique.com</a></li>
</ul>
<hr>
<b>Date: 2022-06-16</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Release first version of "UNAIQUE"-Algorithm for <a href="https://www.unaique.com/">unaique.com</a></li>
</ul>
<hr>
<b>Date: 2022-06-09</b><br />
Services affected: Backend<br />
<ul>
<li>Started working on "The UNAIQUE Algorithm" for www.unaique.com</li>
</ul>
<hr>
<b>Date: 2022-04-26</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Backend Software: For Text content created in English we created a Software module that presents better seo optimized articles supporting Schema.org for FAQ, Voice and Article</li>
<li>Frontend for English: Added Code and instructions to show the SEO optimized Schema.org structured data in JSON format for Frequently Asked Questions/FAQ, Article, Voice. </li>
<li>Frontend for English: Added questions plus answers that are told by the generated article (Frequently Asked Questions/FAQ)</li>
<li>We will add support in Backend and Frontend for those advanced seo optimized articles for all of our supported 12 languages in the next weeks</li>
</ul>
<hr>
<b>Date: 2022-04-19</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Backend Software: Code improvement, NFT AI Software integrated (<a href="https://www.artikelschreiber.com/en/nft/">https://www.artikelschreiber.com/en/nft/</a>)</li>
<li>Frontend HTML5 Template: Javascript Code improvements, HTML Tag Cleanup</li>
</ul>
<hr>
<b>Date: 2022-04-16</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Backend Software: Language Software updated</li>
<li>Frontend HTML5 Template: correct iso-2 codes for all supported 12 languages installed</li>
<li>Fixed code on internal BLOG software</li>
</ul>
<hr>
<b>Date: 2022-04-07</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Backend Software Improvements</li>
<li>Frontend HTML5 Template improvements for better SEO visibility</li>
<li>Fixed code on internal BLOG system</li>
<li>Server Upgrade: We added another CPU upgrade for faster processing</li>
<li>SEO Linkbuilding</li>
</ul>
<hr>
<b>Date: 2022-03-12</b><br />
Services affected: Frontend<br />
<ul>
<li>Fixed Service issues with <a href="https://www.unaique.net/">UNAIQUE.NET</a></li>
</ul>
<hr>
<b>Date: 2022-03-07</b><br />
Services affected: Frontend<br />
<ul>
<li>SEO Optimization for Blog Software</li>
</ul>
<hr>
<b>Date: 2022-03-05</b><br />
Services affected: Backend, Frontend<br />
<ul>
<li>Blog Software updated</li>
<li>Frontend: Added Thumbs up or Thumbs down for rating of each created article</li>
<li>Frontend: Added Tag-Cloud of Keywords to each created article for better SEO visibility</li>
</ul>
<hr>
<b>Date: 2022-03-04</b><br />
Services affected: Frontend<br />
<ul>
<li>Podcast released on: <a href="https://youtu.be/YTTLbUC5eyw" rel="nofollow">Youtube</a></li>
<li>Podcast released on: <a href="https://rumble.com/vwcrbb-verteidigung-gegen-inkasso-fr-verbraucher-rechthaben.net.html" rel="nofollow">Rumble</a></li>
<li>Podcast released on: <a href="https://odysee.com/verteidigung-gegen-inkasso:9" rel="nofollow">Odysee</a></li>
<li>Podcast released on: <a href="https://open.spotify.com/show/1Xaa5guuawHzhXZhf7dHea" rel="nofollow">Spotify</a></li>
<li>Podcast released on: <a href="https://anchor.fm/rechthaben" rel="nofollow">Anchor</a></li>
<li>Podcast released on: <a href="https://deezer.com/show/3472507" rel="nofollow">Deezer</a></li>
</ul>
<hr>
<b>Date: 2022-03-03</b><br />
Services affected: Frontend<br />
<ul>
<li>Podcast: We released our first german podcast on <a href="https://youtu.be/YTTLbUC5eyw" rel="nofollow">Youtube</a>, <a href="https://rumble.com/vwcrbb-verteidigung-gegen-inkasso-fr-verbraucher-rechthaben.net.html" rel="nofollow">Rumble</a></li>
</ul>
<hr>
<b>Date: 2022-03-02</b><br />
Services affected: Frontend<br />
<ul>
<li>Podcast: We released our first german podcast on <a href="https://rechthaben.net/feed/podcast/rechthaben">Wordpress</a>, <a href="https://anchor.fm/rechthaben" rel="nofollow">Anchor.fm</a>, <a href="https://open.spotify.com/show/1Xaa5guuawHzhXZhf7dHea" rel="nofollow">Spotify</a></li>
</ul>
<hr>
<b>Date: 2022-03-01</b><br />
Services affected: Frontend<br />
<ul>
<li>Frontend: We have added more Social Share Buttons</li>
<li>Frontend: Working on Load Balancing</li>
</ul>
<hr>
<b>Date: 2022-02-27</b><br />
Services affected: GITHUB<br />
<ul>
<li>GITHUB: Released first open source software for ArtikelSchreiber.com </li>
</ul>
<hr>
<b>Date: 2022-02-25</b><br />
Services affected: Frontend, Server Software<br />
<ul>
<li>SEO OPTIMIZATION: Link structure optimized for UNAIQUE.NET and ARTIKELSCHREIBER.COM </li>
<li>Frontend: Optimized PageSpeed for UNAIQUE.NET, ARTIKELSCHREIBER.COM and UNAIQUE.COM</li>
<li>Server Software: We have enabled HTTP/1, HTTP/2 and HTTP/3 (quic) for UNAIQUE.NET, ARTIKELSCHREIBER.COM and UNAIQUE.COM</li>
<li>Frontend: German and English Startpage SEO Onpage optimized (Texts on Page, Title Tag, Meta Description) for UNAIQUE.NET</li>
</ul>
<hr>
<b>Date: 2022-02-24</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>Frontend: German and English Startpage SEO Onpage optimized (Texts on Page, Title Tag, Meta Description) for ARTIKELSCHREIBER.COM</li>
<li>Backend: Improved Article Result Generation by optimizing some internal processing functions</li>
</ul>
<hr>
<b>Date: 2022-02-23</b><br />
Services affected: Frontend, Backend<br />
<ul>
<li>We released our Preview Generator to create product reviews and customer reviews: <a href="https://www.artikelschreiber.com/marketing/review/">https://www.artikelschreiber.com/marketing/review/</a></li>
<li>Improved Functionality of Article Generation by enforcing HTTPS on all requests</a></li>
</ul>
<hr>
<b>Date: 2022-02-18</b><br />
Services affected: Frontend<br /><br />
<ul>
<li>HTML5 Templates: Fixed Header Navigation and Footer Navigation</li>
</ul>
<hr>
<b>Date: 2022-02-13</b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Working on AI Software - speed improvements</li>
<li>Released Version '6.9.7.7.1' to live servers</li>
<li>Optimized configuration parameters for server software: <b>Gunicorn</b> 'Green Unicorn' is a Python WSGI HTTP Server for UNIX, <b>Starlette</b> is a lightweight ASGI framework/toolkit, which is ideal for building high performance asyncio services. </li>
</ul>
<hr>
<hr>
<b>Date: 2022-02-10</b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Improved Memory footprint of Backend system (=less memory consumption)</li>
<li>Improved Backend Code, lead to speed improvements</li>
<li>Working on WordPress Support - Export your articles directly to your own WordPress Blog with just 1 click</li>
</ul>
<hr>
<b>Date: 2022-02-09</b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Finished Working on Turkish language frontend and AI Backend: <a href="https://www.artikelschreiber.com/tr/">https://www.artikelschreiber.com/tr/</a></li>
<li>SEO Improvements for HTML5 Template Systems</li>
</ul>
<hr>
<b>Date: 2022-02-07</b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Finished Working on Marketing Suite: <a href="https://www.artikelschreiber.com/marketing/">https://www.artikelschreiber.com/marketing/</a></li>
<li>SEO Improvements for HTML5 Template Systems</li>
</ul>
<hr>
<b>Date: 2022-02-06</b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Fixed Crypto Currency Donation links</li>
<li>Working on Artificial Intelligence Module for Marketing Slogan Generator: Finished implementing</li>
</ul>
<hr>
<b>Date: 2022-02-04</b><br />
Services affected: Frontend<br /><br />
<ul>
<li>Added fitting image link to AI generated article for <a href="https://www.artikelschreiber.com/marketing/">https://www.artikelschreiber.com/marketing/</a></li>
<li>Added Crypto Currency Donation Wallet Addresses to rechthaben.net, artikelschreiber.com, unaique.net and unaique.com</li>
<li>Working on Artificial Intelligence Module for Marketing Slogan Generator</li>
<li>Fixed HTML5 Templates for <a href="https://www.artikelschreiber.com/marketing/">https://www.artikelschreiber.com/marketing/</a></li>
<li>Seo Optimization of rechthaben.net (added Tags): <a href="https://rechthaben.net/" target="_self" hreflang="de">zu Recht | RechtHaben.net</a></li>
<li>Added two new articles for rechthaben.net: <a href="https://rechthaben.net/" target="_self" hreflang="de">zu Recht | RechtHaben.net</a></li>
</ul>
<hr>
<b>Date: 2022-02-03</b><br />
Services affected: Backend<br /><br />
<ul>
<li>Released Version 03.02.2022 - 6.9.7.4.9 to live servers</li>
<li>Working on Artificial Intelligence software for Marketing Slogan Generator</li>
<li>Release of rechthaben.net: <a href="https://rechthaben.net/" target="_self" hreflang="de">zu Recht</a></li>
</ul>
<hr>
<b>Date: 2022-02-02 (Terra: "Spiritual Awakening Day")</b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>We have released a Website to Article Converter: <a href="https://www.artikelschreiber.com/marketing/">https://www.artikelschreiber.com/marketing/</a> - put in your Website link like " https://hbr.org/2021/06/if-you-want-to-lead-master-this-skill " to this html form and we create a unique Artificial Intelligence based article out of it</li>
</ul>
<hr>
<b>Date: 2022-01-28 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>2022-01-26 Backend: Natural Language Understanding: Better understanding what topic you want your article to be about (est: Q1/2022) - done:<b>100%</b></li>
<li>Released: Version 28.01.2022 - 6.9.7.4.6</li>
</ul>
<hr>
<b>Date: 2022-01-25 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Backend: Improved Article Generation</li>
<li>Backend: Improved Filtering Software Module</li>
<li>Backend: Improved FastMode</li>
</ul>
<hr>
<b>Date: 2022-01-21 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Backend: Improved Quality in Article Generation</li>
</ul>
<hr>
<b>Date: 2022-01-20 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Backend: Fixed some codes in the Article Generation software module (AI and non-AI)</li>
</ul>
<hr>
<b>Date: 2022-01-19 </b><br />
Services affected: Frontend<br /><br />
<ul>
<li>Backend: Blogging Framework fixed</li>
<li>Frontend: Fixes in HTML5 Templates for all Languages</li>
</ul>
<hr>
<b>Date: 2022-01-18 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Backend: Code fixes and Speed improvements for "FAST MODE"</li>
</ul>
<hr>
<b>Date: 2022-01-17 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Frontend: Added Share Button "via Email" to inform your friends via Email about ArtikelSchreiber.com</li>
<li>Backend: Improved AI software module</li>
<li>Frontend: Fixed Article Generation German Page on unaique.net</li>
<li>Frontend: Changes made to HTML5 template system</li>
<li>Backend: Code fixes and Speed improvements</li>
</ul>
<hr>
<b>Date: 2022-01-16 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>API fixed: https://www.artikelschreiber.com/api/</li>
<li>Fixed some coding issues in the "FastMode" processing software module</li>
<li>New AI Feature: Will be released for German, English, French, Spanish, Portuguese and Italian language for every AI generated article with more than 500 words</li>
<li>New AI Feature: Every created Article with ArtikelSchreiber.com will be highly commercially optimized (finished working on task, phase of internal testing)</li>
</ul>
<hr>
<b>Date: 2022-01-15 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Server Backend: Small code fixes for the software AI Article generating module</li>
</ul>
<hr>
<b>Date: 2022-01-14 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Server Backend: Code improvement for the software AI Article generating module</li>
<li>Server Backend: Tried to reduce AI Processing time for writing one article to below 60 seconds (based on the workload of the server it might get below 60 seconds)</li>
<li>Server Backend: Released Version '14.01.2022 - 6.9.3.6'</li>
<li>Server Backend: Software AI Article generating module speed improvement affects artikelschreiber.com and unaique.net</li>
</ul>
<hr>
<b>Date: 2022-01-13 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Server Frontend: removed the requirement to provide a subkeyword - you can provide a second keyword but only the main keyword is aria-required now for article writing</li>
<li>Server Backend: New AI Feature: Every created Article with ArtikelSchreiber.com will be highly commercially optimized (continued working on task)</li>
<li>Server Backend: Improved "alternative articles" suggestions</li>
<li>Server Backend: "Fast Mode" is now the standard mode for all article writings</li>
<li>Server Backend: Code improvment for the "Fast Mode" which results in more stable results</li>
</ul>
<hr>
<b>Date: 2022-01-12 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Server Backend: Improvement in Text Creation (est: Q1/2022) - done: <b>100%</b></li>
<li>Server Backend: Fast Mode implemented: Regarding speed improvements: (est: Q1/2022) - done: <b>100%</b></li>
<li>Server Frontend: Fixed some serious HTML Bugs, service should run normal again now</li>
<li>Server Backend: Integrated a "Fast Mode" that should handle the article creation in a more faster way (improve creation speed)</li>
</ul>
<hr>
<b>Date: 2022-01-10 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Server Backend: New AI Feature: Every created Article with ArtikelSchreiber.com will be highly commercially optimized (continued working on task)</li>
<li>Server Backend: Improved Text Generation</li>
</ul>
<hr>
<b>Date: 2022-01-09 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Server Frontend: Removed RSS Feed</li>
<li>Server Frontend: Changed Sitemap</li>
<li>Server Backend: New AI Feature: Every created Article with ArtikelSchreiber.com will be highly commercially optimized (continued working on task)</li>
</ul>
<hr>
<b>Date: 2022-01-08 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Server Frontend: Fixed some internal Linkings to improve visibility</li>
<li>Server Backend: New AI Feature: Every created Article with ArtikelSchreiber.com will be highly commercially optimized (continued working on task)</li>
</ul>
<hr>
<b>Date: 2022-01-07 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Server Frontend unaique.net: Fixed Navigation and added Links to ArtikelSchreiber.com</li>
<li>Server Frontend: Improved Image Tag on Startpage and Article Result Page</li>
<li>Server Frontend: Improved HTML5 on Startpage to focus on input fields for creating article</li>
<li>Server Backend: Backend now able to process PDF Files</li>
<li>Server Backend: Version release 07.01.2022 - 6.8.9.2</li>
</ul>
<hr>
<b>Date: 2022-01-05 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Server Backend: Improvement in Internal Blogging API System -> https://www.artikelschreiber.com/api/</li>
<li>New AI Feature: Research and first coding to improve revenue from generated article texts</li>
</ul>
<hr>
<b>Date: 2022-01-04 </b><br />
Services affected: Backend, Frontend<br /><br />
<ul>
<li>Server Frontend: Donation image changed to better fit mobile visibility </li>
<li>Server Frontend: Removed Google Ads from Arabic, Hindi and Japanese Websites - artikelschreiber.com is now ad free</li>
<li>Server Frontend: Blogging Software and Blogging API Interface updated and enhanced: https://www.artikelschreiber.com/api/</li>
<li>Server Backend: Research for Question Anwsering for new AI Feature</li>
<li>Server Backend: Research for Cost-per-Click, Keyword Generation for new AI Feature</li>
<li>Server Backend: Improvement in Article Scoring results in better Article Generation</li>
</ul>
<hr>
<b>Date: 2022-01-03 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Server Backend: We have improved the Article Writing software module (AI based and non-AI based)</li>
<li>Server Frontend: We have removed Google Ads from Portuguese, Russian and Chinese Language templates and added a Donation link</li>
<li>Server Backend: We have improved the processing speed of our Filtering Software - should now lead to faster processing speed while Article Writing</li>
</ul>
<hr>
<b>Date: 2022-01-02 </b><br />
Services affected: Backend<br /><br />
<ul>
<li>Server Backend: We have improved our Natural Language Understanding AI module which should result in better Article Writing</li>
</ul>
<hr>
<b>Date: 2021-12-31 </b><br />
Services affected: Frontend<br /><br />
<ul>
<li>Server Frontend: For the French, Italien and Spanish Startpage, Article Processing Page and Article Result Page we have removed the Google Ads and integrated a donation button - we want to keep the service free for all and decided to go Donation based</li>
</ul>
<hr>
<b>Date: 2021-12-30 </b><br />
Services affected: Frontend<br /><br />
<ul>
<li>Server Frontend: For the English and German Startpage, Article Processing Page and Article Result Page we have removed the Google Ads and integrated a donation button - we want to keep the service free for all and decided to go Donation based</li>
</ul>
<hr>
<b>Date: 2021-12-29 </b><br />
Services affected: Backend / Frontend<br /><br />
<ul>
<li>Unique article writing for all 11 supported languages via Aritificial Intelligence software module enabled for live/production version: (est: Q4/2021) - done: <b>100%</b></li>
<li>Server Frontend: New feature (SEO optimzation) - the articles that you create (ai based and normal) have schema.org strucured data integrated for improved seo visibility, when you integrate an article into a website. We today integrated another seo optimization: the structured data that is added to your created article also contains SEO voice search optimizations so that your new article can be better found and processed by Google Assistant and Amazon Alexa.</li>
<li>Server Backend (Improvement in article generation): if you are on the English Website of ArtikelSchreiber like https://www.artikelschreiber.com/en/ and put in Japanese Keywords for Article Generation then the Backend will understand this now and create an unique article written in Japanese language for you</a>
<li>Server Backend (Improvement in article generation: Integration of new AI based Natural language understanding module. This will help to create articles where users only provide one keyword for article creation:</a>
<ol>
<li>Improvement in Natural Language Understanding (NLU) (est: Q1/2022) - done: <b>100%</b> - ArtikelSchreiber.com now understands the difference between apple as Technology company and a fruit based on your input - published to live production services</li>
</ol>
</li>
</ul>
<hr>
<b>Date: 2021-12-28 </b><br />
Services affected: Backend<br /><br />
We have implemented these new features:
<ul>
<li>Server Backend: Improved internal scoring module</a>