Skip to content

Commit

Permalink
Version 9.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Yu committed Nov 16, 2023
1 parent e3d0436 commit b397c5b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [9.15.0] - 2023-11-16

### Added
- (#3966) Add option to include filename in status bar.

### Fixed
- Update to PDF.js v4.0.189.
- (#4048) Gracefully fail `mkdirSync` during compile.
- (#4052) Viewer refresh checks all steps instead of the last one.
- (#4054) Custom editor follows `tab.editorGroup`.

## [9.14.1] - 2023-10-03

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "LaTeX Workshop",
"description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.",
"icon": "icons/icon.png",
"version": "9.14.1",
"version": "9.15.0",
"publisher": "James-Yu",
"license": "MIT",
"homepage": "https://github.com/James-Yu/LaTeX-Workshop",
Expand Down
2 changes: 1 addition & 1 deletion src/components/cleaner.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as vscode from 'vscode'
import * as path from 'path'
import * as fs from 'fs'
import glob from 'glob'
import { glob } from 'glob'
import * as cs from 'cross-spawn'
import * as lw from '../lw'
import { replaceArgumentPlaceholders } from '../utils/utils'
Expand Down
2 changes: 1 addition & 1 deletion test/suites/04_intellisense.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as vscode from 'vscode'
import * as fs from 'fs'
import * as path from 'path'
import * as assert from 'assert'
import glob from 'glob'
import { glob } from 'glob'
import * as lw from '../../src/lw'
import * as test from './utils'
import { EnvSnippetType, EnvType } from '../../src/providers/completer/environment'
Expand Down
2 changes: 1 addition & 1 deletion test/suites/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as path from 'path'
import Mocha from 'mocha'
import glob from 'glob'
import { glob } from 'glob'

export function run(): Promise<void> {
// Create the mocha test
Expand Down
2 changes: 1 addition & 1 deletion test/suites/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as vscode from 'vscode'
import * as path from 'path'
import * as fs from 'fs'
import * as glob from 'glob'
import { glob } from 'glob'
import * as os from 'os'
import {ok, strictEqual} from 'assert'
import * as lw from '../../src/lw'
Expand Down

0 comments on commit b397c5b

Please sign in to comment.