-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHANGELOG.html
1950 lines (1913 loc) · 123 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 class="no-js" lang="en" data-content_root="./">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="CHANGELOG" />
<meta property="og:type" content="website" />
<meta property="og:url" content="CHANGELOG.html" />
<meta property="og:site_name" content="TeXstudio" />
<meta property="og:description" content="TeXstudio 4.8.4: fix word selection#3812. TeXstudio 4.8.3: use argument position to assign argument type (fixes some issues concerning keyval arguments), windows binaries are code signed for easier..." />
<meta name="description" content="TeXstudio 4.8.4: fix word selection#3812. TeXstudio 4.8.3: use argument position to assign argument type (fixes some issues concerning keyval arguments), windows binaries are code signed for easier..." />
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="prev" title="Background information" href="background.html" />
<link rel="shortcut icon" href="_static/texstudio.ico"/><!-- Generated with Sphinx 7.2.6 and Furo 2024.01.29 -->
<title>CHANGELOG - TeXstudio 4.8.4 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=9701f087" />
<link rel="stylesheet" type="text/css" href="_static/tabs.css?v=4c969af8" />
<link rel="stylesheet" type="text/css" href="_static/design-style.1e8bd061cd6da7fc9cf755528e8ffc24.min.css?v=0a3b3ea7" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=e61b947c" />
<style>
body {
--color-code-background: #eeffcc;
--color-code-foreground: black;
}
@media not print {
body[data-theme="dark"] {
--color-code-background: #272822;
--color-code-foreground: #f8f8f2;
}
@media (prefers-color-scheme: dark) {
body:not([data-theme="light"]) {
--color-code-background: #272822;
--color-code-foreground: #f8f8f2;
}
}
}
</style></head>
<body>
<script>
document.body.dataset.theme = localStorage.getItem("theme") || "auto";
</script>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="svg-toc" viewBox="0 0 24 24">
<title>Contents</title>
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024">
<path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 0 0 0 13.8z"/>
</svg>
</symbol>
<symbol id="svg-menu" viewBox="0 0 24 24">
<title>Menu</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-menu">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</symbol>
<symbol id="svg-arrow-right" viewBox="0 0 24 24">
<title>Expand</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-chevron-right">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</symbol>
<symbol id="svg-sun" viewBox="0 0 24 24">
<title>Light mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather-sun">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</symbol>
<symbol id="svg-moon" viewBox="0 0 24 24">
<title>Dark mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" />
</svg>
</symbol>
<symbol id="svg-sun-half" viewBox="0 0 24 24">
<title>Auto light/dark mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-shadow">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<circle cx="12" cy="12" r="9" />
<path d="M13 12h5" />
<path d="M13 15h4" />
<path d="M13 18h1" />
<path d="M13 9h4" />
<path d="M13 6h1" />
</svg>
</symbol>
</svg>
<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation">
<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc">
<label class="overlay sidebar-overlay" for="__navigation">
<div class="visually-hidden">Hide navigation sidebar</div>
</label>
<label class="overlay toc-overlay" for="__toc">
<div class="visually-hidden">Hide table of contents sidebar</div>
</label>
<div class="page">
<header class="mobile-header">
<div class="header-left">
<label class="nav-overlay-icon" for="__navigation">
<div class="visually-hidden">Toggle site navigation sidebar</div>
<i class="icon"><svg><use href="#svg-menu"></use></svg></i>
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">TeXstudio 4.8.4 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
<svg class="theme-icon-when-auto"><use href="#svg-sun-half"></use></svg>
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
<label class="toc-overlay-icon toc-header-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
</header>
<aside class="sidebar-drawer">
<div class="sidebar-container">
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">TeXstudio 4.8.4 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
<input type="hidden" name="check_keywords" value="yes">
<input type="hidden" name="area" value="default">
</form>
<div id="searchbox"></div><div class="sidebar-scroll"><div class="sidebar-tree">
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="getting_started.html">Getting started</a></li>
<li class="toctree-l1"><a class="reference internal" href="editing.html">Editing a TeX document</a></li>
<li class="toctree-l1"><a class="reference internal" href="compiling.html">Compiling a document</a></li>
<li class="toctree-l1"><a class="reference internal" href="viewing.html">Viewing a document (pdf)</a></li>
<li class="toctree-l1"><a class="reference internal" href="advanced.html">Advanced features</a></li>
<li class="toctree-l1"><a class="reference internal" href="configuration.html">Configuring TeXstudio</a></li>
<li class="toctree-l1"><a class="reference internal" href="background.html">Background information</a></li>
<li class="toctree-l1 current current-page"><a class="current reference internal" href="#">CHANGELOG</a></li>
</ul>
</div>
</div>
</div>
</div>
</aside>
<div class="main">
<div class="content">
<div class="article-container">
<a href="#" class="back-to-top muted-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12z"></path>
</svg>
<span>Back to top</span>
</a>
<div class="content-icon-container">
<div class="theme-toggle-container theme-toggle-content">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
<svg class="theme-icon-when-auto"><use href="#svg-sun-half"></use></svg>
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
<label class="toc-overlay-icon toc-content-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
<article role="main">
<section id="changelog">
<h1>CHANGELOG<a class="headerlink" href="#changelog" title="Link to this heading">#</a></h1>
<section id="texstudio-4-8-4">
<h2>TeXstudio 4.8.4<a class="headerlink" href="#texstudio-4-8-4" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix word selection <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3812">#3812</a></p></li>
</ul>
</section>
<section id="texstudio-4-8-3">
<h2>TeXstudio 4.8.3<a class="headerlink" href="#texstudio-4-8-3" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>use argument position to assign argument type (fixes some issues concerning keyval arguments)</p></li>
<li><p>windows binaries are code signed for easier installation</p></li>
<li><p>fix activation of keyvals for completion when new packages are used <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3791">#3791</a></p></li>
<li><p>improved table manipulation when multiline arguments are used <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3789">#3789</a></p></li>
</ul>
</section>
<section id="texstudio-4-8-2">
<h2>TeXstudio 4.8.2<a class="headerlink" href="#texstudio-4-8-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix background colors for AI chat interface in dark mode</p></li>
<li><p>on osx, new default spell dictionary changed to [txs-app-dir]/../Resources which is independent on actual txs app name.</p></li>
<li><p>automatically apply work-around on OSX if docks are spread-out in OSX style</p></li>
<li><p>configuration is directly saved after accepting changes</p></li>
<li><p>allow custom url for chatgpt server</p></li>
</ul>
</section>
<section id="texstudio-4-8-1">
<h2>TeXstudio 4.8.1<a class="headerlink" href="#texstudio-4-8-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>allow hiding of sidepanel docks via view/show</p></li>
<li><p>reduce number on visible dock on OSX due to qt osx style weakness</p></li>
<li><p>fix raised dock after hiding/showing sidepanel <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3653">#3653</a></p></li>
<li><p>fallback to simple syntax highligting when tooltip background differs from general background <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3644">#3644</a></p></li>
<li><p>fix structure view context on sections <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3642">#3642</a></p></li>
<li><p>fix black background on comboboxes with windows11 style (qt6.7.1)</p></li>
</ul>
</section>
<section id="texstudio-4-8-0">
<h2>TeXstudio 4.8.0<a class="headerlink" href="#texstudio-4-8-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>AI chat assistant added</p></li>
<li><p>use moveable/<strong>splitable</strong> docks for sidepanel</p></li>
<li><p>extended search can now also search in all files in one folder</p></li>
<li><p>add basic syntax highlighting for latex3 code</p></li>
<li><p>fix handling CJK characters in pdf on OSX <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3558">#3558</a></p></li>
<li><p>fix rare crash <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3556">#3556</a></p></li>
<li><p>reload hidden docs when user chooses to discard changes <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3550">#3550</a></p></li>
</ul>
</section>
<section id="texstudio-4-7-3">
<h2>TeXstudio 4.7.3<a class="headerlink" href="#texstudio-4-7-3" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>First line of macro editor no longer uses macro type, use buttons to set type. Macro format changes slightly. For details s. <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3458">#3458</a></p></li>
<li><p>add export of all macros in Edit Macros dialog <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3451">#3451</a></p></li>
<li><p>macro editor now executes normal and environment macros in addition to script macros <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3444">#3444</a></p></li>
<li><p>macro editor with better button arrangement <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3451">#3451</a></p></li>
<li><p>copy data from all issues in the messages pane (log) to clipboard <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3487">#3487</a></p></li>
<li><p>insert graphics wizard opens position details without changing position or size of ui elements located above position details <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3509">#3509</a></p></li>
<li><p>improved Package Help dialog <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3478">#3478</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3497">#3497</a></p></li>
<li><p>fix missing connection error message when browsing macro repository <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3448">#3448</a></p></li>
<li><p>fix switching (by clicking) between documents <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3473">#3473</a></p></li>
<li><p>fix “Show all open documents in this tree” <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3476">#3476</a></p></li>
<li><p>fix handling a new file created from the context menu <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3471">#3471</a></p></li>
<li><p>small fixes</p></li>
</ul>
</section>
<section id="texstudio-4-7-2">
<h2>TeXstudio 4.7.2<a class="headerlink" href="#texstudio-4-7-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>remove something (alt+del) handles matching delimiters</p></li>
<li><p>fix detecting parent/child documents when autoloading is disabled <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3411">#3411</a></p></li>
<li><p>fix completion of user constructs like a_b <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3403">#3403</a></p></li>
<li><p>fix navigating in subfiles <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3404">#3404</a></p></li>
<li><p>fix duplicate shortcut in ‘Additional Shortcut’ column is not removed <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3408">#3408</a></p></li>
<li><p>fix wrong cursor, scaling, settings in pdf viewer when switching window mode <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3426">#3426</a> <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3428">#3428</a> …</p></li>
</ul>
</section>
<section id="texstudio-4-7-1">
<h2>TeXstudio 4.7.1<a class="headerlink" href="#texstudio-4-7-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix highlighting of %TODO comments after loading a file <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3398">#3398</a></p></li>
<li><p>fix missing document height update when copy wrapped single lines <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3396">#3396</a></p></li>
</ul>
</section>
<section id="texstudio-4-7-0">
<h2>TeXstudio 4.7.0<a class="headerlink" href="#texstudio-4-7-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>remove auto inserted closing parenthesis if the opening one is removed via backspace</p></li>
<li><p>optimize internal parsing</p></li>
<li><p>TeXdoc dialog now shows (optionally all) packages as a searchable list. A new button opens the CTAN package documentation online. (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3259">#3259</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3270">#3270</a>, …)</p></li>
<li><p>fix inputting accented characters on OSX</p></li>
<li><p>handle keyval with spaces better <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3362">#3362</a></p></li>
<li><p>save some memory by reading thesaurus database only when needed the first time</p></li>
</ul>
</section>
<section id="texstudio-4-6-3">
<h2>TeXstudio 4.6.3<a class="headerlink" href="#texstudio-4-6-3" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>improved handling of active packages when loading included files</p></li>
<li><p>better detection that a screen is not active any more and move window onto active screen</p></li>
<li><p>Cancel button of dialog for inserting label references now inserts nothing, but you can still add an empty reference when needed (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3230">#3230</a>)</p></li>
</ul>
</section>
<section id="texstudio-4-6-2">
<h2>TeXstudio 4.6.2<a class="headerlink" href="#texstudio-4-6-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix crash</p></li>
</ul>
</section>
<section id="texstudio-4-6-1">
<h2>TeXstudio 4.6.1<a class="headerlink" href="#texstudio-4-6-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix wrong path for saving cache information (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3225">#3225</a>)</p></li>
<li><p>allow delimiter operations on $ math sections</p></li>
</ul>
</section>
<section id="texstudio-4-6-0">
<h2>TeXstudio 4.6.0<a class="headerlink" href="#texstudio-4-6-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>use subfiles root for compilation if the current document is a child</p></li>
<li><p>load the complete subfile project to provide proper syntax checking, also when just opening a subfile root</p></li>
<li><p>cache structure/labels/usercommands/packages for faster reload of large projects (optional) (<a class="reference external" href="https://github.com/texstudio-org/texstudio/commit/ef0ab75e00a4f785d199089060553a53ba23bb7e">ef0ab75</a>)</p></li>
<li><p>add support for alignedat environment in QuickArray Wizard (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2921">#2921</a>)</p></li>
<li><p>add a Lorem Ipsum generator to the Random Text Generator dialog (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3102">#3102</a>)</p></li>
<li><p>change default windows style for new installs to Fusion instead of modern-dark, in case system darkmode is detected (<a class="reference external" href="https://github.com/texstudio-org/texstudio/commit/ad0fc4485f2f7643b3b7b44318e29f54efe2132f">ad0fc44</a>)</p></li>
<li><p>improve some details and fix issues of the Quick Start wizard (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2901">#2901</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3153">#3153</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3150">#3150</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3157">#3157</a>)</p></li>
<li><p>improve some details of the Edit Macros dialog (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3130">#3130</a>)</p></li>
<li><p>The link to the TeXstudio homepage is now at the top of the About dialog (Help menu) and the number of the latest stable version is also displayed (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3146">#3146</a>)</p></li>
<li><p>option Disable horizontal scrolling for “Fit to Text Width” now affects horizontal scrolling with mousepad and scroll wheel (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1526">#1526</a>)</p></li>
<li><p>fix editor moving last line of a selection when selection ends at start of a line (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3131">#3131</a>)</p></li>
<li><p>fix some icon issues on OSX (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2921">#3100</a>,<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3104">#3104</a>)</p></li>
<li><p>basic support for tblr colspec</p></li>
</ul>
</section>
<section id="texstudio-4-5-2">
<h2>TeXstudio 4.5.2<a class="headerlink" href="#texstudio-4-5-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>follow system light-/dark-mode on windows/linux for Fusion&Windows-Style</p></li>
<li><p>allow wheel usage over linenumber/linemark/fold panel of editors</p></li>
<li><p>fix skipping scroll when pointer was moved outside the text pane (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2614">#2614</a>)</p></li>
<li><p>add Min/Max/Close buttons to Macro Editor dialog (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/2987">#2987</a>)</p></li>
<li><p>fix text in status bar of Macro Editor wiggling around after 10s and 50s (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3001">#3001</a>)</p></li>
<li><p>Show changelog in about dialog and <a class="reference external" href="https://texstudio-org.github.io/CHANGELOG.html">manual</a></p></li>
<li><p>pasting from LibreOffice Calc uses <code class="docutils literal notranslate"><span class="pre">&</span></code> and <code class="docutils literal notranslate"><span class="pre">\\</span></code> as delimiters. If pasted where no table is defined, the table wizard is called.</p></li>
<li><p>change Adv. Editor option “Vertical Overscroll” to scroll last line to top (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2944">#2944</a>)</p></li>
<li><p>when the mouse cursor hovers over a spin/combo box, the wheel scrolls through the configuration page instead of changing values (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2977">#2977</a>)</p></li>
<li><p>copy some details (icons, separators) to menu item list in combo box (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3025">#3025</a>)</p></li>
<li><p>support toggling comment on folded lines (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2912">#2912</a>)</p></li>
<li><p>don’t show pointing hand cursor over hyperlinks when magnifier is active (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/2982">#2982</a>)</p></li>
<li><p>improve usage of tab key and enter key in QuickStart Wizard (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3014">#3014</a>)</p></li>
<li><p>add \maketitle to the document created by QuickStart Wizard if appropriate (<a class="reference external" href="https://github.com/texstudio-org/texstudio/pull/3015">#3015</a>)</p></li>
<li><p>pos1 (home) key now sets cursor to start or to first non-blank character of editor lines (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3012">#3012</a>)</p></li>
<li><p>fix a crash in a special case (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2985">#2985</a>)</p></li>
<li><p>updated LaTeX2e manual (help menu) and added missing image</p></li>
<li><p>enable multi-file templates in online template repository</p></li>
<li><p>allow git push when using git checkin dialog (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/3005">#3005</a>)</p></li>
<li><p>many new and updated cwls</p></li>
<li><p>updated translations</p></li>
<li><p>improved cmake build</p></li>
</ul>
</section>
<section id="texstudio-4-5-1">
<h2>TeXstudio 4.5.1<a class="headerlink" href="#texstudio-4-5-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>Provide online template repository</p></li>
<li><p>change preview target in IDEFIX menu (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2760">#2760</a>)</p></li>
<li><p>use QtMultimedia instead of phonon to show movies in pdf (non-default)</p></li>
<li><p>regex in search panel is syntax checked and marked if wrong</p></li>
<li><p>latex menu for horizontal spacing (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2687">#2687</a>)</p></li>
<li><p>config dialog with resizable splitter (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2707">#2707</a>)</p></li>
<li><p>insert inline math mode as $$ (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2719">#2719</a>)</p></li>
<li><p>add editor action “Move all (others) to other view” (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2713">#2713</a>)</p></li>
<li><p>show macro name in completer list (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2679">#2679</a>)</p></li>
<li><p>show macro trigger and shortcut in configuration window (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2635">#2635</a>)</p></li>
<li><p>support import of several macros at once (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2911">#2911</a>)</p></li>
<li><p>fix wrong side panel title when changing grid size in config (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2743">#2743</a>)</p></li>
<li><p>preview/clear preview now use position of context menu as reference <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2794">(#2794</a>)</p></li>
<li><p>add a Package Tab to the QuickStart Wizard (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2831">#2831</a>)</p></li>
<li><p>Editor option ‘Show Only Monospaced Fonts’ is now persistent (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/788">#788</a>)</p></li>
<li><p>fix size of config dialog on low res screens (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/995">#995</a>)</p></li>
<li><p>add script command loadManagedMenu, s. new section “Menu Definitions” in the manual (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2816">#2816</a>)</p></li>
<li><p>switch to pointer cursor over bookmark column of editors (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2220">#2220</a>)</p></li>
<li><p>add shadow option for rectangular magnifier in pdf viewer config (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2885">#2885</a>)</p></li>
<li><p>in split view mode add editor to split view where current editor is (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2838">#2838</a>)</p></li>
<li><p>copy tooltip info to menu item list in combo box (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2881">#2881</a>)</p></li>
</ul>
</section>
<section id="texstudio-4-4-1">
<h2>TeXstudio 4.4.1<a class="headerlink" href="#texstudio-4-4-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix file association on OSX</p></li>
<li><p>allow ignore all in spell checker dialog</p></li>
<li><p>fix language code for LanguageTool</p></li>
<li><p>fix cancel file close (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2705">#2705</a>)</p></li>
<li><p>fix missing icons in latex/math menu</p></li>
</ul>
</section>
<section id="texstudio-4-4-0">
<h2>TeXstudio 4.4.0<a class="headerlink" href="#texstudio-4-4-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>new icon theme Colibri (by geolta)</p></li>
<li><p>modernized manual</p></li>
<li><p>faster removing of multiple lines</p></li>
<li><p>end multi cursor mode with esc</p></li>
<li><p><strong>no</strong> win/qt5 build</p></li>
<li><p>switch to CMAKE build system (qmake deprecated)</p></li>
<li><p>hide/filter configuration completer list</p></li>
<li><p>bug fixes</p></li>
</ul>
</section>
<section id="texstudio-4-3-1">
<h2>TeXstudio 4.3.1<a class="headerlink" href="#texstudio-4-3-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix loading files various times if relative path is used for \include (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2533">#2533</a>)</p></li>
<li><p>fix custom verbatim highlighting (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2528">#2528</a>)</p></li>
<li><p>fix label highlighting (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2512">#2512</a>)</p></li>
<li><p>fix version checking (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2527">#2527</a>)</p></li>
</ul>
</section>
<section id="texstudio-4-3-0">
<h2>TeXstudio 4.3.0<a class="headerlink" href="#texstudio-4-3-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>show most used command at first place in completer</p></li>
<li><p>more cwls</p></li>
<li><p>get position into clipboard in pdf on ctrl+shift+click (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2324">#2324</a>)</p></li>
<li><p>set grid column of first page in pdf viewer with a mouse click (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2190">#2190</a>)</p></li>
<li><p>copy/paste table content into table/matrix wizard</p></li>
<li><p>move to next/previous word now stops at every delimiter (no skip over several brackets) <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2311">#2311</a></p></li>
<li><p>build qt6/win for win10+</p></li>
<li><p>small bug fixes</p></li>
</ul>
</section>
<section id="texstudio-4-2-3">
<h2>TeXstudio 4.2.3<a class="headerlink" href="#texstudio-4-2-3" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix unable to save under special circumstances (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2124">#2124</a>)</p></li>
<li><p>fix stuck to save unsaved document (only in explicit root mode and with a new unsaved document,<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2153">#2153</a>)</p></li>
<li><p>xindex engine added</p></li>
<li><p>fix math highlighting in keyvals (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2138">#2138</a>)</p></li>
<li><p>add context menu in embedded pdf viewer to invert pdf colors</p></li>
<li><p>remember window state (maximized/normal) of config dialog</p></li>
<li><p>fix (and speed-up) miktex package detection</p></li>
<li><p>fix handling apostrophed words better in spellchecker (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2179">#2179</a>)</p></li>
<li><p>regular expression in extended search behave the same as in normal search</p></li>
<li><p>more cwls</p></li>
</ul>
</section>
<section id="texstudio-4-2-2">
<h2>TeXstudio 4.2.2<a class="headerlink" href="#texstudio-4-2-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>more cwls</p></li>
<li><p>fix crash, <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2093">#2093</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2084">#2084</a>, <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2109">#2109</a></p></li>
<li><p>use picture highlighting for tikz env and similar</p></li>
</ul>
</section>
<section id="texstudio-4-2-1">
<h2>TeXstudio 4.2.1<a class="headerlink" href="#texstudio-4-2-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix placeholder issues</p></li>
<li><p>fix handling mirrored placeholder, like in issue <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2063">#2063</a></p></li>
<li><p>handle NewDocumentsCommand better for completer</p></li>
<li><p>enable “open in explorer” again</p></li>
<li><p>fix building for poppler >=22.x</p></li>
<li><p>more cwls</p></li>
</ul>
</section>
<section id="texstudio-4-2-0">
<h2>TeXstudio 4.2.0<a class="headerlink" href="#texstudio-4-2-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>more cwls</p></li>
<li><p>fix key handling for some special keyboard set-ups (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/2011">#2011</a>)</p></li>
<li><p>fix user menu handling</p></li>
<li><p>filter available dictionaries in status/language selection</p></li>
<li><p>change placeHolder behavior: autoremove when content in placeholder is changed, don’t use placeholder for cutBuffer</p></li>
</ul>
</section>
<section id="texstudio-4-1-2">
<h2>TeXstudio 4.1.2<a class="headerlink" href="#texstudio-4-1-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>allow resizing the different sections in the symbol widget</p></li>
<li><p>fix automatic session restore on OSX/Qt6</p></li>
<li><p>scale inline preview if visible linewidth is too small</p></li>
<li><p>fix latex package name parsing on Qt5 builds</p></li>
<li><p>added cwls</p></li>
<li><p>Use Qt 6.2.2 on OSX (fixes ctrl+letter shortcut issue on OSX)</p></li>
</ul>
</section>
<section id="texstudio-4-1-1">
<h2>TeXstudio 4.1.1<a class="headerlink" href="#texstudio-4-1-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix weird OSX issue that cursor keys were not working</p></li>
<li><p>allow maximise config dialog</p></li>
</ul>
</section>
<section id="texstudio-4-1-0">
<h2>TeXstudio 4.1.0<a class="headerlink" href="#texstudio-4-1-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>change session format to json in order to circumvent OSX/Qt6 issue</p></li>
<li><p>fix input box for Chinese (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1896">#1896</a>)</p></li>
<li><p>fix update of pdf fit to text width (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1935">#1935</a>)</p></li>
<li><p>make edview accessible from js</p></li>
</ul>
</section>
<section id="texstudio-4-0-4">
<h2>TeXstudio 4.0.4<a class="headerlink" href="#texstudio-4-0-4" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>use QT6.2.1 on OSX, fix crash when checking for updates, fix restoring last session</p></li>
<li><p>better pdf font substitution on windows (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1812">#1812</a>)</p></li>
<li><p>fix placing cursor for large fonts (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1908">#1908</a>)</p></li>
<li><p>more cwls</p></li>
</ul>
</section>
<section id="texstudio-4-0-3">
<h2>TeXstudio 4.0.3<a class="headerlink" href="#texstudio-4-0-3" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix linewidth calculation in Qt6</p></li>
<li><p>fix crash on load/new doc (under unknown,system specific circumstances)</p></li>
<li><p>remove placeholder quicker</p></li>
<li><p>more cwls</p></li>
</ul>
</section>
<section id="texstudio-4-0-2">
<h2>TeXstudio 4.0.2<a class="headerlink" href="#texstudio-4-0-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix structure view (includes and cursor marking, <a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1828">#1828</a>)</p></li>
<li><p>fix completer tooltip on bibids (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1835">#1835</a>)</p></li>
<li><p>OSX: fix “slanted” cursor (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1836">#1836</a>)</p></li>
<li><p>more cwls</p></li>
</ul>
</section>
<section id="texstudio-4-0-1">
<h2>TeXstudio 4.0.1<a class="headerlink" href="#texstudio-4-0-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>add more cwls</p></li>
<li><p>fix pdfviewer page display</p></li>
<li><p>build OSX with QT6.2, fix special characters entry (alt+n + n , etc.) (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1770">#1770</a>)</p></li>
<li><p>activate crash handler on win again</p></li>
<li><p>fix structure detection for included files</p></li>
</ul>
</section>
<section id="texstudio-4-0-0">
<h2>TeXstudio 4.0.0<a class="headerlink" href="#texstudio-4-0-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>adapt to Qt6/poppler-qt6</p></li>
<li><p>OSX/win build provided with Qt6</p></li>
<li><p>remodel structure handling in order to avoid (rare) crashes</p></li>
<li><p>more and updated completion word lists thanks to mbertucci47</p></li>
<li><p>handle text (e.g. \text{text}) in mathenv as text with spell checking</p></li>
<li><p>performance improvement for large files with large number of labels and/or large number of includes</p></li>
<li><p>fix that search options are persistent</p></li>
<li><p>automatic structure scrolling can be turned off (<a class="reference external" href="https://github.com/texstudio-org/texstudio/issues/1742">#1742</a>)</p></li>
<li><p>some bug fixes</p></li>
</ul>
</section>
<section id="texstudio-3-1-2">
<h2>TeXstudio 3.1.2<a class="headerlink" href="#texstudio-3-1-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>completed global TOC (background color coded, can be adjusted in config)</p></li>
<li><p>fontawesome5 symbol pane</p></li>
<li><p>another dark theme style (Orion Dark)</p></li>
<li><p>slightly modernised windows installer</p></li>
<li><p>smaller windows binaries</p></li>
<li><p>fix menu changes by user</p></li>
<li><p>fix root document detection when symbolic links of symbolic links are involved (#1505)</p></li>
<li><p>fix disabled parentheses autocompletion after certain completer actions (#1347)</p></li>
<li><p>results from styleparser gets immediately updated</p></li>
</ul>
</section>
<section id="texstudio-3-1-1">
<h2>TeXstudio 3.1.1<a class="headerlink" href="#texstudio-3-1-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix crashes concerning opening included files</p></li>
<li><p>let global TOC update as you type</p></li>
</ul>
</section>
<section id="texstudio-3-1-0">
<h2>TeXstudio 3.1.0<a class="headerlink" href="#texstudio-3-1-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix changing GUI language</p></li>
<li><p>global TOC added which needs to be updated for now (WIP)</p></li>
</ul>
</section>
<section id="texstudio-3-0-5">
<h2>TeXstudio 3.0.5<a class="headerlink" href="#texstudio-3-0-5" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix crash when deleting all elements of a build chain (#1415)</p></li>
<li><p>fix large tooltips on win with ADWAITA style</p></li>
<li><p>number of pdf rendering threads limited to 8 (or to set value, see #1463)</p></li>
<li><p>add command line option –texpath to force a tex path</p></li>
<li><p>fix touchpad scroll in x direction</p></li>
<li><p>fix a seldom crash</p></li>
<li><p>adapt speller dialog to find the same errors as the online checker</p></li>
<li><p>fix replace in global search</p></li>
</ul>
</section>
<section id="texstudio-3-0-4">
<h2>TeXstudio 3.0.4<a class="headerlink" href="#texstudio-3-0-4" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix RTL presentation when zoomed (#1404)</p></li>
<li><p>fix pdf toolbar size setting</p></li>
</ul>
</section>
<section id="texstudio-3-0-3">
<h2>TeXstudio 3.0.3<a class="headerlink" href="#texstudio-3-0-3" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix OSX build</p></li>
</ul>
</section>
<section id="texstudio-3-0-2">
<h2>TeXstudio 3.0.2<a class="headerlink" href="#texstudio-3-0-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>handle \tabularnewline correctly (#1373)</p></li>
<li><p>fix text insertion on selected text (#1359&#1354)</p></li>
<li><p>changed behaviour for cut buffer and Ctrl+e (insert env) (#1342)</p></li>
<li><p>texdoc added as selectable command</p></li>
<li><p>win build now uses 64 bit and can handle larger documents</p></li>
<li><p>larger number of default dictionaries added</p></li>
</ul>
</section>
<section id="texstudio-3-0-1">
<h2>TeXstudio 3.0.1<a class="headerlink" href="#texstudio-3-0-1" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix glitch in modern style (#1238 , triangle missing)</p></li>
<li><p>fix equation preview (#1234)</p></li>
<li><p>fix commands with quotes (#1225 & #1169)</p></li>
<li><p>fix syntax marker in darkmode (#1224)</p></li>
</ul>
</section>
<section id="texstudio-3-0-0">
<h2>TeXstudio 3.0.0<a class="headerlink" href="#texstudio-3-0-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>speed up document parsing, should result in faster document load times</p></li>
<li><p>spell checking is done asynchronously</p></li>
<li><p>custom verbatim/math env highlighting abandoned for a cwl based approach</p></li>
<li><p>better dark-mode support</p></li>
<li><p>qt4 support abandoned</p></li>
</ul>
</section>
<section id="texstudio-2-12-22">
<h2>TeXstudio 2.12.22<a class="headerlink" href="#texstudio-2-12-22" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fixes garbled symbols in OSX</p></li>
<li><p>fix crash when changing magic language comment</p></li>
<li><p>fix pdf search path handling.</p></li>
</ul>
</section>
<section id="texstudio-2-12-20">
<h2>TeXstudio 2.12.20<a class="headerlink" href="#texstudio-2-12-20" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fixes a problem with replacing when search highlight is activated.</p></li>
</ul>
</section>
<section id="texstudio-2-12-18">
<h2>TeXstudio 2.12.18<a class="headerlink" href="#texstudio-2-12-18" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>bug fixes</p></li>
<li><p>some cwl added</p></li>
<li><p>correct handling of \string~ in filenames in \include</p></li>
<li><p>search can handle more regexp (greedy/lazy) since it has been changed to QRegularExpression on QT5 (no change on QT4)</p></li>
</ul>
</section>
<section id="texstudio-2-12-16">
<h2>TeXstudio 2.12.16<a class="headerlink" href="#texstudio-2-12-16" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>bug fixes</p></li>
<li><p>some fixes for tool-tip preview by MeanSquaredError</p></li>
</ul>
</section>
<section id="texstudio-2-12-14">
<h2>TeXstudio 2.12.14<a class="headerlink" href="#texstudio-2-12-14" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>fix bug that not all available GUI languages are shown</p></li>
<li><p>tweak fuzzy completer</p></li>
<li><p>fix template presentation</p></li>
</ul>
</section>
<section id="texstudio-2-12-12">
<h2>TeXstudio 2.12.12<a class="headerlink" href="#texstudio-2-12-12" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>improve macro handling, provide gui that directly downloads macros from github.com/texstudio-org/texstudio-macro</p></li>
<li><p>add fuzzy completion mode</p></li>
<li><p>add cwls</p></li>
<li><p>fix rare bug that the character appear reverse order</p></li>
<li><p>bug fixes</p></li>
</ul>
</section>
<section id="texstudio-2-12-10">
<h2>TeXstudio 2.12.10<a class="headerlink" href="#texstudio-2-12-10" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>improvement recognized latex commands and packages for completion/syntax checking</p></li>
<li><p>complete package names when they contain minus</p></li>
<li><p>do not clean .git subfolder with auxiliary files</p></li>
<li><p>pdf viewer: improved previous page jumping, fix embedded movie boxes (when compiled with phonon)</p></li>
<li><p>option to use qt file dialog rather than system file dialog</p></li>
<li><p>fix structure view with Qt >5.10</p></li>
<li><p>bug fixes</p></li>
</ul>
</section>
<section id="texstudio-2-12-8">
<h2>TeXstudio 2.12.8<a class="headerlink" href="#texstudio-2-12-8" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>improved tokenizer for syntax checking and completion</p></li>
<li><p>pressing Ctrl+F while the editor search has focus opens the extended search, i.e., you’ll get extended search by pressing Ctrl+F twice</p></li>
<li><p>automatically insert math delimiters ($) when inserting a math command outside of a math env (can be turned off, default on)</p></li>
<li><p>change copy behavior of multiple cursors from selection order to line order</p></li>
<li><p>file list is now a transparent popup window: closes when clicked outside</p></li>
<li><p>combine file conflict and show diff dialog</p></li>
<li><p>fix file watcher not recognizing multiple changes to a file in quick succession</p></li>
<li><p>improved detection of package names when opening texdoc</p></li>
<li><p>new symbol panel layout</p></li>
<li><p>some touch scrolling on certain panels</p></li>
<li><p>updated synctex and poppler libraries for pdf viewer</p></li>
<li><p>fix undo when a snippet is inserted and a selection is inserted as well</p></li>
<li><p>fix some parts of the editor background may not be drawn in the correct color</p></li>
<li><p>build for OSX High Sierra</p></li>
<li><p>various other fixes</p></li>
</ul>
</section>
<section id="texstudio-2-12-6">
<h2>TeXstudio 2.12.6<a class="headerlink" href="#texstudio-2-12-6" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>use Breeze window theme on KDE Plasma 5 (thanks to Alexander Wilms)</p></li>
<li><p>support single-finger panning gesture on most config dialog components</p></li>
<li><p>support single-finger panning touch gesture on log viewer</p></li>
<li><p>pdf viewer scroll tool: support single-finger panning gesture</p></li>
<li><p>center width-constrained documents in the editor (optional)</p></li>
<li><p>add document tab context menu entries “Close” and “Close All Other Documents”</p></li>
<li><p>improved layout of config build page</p></li>
<li><p>add system check for language tool</p></li>
<li><p>change search defaults to case-insensitive (feature-requests#1254)</p></li>
<li><p>tags for beamer</p></li>
<li><p>change preview default to embedded pdf</p></li>
<li><p>handle preview failures more gracefully, i.e. no warning pop-ups</p></li>
<li><p>respect preview settings (panel,etc) also for hover preview</p></li>
<li><p>show hover preview as tooltip in case of inline-mode</p></li>
<li><p>warn if compiler commands are actually a command list</p></li>
<li><p>several improvements to the latex parser</p></li>
<li><p>notify that a restart is required when switching between modern and classic style</p></li>
<li><p>improved LanguageTool communication: better error handling</p></li>
<li><p>add reset to default button for some LT settings</p></li>
<li><p>add 200ms delay before showing auto-hidden viewer toolbar to prevent flicker</p></li>
<li><p>eye candy for pdf circular magnifier (adapted code from texworks)</p></li>
<li><p>show pdf highlight in magnifier</p></li>
<li><p>capslock does not close completer any more</p></li>
<li><p>alternative approach for determine directories from complete texts</p></li>
<li><p>use cache for previews</p></li>
<li><p>auto open completer when starting to type in references, packages etc.</p></li>
<li><p>scripting: editor.cutBuffer</p></li>
<li><p>subframetitle in structure view</p></li>
<li><p>enable inputMethod (e.g. ^) in completer</p></li>
<li><p>change default for complete non-text chacters to off, as it tends to cause unexpected behaviour</p></li>
<li><p>fix word separation with punctuation</p></li>
<li><p>fix: remove incorrect warning “Unknown magic comment” for “% !TeX TS-program = “</p></li>
<li><p>fix: avoid compile fail if magic comment program is spelled wrongly</p></li>
<li><p>fix: duplicate lines in autogenerated cwl files</p></li>
<li><p>fix multi line argument interpretation</p></li>
<li><p>fix pdfviewer in enlarged mode</p></li>
<li><p>fix editing of basic shortcuts</p></li>
<li><p>fix number in length keyVals</p></li>
<li><p>fix flickering in structure view</p></li>
<li><p>fix crash with qimage cache</p></li>
<li><p>fix crash when restoring centralVSplitterState (bug 2175)</p></li>
<li><p>fix highlighting of current entry in structure</p></li>
<li><p>fix Open Terminal not working on windows QTBUG-57687 (bug 2178)</p></li>
<li><p>fix column detection for tabu/longtabu</p></li>
</ul>
</section>
<section id="texstudio-2-12-4">
<h2>TeXstudio 2.12.4<a class="headerlink" href="#texstudio-2-12-4" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>detect definition of tex counts using \newcount</p></li>
<li><p>improve config dialog layout</p></li>
<li><p>make todo comment detection configurable</p></li>
<li><p>show frame titles in structure view</p></li>
<li><p>support table alignment in IEEEeqnarray, xtabular and mpxtabular</p></li>
<li><p>table alignment: fix aligning of empty cols</p></li>
<li><p>table alignment: place \ if last columns is empty</p></li>
<li><p>warn if \begin{column} is used outside columns-env</p></li>
<li><p>workaround for not interpreting $ inside sweave \Sexpr{}</p></li>
<li><p>option to deactivate interperation of command definition in magic comments</p></li>
<li><p>remove pdf viewer subtypes from “Default Viewer” config. PDF viewer subtypes should be selected in “PDF Viewer”.</p></li>
<li><p>increase the maximal resolution for pdf rendering (bug 2003)</p></li>
<li><p>toolbar for embedded viewer can not turned-off anymore</p></li>
<li><p>show shortcuts in tooltips (can be deactivated in the options)</p></li>
<li><p>pass non-breaking space to grammar check (fixes bug 2040)</p></li>
<li><p>\item completion no adds a space (feature request 994)</p></li>
<li><p>fix highlighting of current section in structure (bug 2103)</p></li>
<li><p>fix delays when typing _abc</p></li>
<li><p>fix bug in log parser: wrong filename if empty brackets () occur in text</p></li>
<li><p>fix word repetition error on non-breaking space (~)</p></li>
<li><p>fix file detection in latex/include file</p></li>
<li><p>fix width of side panel not saved (bug 2083)</p></li>
<li><p>fix ampersand in in recent session names</p></li>
<li><p>fix parsing of \RequirePackage in style files if the argument is completed on the same line</p></li>
<li><p>fix misinterpretation of closing brace if extra opening brace is used over multilines</p></li>
<li><p>fix jumping to first page when changing magnifier/hand in pdfviewer</p></li>
<li><p>fix spelling error on words followed by</p></li>
<li><p>show option –version when calling with –help</p></li>
<li><p>fix link to LibreOffice dictionaries</p></li>
<li><p>fix crash on pressing Esc in options</p></li>
<li><p>fix entering persian half-space letter</p></li>
<li><p>fix \maketitle completion</p></li>
<li><p>fix shortcut context on OSX</p></li>
<li><p>fix robustcommand definition</p></li>
<li><p>use $* instead of $@ in BUILD.sh (bug 2042)</p></li>
<li><p>add needspace.cwl</p></li>
<li><p>update some cwls</p></li>
<li><p>add turkish translation</p></li>
</ul>
</section>
<section id="texstudio-2-12-2">
<h2>TeXstudio 2.12.2<a class="headerlink" href="#texstudio-2-12-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>PDF shortcuts are now changeable</p></li>
<li><p>Support LanguageTool json API (needed for LanguageTool > 3.5)</p></li>
<li><p>slightly improved layout of config dialog</p></li>
<li><p>improved detection of stdout and stderr redirection (bug 2019)</p></li>
<li><p>fix: duplicate side panel icons (bug 2016)</p></li>
<li><p>fix: togglefullscreen from maximised and in reverse (bug 2021)</p></li>
<li><p>fix: don’t try to call bibtex/biber if there are no bibtex-files (bug 2025)</p></li>
<li><p>fix: detection of programs (bug 2037)</p></li>
<li><p>fix: avoid problems if check latex is called without open documents</p></li>
</ul>
</section>
<section id="texstudio-2-12-0">
<h2>TeXstudio 2.12.0<a class="headerlink" href="#texstudio-2-12-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>improved user interface: optimized layout, some new icons, some changes of color</p></li>
<li><p>warn if file-saving fails</p></li>
<li><p>cwl-based highlighting of todo-like commands</p></li>
<li><p>partly support \todo commands spanning multiple lines (starting line is considered for highlighting and structure entry)</p></li>
<li><p>partly support highlighting of multi-line titles: first line is highlighted</p></li>
<li><p>move cursor to context in line when clicking on log entry</p></li>
<li><p>add “Move all to other view” to editor tabs context menu</p></li>
<li><p>add shortcut Ctrl+Alt+X to open the current pdf in the external viewer</p></li>
<li><p>open the annotation dialog by double-clicking on an annotation in the list</p></li>
<li><p>indicate LanguageTool server in tooltip</p></li>
<li><p>indicate cursor RTL state in status bar</p></li>
<li><p>build commands can be edited in non-advanced mode</p></li>
<li><p>auto user commands on single argument math commands e.g. \overbrace{abc}</p></li>
<li><p>support \input of PGF/TikZ files in graphics wizard</p></li>
<li><p>support fix %BEGIN_FOLD in .rnw files</p></li>
<li><p>improved highlighting for pweave and sweave</p></li>
<li><p>improved tooltips on structure entries</p></li>
<li><p>improved text completion: support compound words, apostrophe, subscript in braces, words with underscores</p></li>
<li><p>Parenthesis -> Select Inner/Outer work also when the cursor is not next to a parenthesis but inside</p></li>
<li><p>don’t clear highlights of search in pdf after timeout</p></li>
<li><p>revert to pre 2.11.0 save method on windows because the new QSaveFile has problems with Dropbox folders</p></li>
<li><p>option to disable safe writing of files (using QSaveFile) - non-Windows only</p></li>
<li><p>option to disable showing logfile/error list in case of compile errors</p></li>
<li><p>option to deactivate all reactions to external file changes</p></li>
<li><p>option to control the triple click behavior</p></li>
<li><p>additional shortcuts with Tab, Backspace, Del in shortcut options</p></li>
<li><p>portable version does now store all settings in a subfolder “config”</p></li>
<li><p>improved automatic handling of hg version information (relevant when building from source tar)</p></li>
<li><p>improved handling of cwl dublets</p></li>
<li><p>use Ctrl+Space for completion on OS X (was Cmd+Space which conflicts with Spotlight search)</p></li>
<li><p>deprecate command line option –ini-file FILE in favor of –config DIR</p></li>
<li><p>deprecate command line option –master in favor of –root</p></li>
<li><p>remove View -> Align Windows (obsolete because of the embedded viewer)</p></li>
<li><p>remove old toolbox style of side panel</p></li>
<li><p>fix crash (newenv without any arguments)</p></li>
<li><p>fix freeze when parsing incorrect \texorpdfstring with incorrect arguments (bug 1948)</p></li>
<li><p>fix label detection in glossaries.cwl (bug 1963)</p></li>
<li><p>fix: automatically run bibliography if there is no bbl file</p></li>
<li><p>fix: “Close last open environment” works now also for environments opened on the same line (bug 1957)</p></li>
<li><p>fix: hg version comparison assumed ‘larger’ if the version could not be determined</p></li>
<li><p>fix: do not lose focus to editor for “Find in PDF”</p></li>
<li><p>fix grammar check on words in text arguments</p></li>
<li><p>fix addchap/addpart entries not recognized as structure elements</p></li>
<li><p>fix incorrect double-click and drag behavior (bug 1936)</p></li>
<li><p>fix issues with not-updated bookmarks (bug 1950)</p></li>
<li><p>fix math hover preview in subfile</p></li>
<li><p>fix “Tab or Indent Selection”</p></li>
<li><p>fix detection of MikTeX 64bit</p></li>
<li><p>fix build with phonon</p></li>
<li><p>improved some cwl files</p></li>
</ul>
</section>
<section id="texstudio-2-11-2">
<h2>TeXstudio 2.11.2<a class="headerlink" href="#texstudio-2-11-2" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>major performance speedup, in case some default section commands were not defined in any used package</p></li>
<li><p>speed up pasting into large documents (factor 100x)</p></li>
<li><p>add comment toggle</p></li>
<li><p>improved search panel layout</p></li>
<li><p>improved bracket detection for \todo highlighting (bug 1789)</p></li>
<li><p>improved parsing of section titles (bug 1817)</p></li>
<li><p>added shorter auto-save intervals (1 min, 2 min)</p></li>
<li><p>detection of user-local installation of MikTeX</p></li>
<li><p>cwl-format: suffix %plain disables possible semantics associated with an argument name</p></li>
<li><p>cwl-format: suffix %labeldef for definition of labels</p></li>
<li><p>cwl-format: %suffix notation takes precedence over detection by argument name</p></li>
<li><p>cwl-format: allow ‘key’ to be used in label if #l is set</p></li>
<li><p>replace babel german by ngerman in presentation wizard</p></li>
<li><p>highlight cursorEnums in script</p></li>
<li><p>support reading an application style sheet from stylesheet.qss</p></li>
<li><p>fix crash on qt4 if update check is successful</p></li>
<li><p>fix: auto-indent</p></li>
<li><p>fix: make insertion of tabs work with cursor mirrors (bug 1788)</p></li>
<li><p>fix: verbatim setting for \verb|abc| (bug 1795)</p></li>
<li><p>fix: update of save icon after SaveAll (bug 1808)</p></li>
<li><p>fix: dictionaries in extracted .oxt files not recognized (bug 1804)</p></li>
<li><p>fix: replace with regexp containing lookahead (bug 1779)</p></li>
<li><p>fix: keep indentation when using the graphics wizard (1816)</p></li>
<li><p>fix: quote replacement on formerly hidden child documents (1827)</p></li>
<li><p>fix: do not interpret double backslash within braces as column end in tabular environment (bug 1831)</p></li>
<li><p>fix: show a warning if file could not be saved</p></li>
<li><p>fix: correctly handle optional arguments in command definitions</p></li>
<li><p>fix: handling of \let arguments</p></li>
<li><p>fix: spellchecking of words with apostrophe</p></li>
<li><p>fix: visibility of option for system theme icons on Linux</p></li>
<li><p>fix: scripting: cursor.movePostition(n, Left/Right) across empty lines and beyond end of file</p></li>
<li><p>fix: running scripts from the macro window</p></li>
<li><p>fix: mixture of zoom and scroll on ctrl+mouse wheel (bug 1847)</p></li>
<li><p>fix: scrreprt detection</p></li>
<li><p>fix: editor font rendering in case of UI scaling (note: this fix is partial and does currently only apply if Options -> Advanced Editor -> Disable Line Cache is chosen)</p></li>
<li><p>fix: argument scanning when option contain key/val pairs</p></li>
<li><p>fix: editor hiding when updating a windowed pdf viewer which was enlarged
before changing to windowed mode (Bug #1876)</p></li>
<li><p>fix: repetition checking for words followed by colon (bug 1884)</p></li>
<li><p>fix: position of completer when completion words become very large</p></li>
<li><p>fix: freeze while typing \texorpdfstring (bug 1898)</p></li>
<li><p>fix: script error on editor.search with options and callback (bug 1899)</p></li>
<li><p>fix: regExp replace in multi doc search</p></li>
<li><p>updated some cwl files</p></li>
</ul>
</section>
<section id="texstudio-2-11-0">
<h2>TeXstudio 2.11.0<a class="headerlink" href="#texstudio-2-11-0" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>support two editors next to each other</p></li>
<li><p>new tabular wizard</p></li>
<li><p>support multi-line commands</p></li>
<li><p>add scrollbar marks for search and bookmarks</p></li>
<li><p>add command option –no-session</p></li>
<li><p>add manual to mac OS X app bundle data</p></li>
<li><p>improve table manipulation of tabu/longtabu</p></li>
<li><p>select words by doubleclick + hold + mousemove</p></li>
<li><p>restructure cwl search paths to settings/completion/user :/completion settings/completion/autogenerated</p></li>
<li><p>safer way of obtaining the PATH on OS X</p></li>
<li><p>add option for image tooltip</p></li>
<li><p>do not show explicit hyphens in section titles of the structure view</p></li>
<li><p>do not parse for structure in non-LaTeX-like languages</p></li>
<li><p>make preview work with \input in preamble (files get rewritten to absolute paths for the temporary compilation)</p></li>
<li><p>use QSaveFile for file saving instead of our custom file saving strategy if available (Qt5 only)</p></li>
<li><p>enable left/right shortcuts for embedded viewer</p></li>
<li><p>remove multiple default values for latexmk (fixes bug 1694)</p></li>
<li><p>support environment variables in additional search paths</p></li>
<li><p>support [txs-app-dir] and [txs-settings-dir] in additional search paths for log and pdf</p></li>
<li><p>add statusbar icon for LanguageTool</p></li>
<li><p>make LanguageTool arguments configurable</p></li>
<li><p>add align cursor mirrors options</p></li>
<li><p>make pasting into cursor mirrors a single undo block</p></li>
<li><p>do not remove cursor mirrors on undo</p></li>
<li><p>select text of current item in Packages Help to allow easier overwriting (feature request 1063)</p></li>
<li><p>select search/replace texts when switching there using Tab / Backtab (feature request 1064)</p></li>
<li><p>added optional workingDirectory argument to script function system()</p></li>
<li><p>added editor->insertSnippet() to scripting environment</p></li>
<li><p>added option to choose log encoding</p></li>
<li><p>make icons greyscale for viewer sync buttons if they are not activated</p></li>
<li><p>added a table template</p></li>
<li><p>added some elements to math/latex menus</p></li>
<li><p>unix: allow defining a datadir different from PREFIX/share</p></li>
<li><p>add the option to use system hunspell and quazip</p></li>
<li><p>add images to windows installer</p></li>
<li><p>document advanced code snippet properties in the manual</p></li>
<li><p>don’t show dialog for creating a file if it could not be opened but exists</p></li>
<li><p>use Freedesktop Icon Naming Specification for standard icons</p></li>
<li><p>add qt5 autodetection to BUILD.sh</p></li>
<li><p>fix duplicated line endings for larger files (chunked loading)</p></li>
<li><p>fix: windows environment variables may contain brackets: PROGRAMFILES(X86)</p></li>
<li><p>fix env closing with $,$$,etc.</p></li>
<li><p>fix: go to PDF for temporarily compiled documents</p></li>
<li><p>fix finding root document when explicit root doc is set</p></li>
<li><p>fix spell check when word ends with point</p></li>
<li><p>fix argument detection: optional arguments may appear after mandatory ones</p></li>
<li><p>fix: correctly generate environment definition from \newenvironment in case of a default argument</p></li>
<li><p>fix crash in keyVal syntax check when the document was deleted in the meantime</p></li>
<li><p>fix: clear replace highlights when search term is changed</p></li>
<li><p>fix: cancel in marco dialog (bug 1662)</p></li>
<li><p>fixed interpretation of % !BIB program = … (bug 1667)</p></li>
<li><p>fix AltGr+F not typing [ on Croatian keyboard</p></li>
<li><p>fix cursor jumping to end of file when trying to jump from a non-matched bracket (bug 1668)</p></li>
<li><p>fix pasting columns over an existing selection (bug 1726)</p></li>
<li><p>fix broken language triggers (bug 1735)</p></li>
<li><p>fix quote replacements</p></li>
<li><p>fix line breaks for cursor mirrors</p></li>
<li><p>fix auto paren completion for cursor mirrors</p></li>
<li><p>fix line operations to work with cursor mirrors</p></li>
<li><p>fix synchronize text of placeholder mirror when inserting an environment on a selection (Ctrl+E)</p></li>