Skip to content

Commit

Permalink
Improve the support for music trackers
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Jun 29, 2024
1 parent 2cb20b1 commit e9851f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion guesscategory.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import (
const (
// Decides the order of the keyword/category checks
// (try to order from the more specific/specialized categories to the more general)
texttools = iota
tracker = iota
texttools
graphics2d
scanning
utility
Expand Down Expand Up @@ -46,6 +47,7 @@ const (

var (
keywordmap = map[int][]string{
tracker: {"sequencer"},
model3d: {"rendering", "modeling", "modelling", "modeler", "render", "raytracing", "CAD"},
multimedia: {"non-linear", "audio", "sound", "graphics", "demo", "music"},
graphics: {"draw", "pixelart", "animated"},
Expand All @@ -68,6 +70,7 @@ var (
system: {"sensor", "bus", "calibration", "usb", "file"},
}
categorymap = map[int]string{
tracker: "Application;Multimedia;Audio;Sequencer;Music",
model3d: "Application;Graphics;3DGraphics",
multimedia: "Application;Multimedia",
graphics: "Application;Graphics",
Expand Down

0 comments on commit e9851f3

Please sign in to comment.