-
Notifications
You must be signed in to change notification settings - Fork 9
/
texnicle_appcast.xml
executable file
·1039 lines (974 loc) · 45.3 KB
/
texnicle_appcast.xml
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
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>TeXnicle's Changelog</title>
<link>http://www.bobsoft-mac.de/texnicle_appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<!-- Version 2.3.0 -->
<item>
<title>Version 2.3.0 (build 3101)</title>
<description><![CDATA[
<h2>TeXnicle 2.3.0</h2>
<p>
<ul>
<li>Added a new Info Navigator view which shows TODO items from all project files.</li>
<li>Various bug fixes and improvements to make compatible with macOS Sierra</li>
<li>Moved to oldest compatible version of OS X 10.9</li>
</ul>
</p>
]]></description>
<pubDate>7th March 2017</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.3/TeXnicle.app.2.3.0.zip"
sparkle:shortVersionString="2.3.0"
sparkle:version="3101"
length="17386633"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFAX5jgdfgAZ/EqNodGwYROgo+rZ7AhR+i+PIAZlx/Yl05EgLnZziUhMh4A=="
/>
</item>
<!-- Version 2.2.15 -->
<item>
<title>Version 2.2.15 (build 2740)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.15</h2>
<p>
Improved performance and bug fixing. The spell-checker would sometimes run away causing high cpu usage.
</p>
]]></description>
<pubDate>5th January 2016</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.15.zip"
sparkle:shortVersionString="2.2.15"
sparkle:version="2740"
length="17040101"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFHyImcijSqqR1D3H/F5nBmZFUbnuAhRtw2hw74ruRviNKL5zA/wu3W4nAQ=="
/>
</item>
<!-- Version 2.2.14 -->
<item>
<title>Version 2.2.14 (build 2691)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.14</h2>
<p>
<h3>General</h3>
<ul>
<li>Better handling of the PDF being deleted from disk behind TeXnicle's back (e.g. via Finder).</li>
<li>The pre-defined formatting hot-keys (cmd-b, cmd-i, etc) now work when no text is selected.</li>
<li>The project Finder now supports regular expression searches
(removed 'match whole words' option as this makes little sense with regular expression searches).</li>
<li>Improved performance for meta-data scanning in projects</li>
<li>Some shiny new icons by Vincent Bouvier</li>
<li>Engines updated to work out-of-the-box with MacTeX and El Capitan</li>
<li>Various bug fixes</li>
</ul>
</p>
]]></description>
<pubDate>4th October 2015</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.14.zip"
sparkle:shortVersionString="2.2.14"
sparkle:version="2691"
length="17039751"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFEL2xwzqNPgfSX4w27YBQA7N1IbjAhQHTMMNWU9OuOYueC0OePKN0CGeWA=="
/>
</item>
<!-- Version 2.2.13 -->
<item>
<title>Version 2.2.13 (build 2551)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.13</h2>
<p>
<h3>General</h3>
<ul>
<li>Improvements in jump-bar support for different sections.</li>
<li>Bug fix to line-number display.</li>
<li>Bug fixes to completion pop-up window for dark-coloured themes.</li>
<li>Bug fix in project template creation.</li>
</ul>
</p>
]]></description>
<pubDate>14th December 2014</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.13.zip"
sparkle:shortVersionString="2.2.13"
sparkle:version="2551"
length="24637496"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFAd0/9l+Eao1VlGy9kf5EzugW/p2AhQNxoBUrjodYI9azu9aW3PUpCdLYg=="
/>
</item>
<!-- Version 2.2.12 -->
<item>
<title>Version 2.2.12 (build 2438)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.12</h2>
<p>
<h3>General</h3>
<ul>
<li>Updated to work on Yosemite.</li>
<li>Added possibility to typeset an individual file via the project tree context menu.</li>
<li>Various minor bug fixes.</li>
</ul>
<h3>Outline View</h3>
<ul>
<li>Improved ConTeXt support (assuming you add \startchapter etc in Preferences -> Outline).</li>
<li>New 'focus' button which displays only the sections relevant to the current file.</li>
<li>Added support for brace-less \input \include commands.</li>
<li>Improved subfiles support in outline view.</li>
</ul>
<h3>Code Clippings Library</h3>
<ul>
<li>Added the ability to export the code clippings library.</li>
<li>Added the ability to import a code clippings library.</li>
<li>Other minor fixes and improvements to the library view.</li>
</ul>
<h3>Editor</h3>
<ul>
<li>Improved autocompletion of citation references, especially for \cites command.</li>
<li>Improved bibliography and citation autocomplete integration.</li>
<li>Minor improvements to handling of brackets. TeXnicle no longer inserts a closing bracket if it already exists.</li>
<li>Popup completion windows now respect the user's theme.</li>
<li>Fixed a bug which caused the quick-spell popup window to placed wrongly on screen.</li>
<li>Some theme text highlighting elements can now be bold.</li>
<li>Added a preference to enable automatic replacement of closing quotes.</li>
<li>Added a preference to customize the replacement string for opening double quotes.</li>
<li>Some performance improvements.</li>
</ul>
</p>
]]></description>
<pubDate>5th October 2014</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.12.zip"
sparkle:shortVersionString="2.2.12"
sparkle:version="2438"
length="24636873"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFEMxw+sCkwiW+SF5Ao6Fdn9aZUxpAhRz4K+knHLkcHyfMLHLN0QmEcWrsw=="
/>
</item>
<!-- Version 2.2.11 -->
<item>
<title>Version 2.2.11 (build 1723)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.11</h2>
<p>
<ul>
<li>Fixed a bug which could cause crashes for some users</li>
<li>Fixed a bug which could stop synctex from working if the output directory is not set or is empty</li>
<li>Fixed a bug which could stop the `` replacement from working at the start of a line</li>
</ul>
</p>
]]></description>
<pubDate>16th April 2014</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.11.zip"
sparkle:shortVersionString="2.2.11"
sparkle:version="1723"
length="24594079"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFCbEqENl/5z9fI0WB97UckruSHMSAhRDEOvWc/oBICOui+9MEbImVwiX2g=="
/>
</item>
<!-- Version 2.2.10 -->
<item>
<title>Version 2.2.10 (build 1719)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.10</h2>
<p>
<ul>
<li>Now any 'include' commands defined in the preferences are also treated properly when building the document outline</li>
<li>Added a new document/project setting for specifying the output directory (for example, when using -output-directory= with latex or pdflatex). Supported by built-in engines latex, pdflatex and xelatex.</li>
<li>Added a project/document setting to enable/disable stopping typesetting on detected errors.</li>
<li>Bug fixes for saving user-added file types.</li>
<li>It is now possible to set finer line spacings in the preferences.</li>
<li>Bug fixes and optimisation for editor.</li>
<li>Improved file loading.</li>
<li>Bug fix for entering accented characters (with alt-u, for example) which appeared in last version.</li>
<li>Other minor bug fixes.</li>
</ul>
</p>
]]></description>
<pubDate>13th April 2014</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.10.zip"
sparkle:shortVersionString="2.2.10"
sparkle:version="1719"
length="24593740"
type="application/octet-stream"
sparkle:dsaSignature="MCsCFDukR0J/J0YZIBm2PNiBL/9RWrUKAhNHsU+i5aBNo3Y5wL2kRta5QIqp"
/>
</item>
<!-- Version 2.2.9 -->
<item>
<title>Version 2.2.9 (build 1616)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.9</h2>
<p>
This version doesn't support Snow Leopard because I still don't have a solution to the PDF viewer problem. See post <a href=http://www.bobsoft-mac.de/files/de9280a32123bc84c37a2856a447ebe0-10.html>here</a>.
</p>
<p>
<ul>
<li>Minor bug fixes for Mavericks.</li>
<li>Files are no longer automatically opened in tabs when importing existing folders and files.</li>
<li>Optimisations to improve scrolling in the editor.</li>
<li>Speed improvements in citation searching.</li>
<li>Improved log file parsing and unification of icons and colors.</li>
<li>The tab key now completes up to the next path separator when completing include paths.</li>
<li>Engines which support bibtex now support choosing the bibtex engine. You can choose bibtex or biber.</li>
<li>State of the embedded console is now properly captured and restored.</li>
<li>Improvements to project builder.</li>
<li>Add a new preference under Typesetting->Trash to recursively trash auxiliary files. In addition, for safety, files are moved to the trash now, rather than being instantly deleted.</li>
</ul>
</p>
]]></description>
<pubDate>25th January 2014</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.9.zip"
sparkle:shortVersionString="2.2.9"
sparkle:version="1616"
length="24585220"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFGcG69CznZ0zc7h8xmkaWu2xdONIAhQGVSDDzxU5twqzBCRF8E3BQ2zHMQ=="
/>
</item>
<!-- Version 2.2.8 -->
<item>
<title>Version 2.2.8 (build 1416)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.8</h2>
<p>
<ul>
<li>User defined environments (defined with \newenvironment) now appear in the environment completion list.<li>
<li>Added the option (under General in preferences) to switch the meaning of cmd-w and cmd-shift-w for the tabbed project editor.<li>
<li>The editor jump bar now shows user-defined sections and properly reflects the colors of the current theme.<li>
<li>Bug fix: under some circumstances, selecting a file in a project tree for renaming would result in renaming the wrong file.<li>
<li>Bug fix: After closing a tab, the close button properly appears on the next tab under the mouse.<li>
</ul>
</p>
]]></description>
<pubDate>26th October 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.8.zip"
sparkle:shortVersionString="2.2.8"
sparkle:version="1416"
length="24335735"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFBkPcvmubVscLBJT6WEXgsNHz1JZAhUAmfSzbqWglvgbI/TYhWWk0ByaoiQ="
/>
</item>
<!-- Version 2.2.7 -->
<item>
<title>Version 2.2.7 (build 1231)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.7</h2>
<p>
<ul>
<li>Improved syntax highlighting support for markup elements (<>, <<>>, ...).</li>
<li>Added a 'New file' menu item to the project tree context menu.</li>
<li>Bug fix: if there is no blank line after an \input{} command then it was ignored in the document outline. This is now fixed.</li>
<li>Fixed bug where an error popup would appear when changing the name of a file/folder in the project tree if the existing name was deleted prior to entering a new name.</li>
<li>Fixed bug which stopped the editor find bar from functioning properly in projects (cmd-f). Actually, this is only partially true: there is a bug in Apple's code here that's being investigated. Due to this bug, on some occasions, an exception will be raised in the error logs.</li>
<li>Fixed a bug which stopped dragging and dropping an image file from the Finder to the editor from working properly in the standalone editor.</li>
<li>Optimised performance when using large bib files.</li>
<li>Improved placeholder parsing.</li>
</ul>
</p>
]]></description>
<pubDate>16th October 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.7.zip"
sparkle:shortVersionString="2.2.7"
sparkle:version="1231"
length="20291611"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFF2rjBk57sXHsomlL5b84a9fvXeSAhRcruqPhiKfHi3i5aMCQea7fGy+ZQ=="
/>
</item>
<!-- Version 2.2.6 -->
<item>
<title>Version 2.2.6 (build 1063)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.6</h2>
<p>
<ul>
<li>Added preference (in Typesetting) to sync the pdf when selecting a section in the document outline.</li>
<li>Improved editor performance.</li>
</ul>
</p>
]]></description>
<pubDate>9th September 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.6.zip"
sparkle:shortVersionString="2.2.6"
sparkle:version="1063"
length="20239569"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFD0BZXcYFHjt92tiSt/MKcuuaXe1AhRwdForwxbfkis0bGUv/tSvhP7Vow=="
/>
</item>
<!-- Version 2.2.5 -->
<item>
<title>Version 2.2.5 (build 1032)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.5</h2>
<p>
Bug fixes:
<ul>
<li>Improved completion for escaped braces (\{ etc).</li>
<li>Improved syntax highlighting.</li>
<li>Improved interaction with the system color panel so it only shows when called for and goes away when the preferences close.</li>
<li>Other minor bug fixes.</li>
</ul>
</p>
]]></description>
<pubDate>27th August 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.5.zip"
sparkle:shortVersionString="2.2.5"
sparkle:version="1032"
length="20244221"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFCqU2eL+MZHOiANx4THEJ8G4jDKPAhQnKpPSFUPs45N2wukn8yN2lOlIbw=="
/>
</item>
<!-- Version 2.2.4 -->
<item>
<title>Version 2.2.4 (build 799)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.4</h2>
<p>
Bug fixes:
<ul>
<li>fixed a bug which stopped the name of group folders from being changed</li>
<li>make sure the project path is properly escaped when opening a terminal</li>
</ul>
</p>
]]></description>
<pubDate>22nd August 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.4.zip"
sparkle:shortVersionString="2.2.4"
sparkle:version="799"
length="20243120"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFGjkACFhhHmQPPwz1m7LwFX3TXlbAhUAjL2UoyCmw3K/gXCw8qR5YlNSGOU="
/>
</item>
<!-- Version 2.2.3 -->
<item>
<title>Version 2.2.3 (build 774)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.3</h2>
<p>
Fixed a bug which could bite when renaming folders in the project editor. Also added a handy menu command under Project to open a terminal at the project folder.
</p>
]]></description>
<pubDate>20th August 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.3.zip"
sparkle:shortVersionString="2.2.3"
sparkle:version="774"
length="20242470"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFQCS0P7zLtYVGFeBKQEk8/BnRO4vsAIUQ68D9vDchZ1Tvyarfrz9XflmyAQ="
/>
</item>
<!-- Version 2.2.2 -->
<item>
<title>Version 2.2.2 (build 764)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.2</h2>
<p>
<ul>
<li>Added the possibility to change the font used in the navigator sidebar. This can be set in each theme.</li>
<li>Bug fix: migration of old color settings to a new theme sometimes failed. To migrate again, edit the TeXnicle preferences plist at ~/Library/Preferences/com.bobsoft.TeXnicle.plist and set the value for the key TPThemeDidMigrate to false.</li>
<li>Small bug fixes in theme editing UI.</li>
<li>Bug fix for 'missing insertion point' problem experienced by some Snow Leopard users.</li>
</ul>
</p>
]]></description>
<pubDate>18th August 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.2.zip"
sparkle:shortVersionString="2.2.2"
sparkle:version="764"
length="20242111"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFDLiSA2ym3vnTXiqtjHNrKOCi/M2AhQbqh08nvG0zM5qfCyBqniZdB0iyA=="
/>
</item>
<!-- Version 2.2.1 -->
<item>
<title>Version 2.2.1 (build 606)</title>
<description><![CDATA[
<h2>TeXnicle 2.2.1</h2>
<p>
<ul>
<li>Added a general preference to choose between a line, box, and block insertion point.</li>
<li>Meta-data items are properly sorted by the order they appear in the project tree now.</li>
<li>You can now drag citations from the citations navigator to make \cite{} commands in the editor.</li>
<li>You can now drag new commands from the new commands navigator to the editor.</li>
<li>Some bug fixes in the themes user interface.</li>
<li>Bug fix: Engine selector should properly reflect new/duplicated engines now.</li>
<li>Bug fix: In some cases the .bib from a \bibliography{} command was not being scanned.</li> </ul>
</p>
]]></description>
<pubDate>4th August 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.1.zip"
sparkle:shortVersionString="2.2.1"
sparkle:version="606"
length="20548630"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFDm+h3EoTSwg+vADFc8HyciY5UamAhUAhPgDRPRs9e5/EM7sDwhHtR5Oy1Q="
/>
</item>
<!-- Version 2.2 -->
<item>
<title>Version 2.2 (build 503)</title>
<description><![CDATA[
<h2>TeXnicle 2.2</h2>
<p>
Introducing 'themes'. Your current settings for colors and fonts will be converted into a theme. You can create your own themes or choose from one of the built-in themes. Themes are a simple plist format and so can be created in a text editor or by editing the theme in the preferences.
</p>
<p>
Changes:
<ul>
<li>New global preferences to control the number of typesetting runs during live update.</li>
<li>Typesetting is now aborted on more common errors.</li>
<li>Various smart substitutions (quotes, dashes, etc) are switched off on the editor by default.</li>
<li>Other minor fixes.</li>
</ul>
</p>
]]></description>
<pubDate>31st July 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.2/TeXnicle.app.2.2.zip"
sparkle:shortVersionString="2.2"
sparkle:version="503"
length="20542401"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFGzEGroPoC6PS2fGqerADpZXPZxgAhQLrZVQJoYGLMgevCF7S8wCER+YUQ=="
/>
</item>
<!-- Version 2.1 -->
<item>
<title>Version 2.1 (build 83)</title>
<description><![CDATA[
<h2>TeXnicle 2.1</h2>
<p>
This version of TeXnicle includes improvements to the look and feel, some nice new features, and a
large number of bug fixes.
<h3>New Features</h3>
<ul>
<li>New "Jump to file" menu option offers a quick way to jump between files in projects.</li>
<li>A new parsed log file view is available on the integrated console. Double-clicking
detected info, warnings and errors will jump to that location in the source code. Parsing
the many flavours of log files is challenging, so you millage may vary. Please report any
issues.</li>
<li>Changes to engine handling:
<ul>
<li>Engines are now passed an additional parameter (6th argument) which is the current typesetting run
number. As such, TeXnicle is now responsible for doing repeated typesetting runs, rather than the
engine. This allows for finer flow control, error handling and provides a more robust infrastructure.</li>
<li>The built-in engines have been updated to perform a single typesetting run. Additional engine features
(like running bibtex) then depend on that run number. <b>Note: Custom engines may need to be updated</b>.</li>
</ul></li>
<li>The document outline now supports custom section commands for each document level. These can be
set in the new 'Outline' preferences tab. The outline colors are now set here too.</li>
<li>Jump bar changes:
<ul>
<li>Added option to enable/disable jumpbar in general preferences.</li>
<li>Added option to disable linenumbers in jumpbar (can lead to performance improvements in large files).</li>
<li>Optimised section list building in jumpbar.</li>
</ul></li>
<li>Documents now remember the live update setting.</li>
<li>Documents now remember the pdf thumbnails setting.</li>
<li>Added a new wrapping mode to wrap to the editor window width.</li>
<li>Added support for \addbibresource{} command for citation completion.</li>
<li>Added support for subfiles package.</li>
<li>Added support for \component command in document outline for ConTeXt users.</li>
<li>Added new menu item to hide navigator panel. And added default keyboard shortcuts for this and existing "Show Navigator" menu item.</li>
<li>Enhanced overflow menu in project tabbed editor, allowing tabs in the overflow to be closed or moved to the front.</li>
</ul>
<h3>Bug Fixes</h3>
This release includes a large number of bug fixes, the main ones are:
<ul>
<li>Bug fix: document outline now properly includes files which have a space in the name.</li>
<li>Bug fix for spellchecker language settings which were not always remembered on the editor.</li>
<li>Bug fix for expanding simple code snippets with no placeholders where the cursor would end up at the beginning of the snippet.</li>
<li>Bug fix for PDF printing on some 10.6.8 machines.</li>
<li>Bug fix: in some circumstances hiding/showing the status view below the editor was failing.</li>
<li>Bug fix: in some cases editing of sections could cause a crash in the document outline view.</li>
<li>Bug fixes in citation handling.</li>
</ul>
</p>
]]></description>
<pubDate>17th July 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.1/TeXnicle.app.2.1.zip"
sparkle:shortVersionString="2.1"
sparkle:version="83"
length="20084377"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFCWDAs4bl5iJXFNoHJVvsAPUhoqxAhRHTysD/JUqHYCUZNHq3SzQ8LE1OQ=="
/>
</item>
<!-- Version 2.0.8 -->
<item>
<title>Version 2.0.8 (build 63)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.8</h2>
<p><ul>
<li>Added preferences for setting the cursor color.</li>
<li>Fixed a bug which resulted in crashed when doing "Save As" on an empty project.</li>
<li>Fixed a bug which stopped the page count on the pdf viewer being updated.</li>
<li>Fixed a bug which could stop bibliography references appearing the autocomplete list.</li>
<li>Fixed a bug which could cause the PDF search field to lose focus during the search.</li>
</ul></p>
]]></description>
<pubDate>13th April 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.8.zip"
sparkle:shortVersionString="2.0.8"
sparkle:version="63"
length="19099194"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFC5A4gb2QTIn66YxL70uyGYYAaNzAhUAkKqNly9jX4eJlDmJyjKDA+nwUpo="
/>
</item>
<!-- Version 2.0.7 -->
<item>
<title>Version 2.0.7 (build 62)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.7</h2>
<p>
Fixed a stupid bug that got left in 2.0.6 and stopped the editor displaying any text for standalone documents. Sorry.
</p>
]]></description>
<pubDate>7th April 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.7.zip"
sparkle:shortVersionString="2.0.7"
sparkle:version="62"
length="19076852"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFHnZzHeqLzc7IPGo7dOZyDH6mhlgAhRtwdBM4o9VdLSFiwF2EOUXy0Nclg=="
/>
</item>
<!-- Version 2.0.6 -->
<item>
<title>Version 2.0.6 (build 61)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.6</h2>
<p>
<ul>
<li>Bug fix in handling of some placeholders.</li>
<li>Better implementation of copy/cut/paste on editor to handle placeholders.</li>
<li>Further improvements to typesetting error handling.</li>
<li>Some bug fixes associated with file encodings.</li>
<li>Added a preference to set the editor margins background color.</li>
<li>Added a preference for setting the line spacing in the editor.</li>
<li>Many enhancements to editor jump bar including:</li>
<ul>
<li>Fixed a bug which stopped %%MARK (etc) items appearing in the jump bar.</li>
<li>Added preferences to select jump bar content.</li>
<li>Added menu command to present jump bar (alt-cmd-s)</li>
</ul>
<li>User-defined commands now support placeholders.</li>
<li>Restructuring of metadata handling to improve performance and scaleability</li>
<li>Metadata views (labels, citations, etc) now include search facility.</li>
<li>Fixed a bug for Mountain Lion users which could result in wrongly sized standalone editor windows on app launch.</li>
<li>Various bug fixes and improvements.</li>
</ul>
</p>
]]></description>
<pubDate>5th April 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.6.zip"
sparkle:shortVersionString="2.0.6"
sparkle:version="61"
length="19076851"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFFdV51Hya5cMEjVYaN2I1+ZBkT3GAhQTWrx7qGydUnTzdb2QyoF+2Rx0Ug=="
/>
</item>
<!-- Version 2.0.5 -->
<item>
<title>Version 2.0.5 (build 60)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.5</h2>
<p>
<ul>
<li>Added a new feature which uses texcount to generate a document count. Use via File -> Create Document Report...</li>
<li>Added a preference to auto trash aux files after typesetting (not including the document).</li>
<li>Fixed a bug relating to the font size after zooming on the text editor.</li>
<li>Other minor bug fixes relating to code folding and placeholders.</li>
<li>Fixed a bug related to the additional PDF viewer (from Build & View) and Live Update.</li>
<li>Typesetting now properly stops on error.</li>
<li>Bug fix: Labels which are in folded code are now available in completion lists.</li>
</ul>
</p>
]]></description>
<pubDate>23rd February 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.5.zip"
sparkle:shortVersionString="2.0.5"
sparkle:version="60"
length="18078668"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFD/QJR4/vRIu2pA1NcA1S0Jn8f6rAhQLZfFnQWdBwxVCD5Ttz0mqhOIX4Q=="
/>
</item>
<!-- Version 2.0.4 -->
<item>
<title>Version 2.0.4 (build 59)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.4</h2>
<p>
<ul>
<li>Various bug fixes pertaining to the interaction of Live Update and the sync-after-typeset option.</li>
<li>Other minor bug fixes, mostly concerning the handling of placeholders.</li>
</ul>
</p>
]]></description>
<pubDate>10th February 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.4.zip"
sparkle:shortVersionString="2.0.4"
sparkle:version="59"
length="18034820"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFD2xlRtpmhCyzbaoBK2jcpe9YKKjAhR52x/bzrPgqZl9q8GQWg0ODez1rA=="
/>
</item>
<!-- Version 2.0.3 -->
<item>
<title>Version 2.0.3 (build 58)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.3</h2>
<p>
<ul>
<li>Added a preference to automatically insert closing $.</li>
<li>Added a new format menu command to escape underscores.</li>
<li>Added a preference to disable showing the welcome screen when the last open document closes.</li>
<li>Typing $, (, {, or [ when some text is selected will enclose the selected text in the correct pair of characters.</li>
<li>When typing \left{, \left( etc, TeXnicle will automatically insert the corresponding \right (if the preference 'Automatically insert closing brace' is on).</li>
<li>Added some formatting menu items to the editor's context menu.</li>
<li>Restored correct operation of the jump bar.</li>
<li>Better handling of placeholders. They are now saved out when saving and restored when loading tex files.</li>
<li>Bug fix: sometimes TeXnicle would crash if a typesetting was started too close to the previous one.</li>
<li>Bug fix: sometimes the print button below the pdf viewer was not working because the page label was overlapping.</li>
<li>Performance improvements.</li>
<li>Other minor bug fixes.</li>
</ul>
</p>
]]></description>
<pubDate>2nd February 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.3.zip"
sparkle:shortVersionString="2.0.3"
sparkle:version="58"
length="18044406"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFQCJqWQc1pzRtoVok2jhJ8zbEqOfkgIUe8sjDfkUk+9cu7KAl0p0W1tyc48="
/>
</item>
<!-- Version 2.0.2 -->
<item>
<title>Version 2.0.2 (build 57)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.2</h2>
<p>
<ul>
<li> Minor cosmetic improvements.</li>
<li> Improved automatic file loading for different text encodings.</li>
<li> Palette commands now appear in autocompletion list.</li>
<li> Added a new set of menu commands for applying LaTeX formatting to selected text (e.g., \textbf{})</li>
<li> Added a new toolbar button to cancel typesetting (you may need to customize your toolbar and add it).</li>
<li> Added a corresponding menu item under the Typeset menu to cancel typesetting.</li>
<li> Added a new preference on the Typesetting preferences pane which, when activated, causes the PDF to be synced to the current editor location after typesetting.</li>
<li> The labels list now includes \label commands with optional arguments (like \label[something]{label})</li>
<li> Fixed a bug which could stop the project from being saved after removing a file or folder from the project tree.</li>
<li> Fixed a bug which crept into 2.0.1 which could cause problems in some cases when opening existing projects.</li>
<li> Fixed a bug which could cause TeXnicle to crash sometimes when closing documents.</li>
<li> Many other small bug fixes and optimisations.</li>
</ul>
</p>
]]></description>
<pubDate>27th January 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.2.zip"
sparkle:shortVersionString="2.0.2"
sparkle:version="57"
length="16972672"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFE7wiDyFJWpMRim7gIxCWCbbWcCCAhRTgpv0Tt8FHouL69NCIw8mC+WgiA=="
/>
</item>
<!-- Version 2.0.1 -->
<item>
<title>Version 2.0.1 (build 56)</title>
<description><![CDATA[
<h2>TeXnicle 2.0.1</h2>
<p>
This version fixes a nasty performance bug related to the display of PDFs but which could affect the full app.
</p>
]]></description>
<pubDate>16th January 2013</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.1.zip"
sparkle:shortVersionString="2.0.1"
sparkle:version="56"
length="17967576"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFQCUGAidcq35V9fO5XBzrN2GoXndfgIUArJ4VgURQbkQqOZPr3P6LexpWAw="
/>
</item>
<!-- Version 2.0 -->
<item>
<title>Version 2.0 (build 55)</title>
<description><![CDATA[
<h2>TeXnicle 2.0</h2>
<p>
Finally, and just in time for the holidays, here is the final release of version 2.0 of TeXnicle. Work has already started on version 2.1, but there will be bug fix releases in the interim.
</p>
<ul>
<li>Added an xelatexmk engine.</li>
<li>The 'Open Console' engine setting is now ignored when in 'Live Update' mode.</li>
<li>Fixed a bug in the built-in symbol palette: the preview images for the lowercase and capital Xi had the same filename on disk.</li>
<li>Fixed various other bugs relating to stability.</li>
</ul>
]]></description>
<pubDate>20th December 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2.0.zip"
sparkle:shortVersionString="2.0"
sparkle:version="55"
length="17967377"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFHcmzj9HvzxrzytbKc6ddzNbDZYoAhQgG6nFIxNRq6FBLmrxuL9dIh2h8Q=="
/>
</item>
<!-- Version 2.0 RC1 -->
<item>
<title>Version 2.0 Release Candidate 1 (build 54)</title>
<description><![CDATA[
<h2>TeXnicle 2.0 Release Candidate 1</h2>
<ul>
<li>Improved paragraph selection and reformatting.</li>
<li>When building from template, the project file now gets the project name set by the user.</li>
<li>Tab will complete commands now, as well as enter.</li>
<li>Added UpTeX engine.</li>
<li>Various bug fixes.</li>
</ul>
]]></description>
<pubDate>18th November 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/2.0/TeXnicle.app.2rc1.zip"
sparkle:shortVersionString="2.0"
sparkle:version="54"
length="19070305"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFGsbkE7z0PHamFxe+9W8LN6/0n4xAhUAkiABicg02c6r/tdbHcN45xvvSj0="
/>
</item>
<!-- Version 2.0 beta 53 -->
<item>
<title>Version 2.0 (beta 53)</title>
<description><![CDATA[
<p>
A nasty bug got left in beta 52 due to some testing. Sorry about that.
</p>
]]></description>
<pubDate>17th September 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta53.zip"
sparkle:shortVersionString="2.0"
sparkle:version="53"
length="16593618"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFB2mPgypaIqur6nNcRjrGapmih0BAhRkTSCRYOuWrQH+SwSY0aLmvrUkqQ=="
/>
</item>
<!-- Version 2.0 beta 52 -->
<item>
<title>Version 2.0 (beta 52)</title>
<description><![CDATA[
<p>
Numerous small bug fixes and one minor new feature: you can now specify live update to happen some number of seconds since the last edit.
</p>
]]></description>
<pubDate>16th September 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta52.zip"
sparkle:shortVersionString="2.0"
sparkle:version="52"
length="16594383"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFEC2Wbmsl0UKq7zN1N1q4Dn2xk5OAhQiXqzStGy2XI0cqz7gLwo7Ajle9A=="
/>
</item>
<!-- Version 2.0 beta 51 -->
<item>
<title>Version 2.0 (beta 51)</title>
<description><![CDATA[
<p>
This is a bug fix release which fixes a few issues that appeared during the conversion to the new memory management system.
</p>
]]></description>
<pubDate>28th August 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta51.zip"
sparkle:shortVersionString="2.0"
sparkle:version="51"
length="15124551"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFEPQ6lHBxeFImcVG3SJ+dH/YAyP3AhRUK21Dnkk4Q6R8Nifi/uYJ26X6Fw=="
/>
</item>
<!-- Version 2.0 beta 50 -->
<item>
<title>Version 2.0 (beta 50)</title>
<description><![CDATA[
<p>
<b>This release drops support for 32-bit machines.</b>
As such it uses the new Objective-C memory management system (ARC) which
should provide significant stability improvement in the long run. This version
includes a number of bug fixes and improvements.
</p>
<p>
This is intended to be the last beta release of version 2.0.
</p>
<p>
This version is tested to work Mountain Lion.
<p>
]]></description>
<pubDate>12th August 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta50.zip"
sparkle:shortVersionString="2.0"
sparkle:version="50"
length="15120671"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFFJfoWq+j7QX+nFzfqAuBX/Kv0XeAhQs0qsc7LV+qNnehWryQEOl4VVSXw=="
/>
</item>
<!-- Version 2.0 beta 49 -->
<item>
<title>Version 2.0 (beta 49)</title>
<description><![CDATA[
<p>
<b>NOTE: If you are using TeXnicle on a 32-bit machine, please contact [email protected] and let us know.
The current intention is to drop support for 32-bit machines in the next release!</b>
</p>
<p>
This release contains various minor bug fixes and optimisations.
</p>
<p>
<u>Some changes of note</u>
<ul>
<li>The Spelling navigator no longer shows the possible corrections in the table. It turns out that gathering the possible corrections
for all misspelled words is <i>very</i> computationally expensive for any reasonable sized documents. The corrections are just presented
now on demand.</li>
<li>Added the ability to set your own colors for the document outline view.</li>
</ul>
<p>
]]></description>
<pubDate>28th July 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta49.zip"
sparkle:shortVersionString="2.0"
sparkle:version="49"
length="15479603"
type="application/octet-stream"
sparkle:dsaSignature="MC0CFE4P7XWlzyjJ3AE8mHB3MWB7q5SEAhUAkPDJ7zY1to4uQ7AjjWKMn0ivaaY="
/>
</item>
<!-- Version 2.0 beta 48 -->
<item>
<title>Version 2.0 (beta 48)</title>
<description><![CDATA[
<p>
This fixes a minor bugs and one big one associated with saving new stand-alone TeX files.
</p>
<p>
]]></description>
<pubDate>22nd July 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta48.zip"
sparkle:shortVersionString="2.0"
sparkle:version="48"
length="15466322"
type="application/octet-stream"
sparkle:dsaSignature="MCwCFAIje8U3nJCTHjfE1klHzD9uy1VaAhRHSDEGCLOuKHNz3rAHhrpFnpmyeQ=="
/>
</item>
<!-- Version 2.0 beta 47 -->
<item>
<title>Version 2.0 (beta 47)</title>
<description><![CDATA[
<p>
This will be the last beta release with feature changes. The plan is for one (or possibly two) more beta
release focussing on any reported bugs before releasing the final version of TeXnicle 2.0. Further change
requests will be looked at in the development of version 2.1.
</p>
<p>
A Significant amount of behind-the-scenes changes have taken place in this release, so it is recommended
that you have a good backup of any files (including TeXnicle's preferences file found under
~/Library/Preferences/com.bobsoft.TeXnicle.plist) before using this version. No problems are expected,
but you never know.
</p>
<h3>Focus Area: Spell Checking</h3>
<p>
TeXnicle has two new features associated with spell checking. The first is that the dictionary language
can be specified for individual documents or projects. This is done on the project/document settings tab.
</p>
<p>
The second is a project-wide spelling list which appears as a new navigation pane on projects. This
shows a list of project files and misspelled words within them.
</p>
<p>
You can correct words directly from the spelling pane using the "Correct" action button, or using the
context menu of the listed words. You can also jump to the misspelled word in the editor by double
clicking on the word in the list or by clicking the "Reveal" button.
</p>
<p>
Files are checked every 1s, but only if there have been changes since the last check. You can force a
full check of all files by clicking the "Force Check" button. The spell checking is only done for file
types which are listed in the "File Types" preference pane and which have Spell Check selected.
</p>
<p>
It is recommended to install CocoaASpell from http://cocoaspell.leuski.net/. This provides
system-wide dictionaries which are TeX aware. The following article is a useful
read: http://www.jkwchui.com/2010/03/spellchecking-latex-in-macosx/.
</p>
<p>
<h3>Other Changes</h3>
<ul>
<li>New spelling panel for projects (see release notes).</li>
<li>The spelling dictionary language can now be specified per project or document (see release notes).</li>
<li>It is now possible to control the depth of the outline that's shown in the outline view.</li>
<li>Added a preference to activate/deactivate restoring open tabs in projects.</li>
<li>Added a preference to control the interval between live updates.</li>
<li>Added two new menu items under view to show the integrated console and pdf viewer should they be collapsed.</li>
<li>Added 3 new syntax highlighting elements which 'markup' the text between < >, << >>, or <<< >>>. Useful for
marking text that needs to be edited later. These elements are off by default.</li>
<li>Project searching can now be restricted to case sensitive or whole word searches.</li>
<li>PDF viewer now displays the current page number and total page count.</li>
<li>Bug fix: added a workaround for the bug in 10.7.4 which stops PDFs being displayed properly.</li>
<li>Bug fix: project search results remain valid even after the content of the files changes.</li>
<li>Bug fix: selecting rearranged tabs could result in crashing.</li>
<li>Various bug fixes and optimisations, especially to the underlying project document management.</li>
</ul>
</p>
]]></description>
<pubDate>21st July 2012</pubDate>
<enclosure url="http://www.bobsoft-mac.de/resources/TeXnicle/Beta/TeXnicle.app.beta47.zip"
sparkle:shortVersionString="2.0"