The car types are organized in the file
Types.json in your directory C:\Users\.....\AppData\Local\AcTools Content Manager\Data (User)\Car Categories
The file should look like this in an editor:
/* Icons are in WPF format, you can get icons here:
http://modernuiicons.com/. Or just draw them using
Microsoft Expression Design 4. As an alternative, you can simply use PNG-icons, just place them next
to JSON-file and put their names here. */
[
{
"name": "Classic",
"filter": "tag:#vintage | tag:vintage | year<1980",
"icon":...........
New car types can simply added by making a new group and link a suitable icon. Finding a good icon can be real challenge. The icon must be copied in the same directory. My new SUV-type-filter looks like this:
{
"name": "SUV",
"filter": "tag:#suv | tag:suv ",
"icon": "suv.png",
},
I hope, this will help you.