diff --git a/CLAUDE.md b/CLAUDE.md index de0cfce..249e395 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -11,11 +11,12 @@ - See `./Makefile` for more examples. -# Workflow -- One feature at a time -- Create a git branch for each new feature -- After making changes, and before consider the feature is implemented +# MANDATORY WORKFLOW +1. Only one TODO.md feature at a time +2. Create a git branch for each new feature +3. After making any change - Allways pass all the tests and integration tests - Build the application for linux and web-server - Launch the apllication for web-server, with a timeout of 60s -- Dont merge the feature branch into master, the work will be reviewed by a human. +4. If any test or build or web-server launch fails, go to step 3 +5. Dont merge the feature branch into master, the work will be reviewed by a human. diff --git a/assets/formulas/formulas.d4rt b/assets/formulas/formulas.d4rt index e8e6c37..af27f3c 100644 --- a/assets/formulas/formulas.d4rt +++ b/assets/formulas/formulas.d4rt @@ -41,7 +41,7 @@ Newton's law of universal gravitation \(F = G\frac{m_1m_2}{r^2}\) Where: -- $G$: Gravitational constant ($6.674\times 10^{-11}\ \mathrm{N\cdot m^2/kg^2}$) +- $G$: Gravitational constant $6.674\times 10^{-11}\ \mathrm{N\cdot m^2/kg^2}$ - $m_1, m_2$: Masses of two objects - $r$: Distance between centers of masses diff --git a/lib/ai/formula_screen.dart b/lib/ai/formula_screen.dart index 7e6d4ec..33af51f 100644 --- a/lib/ai/formula_screen.dart +++ b/lib/ai/formula_screen.dart @@ -65,7 +65,7 @@ class _FormulaScreenState extends State { final Map _selectedValues = {}; // for string dropdowns String? _result; String? _selectedOutputUnit; - bool _isDescriptionExpanded = true; // Track description expansion state + bool _isDescriptionExpanded = false; // Track description expansion state @override void initState() {