Skip to content

Commit 954bfea

Browse files
committed
chore: some cleaning in ui classes
1 parent b4e97e6 commit 954bfea

2 files changed

Lines changed: 21 additions & 8 deletions

File tree

kicad/Rev 2.0/layout_board/layout_board.kicad_pro

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,19 @@
7474
"copper_edge_clearance": "error",
7575
"copper_sliver": "warning",
7676
"courtyards_overlap": "error",
77+
"creepage": "error",
7778
"diff_pair_gap_out_of_range": "error",
7879
"diff_pair_uncoupled_length_too_long": "error",
7980
"drill_out_of_range": "error",
8081
"duplicate_footprints": "warning",
8182
"extra_footprint": "warning",
8283
"footprint": "error",
84+
"footprint_filters_mismatch": "ignore",
8385
"footprint_symbol_mismatch": "warning",
8486
"footprint_type_mismatch": "ignore",
8587
"hole_clearance": "error",
8688
"hole_near_hole": "error",
89+
"hole_to_hole": "error",
8790
"holes_co_located": "warning",
8891
"invalid_outline": "error",
8992
"isolated_copper": "warning",
@@ -94,9 +97,11 @@
9497
"lib_footprint_mismatch": "warning",
9598
"malformed_courtyard": "error",
9699
"microvia_drill_out_of_range": "error",
100+
"mirrored_text_on_front_layer": "warning",
97101
"missing_courtyard": "ignore",
98102
"missing_footprint": "warning",
99103
"net_conflict": "warning",
104+
"nonmirrored_text_on_back_layer": "warning",
100105
"npth_inside_courtyard": "ignore",
101106
"padstack": "warning",
102107
"pth_inside_courtyard": "ignore",
@@ -108,10 +113,13 @@
108113
"solder_mask_bridge": "error",
109114
"starved_thermal": "error",
110115
"text_height": "warning",
116+
"text_on_edge_cuts": "error",
111117
"text_thickness": "warning",
112118
"through_hole_pad_without_hole": "error",
113119
"too_many_vias": "error",
120+
"track_angle": "error",
114121
"track_dangling": "warning",
122+
"track_segment_length": "error",
115123
"track_width": "error",
116124
"tracks_crossing": "error",
117125
"unconnected_items": "error",
@@ -124,6 +132,7 @@
124132
"min_clearance": 0.127,
125133
"min_connection": 0.0,
126134
"min_copper_edge_clearance": 0.0,
135+
"min_groove_width": 0.0,
127136
"min_hole_clearance": 0.3,
128137
"min_hole_to_hole": 0.2,
129138
"min_microvia_diameter": 0.2,
@@ -141,10 +150,11 @@
141150
},
142151
"teardrop_options": [
143152
{
144-
"td_onpadsmd": true,
153+
"td_onpthpad": true,
145154
"td_onroundshapesonly": false,
155+
"td_onsmdpad": true,
146156
"td_ontrackend": false,
147-
"td_onviapad": true
157+
"td_onvia": true
148158
}
149159
],
150160
"teardrop_parameters": [
@@ -238,6 +248,7 @@
238248
"mfg": "",
239249
"mpn": ""
240250
},
251+
"layer_pairs": [],
241252
"layer_presets": [],
242253
"viewports": []
243254
},
@@ -462,7 +473,7 @@
462473
},
463474
"meta": {
464475
"filename": "layout_board.kicad_pro",
465-
"version": 1
476+
"version": 3
466477
},
467478
"net_settings": {
468479
"classes": [
@@ -477,6 +488,7 @@
477488
"microvia_drill": 0.1,
478489
"name": "Default",
479490
"pcb_color": "rgba(0, 0, 0, 0.000)",
491+
"priority": 2147483647,
480492
"schematic_color": "rgba(0, 0, 0, 0.000)",
481493
"track_width": 0.3,
482494
"via_diameter": 0.7,
@@ -494,6 +506,7 @@
494506
"microvia_drill": 0.1,
495507
"name": "Analog Power",
496508
"pcb_color": "rgba(0, 0, 0, 0.000)",
509+
"priority": 0,
497510
"schematic_color": "rgb(194, 0, 0)",
498511
"track_width": 0.5,
499512
"via_diameter": 0.8,
@@ -511,6 +524,7 @@
511524
"microvia_drill": 0.1,
512525
"name": "Analog Signal",
513526
"pcb_color": "rgba(0, 0, 0, 0.000)",
527+
"priority": 1,
514528
"schematic_color": "rgb(0, 194, 194)",
515529
"track_width": 0.3,
516530
"via_diameter": 0.7,
@@ -528,6 +542,7 @@
528542
"microvia_drill": 0.1,
529543
"name": "Signal",
530544
"pcb_color": "rgba(0, 0, 0, 0.000)",
545+
"priority": 2,
531546
"schematic_color": "rgb(0, 194, 0)",
532547
"track_width": 0.3,
533548
"via_diameter": 0.7,
@@ -536,7 +551,7 @@
536551
}
537552
],
538553
"meta": {
539-
"version": 3
554+
"version": 4
540555
},
541556
"net_colors": null,
542557
"netclass_assignments": null,

web-app/app/routes/layout.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ export default function Index() {
99
<header className="w-full px-6 py-4 flex flex-row items-center justify-between">
1010
<Link
1111
to={paths.home}
12-
className="text-xl font-light text-gray-400 transition hover:text-gray-100 active:opacity-80"
12+
className="text-xl font-light text-gray-400 transition hover:text-gray-200 active:opacity-80"
1313
>
1414
<span className="font-bold text-gray-200">Macrolev</span>
15-
<small className="ml-2 self-end text-sm font-extrabold text-pink-50-200">
16-
v{version}
17-
</small>
15+
<small className="ml-2 self-end text-sm font-extrabold">v{version}</small>
1816
</Link>
1917

2018
<div className="flex flex-row items-center gap-6">

0 commit comments

Comments
 (0)