File tree 5 files changed +6836
-3
lines changed
5 files changed +6836
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### 🚨 Breaking changes
6
6
7
+ - Update Computer Science graph for 2024
8
+
7
9
### ✨ New features/enhancements
8
10
9
11
- Added button to deselect courses in "FCE count" side panel
12
+ - Increase font size for hybrid nodes in graphs
10
13
11
14
### 🐛 Bug fixes
12
15
13
16
- Fixed bug that causes FCE count to increase when toggling course via sidebar
14
17
- Fixed bug that forced users to input a course codes in a specific way when generating a dependency graph
18
+ - Correctly handle ` 'l' ` directives in svg path attributes
15
19
16
20
### 🔧 Internal changes
17
21
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ import Text.Read (readMaybe)
39
39
40
40
parsePrebuiltSvgs :: IO ()
41
41
parsePrebuiltSvgs = runSqlite databasePath $ do
42
- performParse " Computer Science" " csc2023 .svg"
42
+ performParse " Computer Science" " csc2024 .svg"
43
43
performParse " Statistics" " sta2022.svg"
44
44
-- performParse "(unofficial) Mathematics Specialist" "math_specialist2022.svg"
45
45
-- performParse "(unofficial) Biochemistry" "bch2015.svg"
@@ -538,7 +538,7 @@ parsePathD = parseValWithState parser initialState
538
538
absoluteMove :: P. Parsec String PathDState ()
539
539
absoluteMove = (P. char ' L' <|> P. char ' M' ) >> setMode AbsoluteMove
540
540
relativeMove :: P. Parsec String PathDState ()
541
- relativeMove = P. char ' m ' >> setMode RelativeMove
541
+ relativeMove = ( P. char ' l ' <|> P. char ' m ' ) >> setMode RelativeMove
542
542
absHorizontalMove :: P. Parsec String PathDState ()
543
543
absHorizontalMove = P. char ' H' >> setMode AbsoluteHorizontal
544
544
absVerticalMove :: P. Parsec String PathDState ()
You can’t perform that action at this time.
0 commit comments