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
3 changes: 2 additions & 1 deletion doc/changes/changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changes

+ [4.2.1](changes_4.2.1.md)
* [4.2.2](changes_4.2.2.md)
* [4.2.1](changes_4.2.1.md)
* [4.2.0](changes_4.2.0.md)
* [4.1.0](changes_4.1.0.md)
* [4.0.2](changes_4.0.2.md)
Expand Down
11 changes: 11 additions & 0 deletions doc/changes/changes_4.2.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# OpenFastTrace 4.2.2, released UNKNOWN

Code name: UNKNOWN

## Summary

TODO

## Bugfixes

* #471: Add tag importer support for SystemVerilog files
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public class TagImporterFactory extends ImporterFactory
"r", // R Language
"rs", // Rust
"sh", "bash", "zsh", // Shell programming
"sv", "v", "inc", // SystemVerilog
"swift", // Swift
"toml", // Tom's Obvious Minimal Language : a config file format
"tf", "tfvars", // Terraform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected List<String> getSupportedFilenames()
"foo.conf", "foo.cpp", "foo.cs", "foo.feature", "foo.groovy", "foo.h", "foo.H", "foo.hh", "foo.h++",
"foo.htm", "foo.html", "foo.ini", "foo.js", "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.py", "foo.sql", "foo.r",
"foo.rs", "foo.sh", "foo.yaml", "foo.yml", "foo.xhtml", "foo.zsh", "foo.clj", "foo.kt", "foo.scala",
"foo.rs", "foo.sh", "foo.sv", "foo.v", "foo.inc", "foo.yaml", "foo.yml", "foo.xhtml", "foo.zsh", "foo.clj", "foo.kt", "foo.scala",
"foo.pu", "foo.puml", "foo.plantuml", "foo.go", "foo.robot", "foo.tf", "foo.tfvars", "foo.toml");
}

Expand Down