You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22-2
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,25 @@
6
6
7
7
### Fixed
8
8
9
+
## [0.9.3-alpha.5] - 2024-01-14
10
+
11
+
### Added
12
+
13
+
* Improve MiKTeX package source files extraction
14
+
* Add optidev environments as math environments, by @leandrolerena
15
+
* Improve autocompletion performance after starting IDE
16
+
* Improve plugin loading performance
17
+
18
+
### Fixed
19
+
20
+
* Improve user feedback for equation preview when Inkscape is not installed
21
+
* Fix incorrectly inserted \items in enumeration environments, by @jojo2357
22
+
* Fix false positives for equation gathering inspection, by @jojo2357
23
+
* Don't attempt to use mthelp when it is not available, by @jojo2357
24
+
* Fix #3361: false positive on duplicate identifier on @string entries in bib files
25
+
* Replace code deprecated in 2023.3
26
+
* Avoid creating output directories recursively and improve the cleanup process
27
+
9
28
## [0.9.3-alpha.4] - 2024-01-12
10
29
11
30
### Added
@@ -284,9 +303,10 @@ Thanks to @jojo2357 and @MisterDeenis for contributing to this release!
284
303
* Fix some intention previews. ([#2796](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2796))
285
304
* Other small bug fixes and improvements. ([#2776](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2776), [#2774](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2774), [#2765](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2765)-[#2773](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2773))
File(root.path).list { _, name -> name.endsWith("tar.xz") }?.forEach { zipName ->
75
+
val zips =File(root.path).list { _, name -> name.endsWith("tar.xz") } ?:returnfalse
76
+
for ((index, zipName) in zips.withIndex()) {
77
+
indicator.fraction = index.toDouble() / zips.size
67
78
txArchiver.sourceFile =File(root.path, zipName)
68
79
// Note that by keeping the target path the same for everything, some packages will install in source/latex and some in source/latex/latex depending on how they were zipped
69
80
val destination =File(root.path, "latex")
@@ -97,4 +108,6 @@ class LatexIndexableSetContributor : IndexableSetContributor() {
0 commit comments