Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/changes/changes_4.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ In this release we added the option `-h` / `--help` to the command line.

We also refactored the tests around the CLI starter to improve readability and maintainability and made getting the test coverage easier.

We added FXML to the list of supported file formats for the tag importer.

## Features

* #503: Added `-h` / `--help` to the command line.
2 changes: 1 addition & 1 deletion doc/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ recognized file types:
* Configuration files (`.cfg`, `.conf`, `.ini`)
* [Go](https://golang.org/) (`.go`)
* Groovy (`.groovy`)
* Java (`.java`)
* Java (`.java`, `.fxml`)
* JavaScript (`.js`, `.ejs`, `.cjs`, `.mjs`)
* Kotlin (`.kt`, `.kts`)
* Lua (`.lua`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class TagImporterFactory extends ImporterFactory
"go", // Go
"groovy", // Groovy
"json", "htm", "html", "xhtml", "yaml", "yml", // markup languages
"java", // Java
"fxml", "java", // Java
"clj", "kt", "kts", "scala", // JVM languages
"js", "mjs", "cjs", "ejs", // JavaScript
"ts", // TypeScript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ protected List<String> getSupportedFilenames()
{
return asList("file.java", "FILE.java", "file.md.java", "file.ads", "file.adb", "foo.bash", "foo.bar.bash",
"foo.bat", "foo.java", "foo.c", "foo.C", "foo.c++", "foo.c#", "foo.cc", "foo.cfg",
"foo.conf", "foo.cpp", "foo.cs", "foo.feature", "foo.groovy", "foo.h", "foo.H", "foo.hh", "foo.h++",
"foo.conf", "foo.cpp", "foo.cs", "foo.feature", "foo.fxml", "foo.go",
"foo.groovy", "foo.h", "foo.H", "foo.hh", "foo.h++",
"foo.htm", "foo.html", "foo.ini", "foo.js", "foo.kt", "foo.kts", "foo.mjs", "foo.cjs", "foo.ejs",
"foo.ts", "foo.json",
"foo.lua", "foo.m", "foo.mm", "foo.php", "foo.pl", "foo.pls", "foo.pm", "foo.proto", "foo.py",
Expand Down
Loading