diff --git a/content/SUMMARY.md b/content/SUMMARY.md index 56874aa..2d2466d 100644 --- a/content/SUMMARY.md +++ b/content/SUMMARY.md @@ -2,6 +2,19 @@ [Stavros' notes](welcome/stavros-notes.md) - [🛸 Drone stuff](drone-stuff/index.md) + - [A simple guide to PID control](drone-stuff/a-simple-guide-to-pid-control.md) + - [E6000 hinges](drone-stuff/e6000-hinges.md) + - [Fixing the Matek ELRS receivers](drone-stuff/fixing-the-matek-elrs-receivers.md) + - [FPV frequency chart](drone-stuff/fpv-frequency-chart.md) + - [Getting uninverted SBUS on a no-name FrSky-compatible receiver](drone-stuff/getting-uninverted-sbus-on-a-no-name-frsky-compatible-receiver.md) + - [Getting uninverted SBUS/SmartPort on the FrSky XSR receiver](drone-stuff/getting-uninverted-sbus-smartport-on-the-frsky-xsr-receiver.md) + - [INAV tuning tips](drone-stuff/inav-tuning-tips.md) + - [Miscellaneous](drone-stuff/miscellaneous.md) + - [Omnibus F4 pro servo diode](drone-stuff/omnibus-f4-pro-servo-diode.md) + - [Omnibus F4 V3 pinout](drone-stuff/omnibus-f4-v3-pinout.md) + - [QGroundControl to Mission Planner conversion script](drone-stuff/qgroundcontrol-to-mission-planner-conversion-script.md) + - [Transmitter external module pinout](drone-stuff/transmitter-external-module-pinout.md) + - [Transportable C1 Chaser](drone-stuff/transportable-c1-chaser.md) - [🛩ī¸ ArduPilot](ardupilot/index.md) - [ArduPilot recommended settings](ardupilot/ardupilot-recommended-settings.md) - [ArduPilot setup checklist](ardupilot/ardupilot-setup-checklist.md) @@ -22,19 +35,6 @@ - [🏗ī¸ Model build notes](model-build-notes/index.md) - [Build notes for the FT Mighty Mini Arrow](model-build-notes/build-notes-for-the-ft-mighty-mini-arrow.md) - [Mini Drak build condensed instructions](model-build-notes/mini-drak-build-condensed-instructions.md) - - [A simple guide to PID control](drone-stuff/a-simple-guide-to-pid-control.md) - - [E6000 hinges](drone-stuff/e6000-hinges.md) - - [Fixing the Matek ELRS receivers](drone-stuff/fixing-the-matek-elrs-receivers.md) - - [FPV frequency chart](drone-stuff/fpv-frequency-chart.md) - - [Getting uninverted SBUS on a no-name FrSky-compatible receiver](drone-stuff/getting-uninverted-sbus-on-a-no-name-frsky-compatible-receiver.md) - - [Getting uninverted SBUS/SmartPort on the FrSky XSR receiver](drone-stuff/getting-uninverted-sbus-smartport-on-the-frsky-xsr-receiver.md) - - [INAV tuning tips](drone-stuff/inav-tuning-tips.md) - - [Miscellaneous](drone-stuff/miscellaneous.md) - - [Omnibus F4 pro servo diode](drone-stuff/omnibus-f4-pro-servo-diode.md) - - [Omnibus F4 V3 pinout](drone-stuff/omnibus-f4-v3-pinout.md) - - [QGroundControl to Mission Planner conversion script](drone-stuff/qgroundcontrol-to-mission-planner-conversion-script.md) - - [Transmitter external module pinout](drone-stuff/transmitter-external-module-pinout.md) - - [Transportable C1 Chaser](drone-stuff/transportable-c1-chaser.md) - [📁 Maker things](maker-things/index.md) - [Battery discharge curves](maker-things/battery-discharge-curves.md) - [Electronics tips](maker-things/electronics-tips.md) diff --git a/joplinexport b/joplinexport index c7ffec3..98d6d34 100755 --- a/joplinexport +++ b/joplinexport @@ -58,8 +58,8 @@ class Folder: def __lt__(self, other: Union["Folder", "Note"]) -> bool: """Support comparison, for sorting.""" if isinstance(other, Note): - # Folders always come before notes. - return True + # Folders always come after notes. + return False return self.title.lower() < other.title.lower() def __repr__(self) -> str: