aboutsummaryrefslogtreecommitdiff
path: root/crates/cli/src/run.rs
Commit message (Collapse)AuthorAgeFilesLines
* run: add enunciate completion for verbs and pronounsMiquel Sabaté Solà2026-01-271-19/+57
| | | | Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* run: allow selection based on tagsMiquel Sabaté Solà2026-01-201-11/+56
| | | | Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* run: ask for alternatives as wellMiquel Sabaté Solà2026-01-191-4/+92
| | | | | | | | This commit also fixes the need to ask for a random gender when asking for adjectives. This is somewhat unrelated to the main subject, but untying this now was a bit too much of a hassle. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Add adjectives on the inflection practiceMiquel Sabaté Solà2026-01-151-84/+107
| | | | | | | For now we are limiting this only to be on the masculine gender, but this could be changed in the future. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Add a 'categories' parameter to 'select_words_except'Miquel Sabaté Solà2026-01-151-1/+5
| | | | | | | This way the -c/--category flag can also work together with the -i/--inflection one. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Ask for the inflection of nouns when practicingMiquel Sabaté Solà2026-01-151-18/+201
| | | | Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Simplify practice loop by removing exit codeMiquel Sabaté Solà2026-01-151-28/+16
| | | | | | | Since we no longer care that much about the exit code, we can simplify the main loop further, while also reordering how words are selected. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Touch the 'updated_at' column on exercise successMiquel Sabaté Solà2026-01-141-3/+7
| | | | | | | | | If the user runs into an exercise and is satisfied with the results, then touch the 'updated_at' column for that exercise. This is relevant because in practice exercises are selected by the lastly updated exercise. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* run: do not account errors in the exit codeMiquel Sabaté Solà2026-01-141-20/+23
| | | | | | | It's confusing with the error case, and it also gets in the way for endless mode. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* run: introduce --endless modeMiquel Sabaté Solà2026-01-141-24/+33
| | | | Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Print the exercise enunciate after giving an answerMiquel Sabaté Solà2026-01-141-0/+4
| | | | Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Migrate from usize to isize for integers in modelsMiquel Sabaté Solà2026-01-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | SQLite3, like many other DBs (e.g. PostgreSQL), assumes by default an i64::MAX value. Hence, while in the application we are talking mainly in unsigned terms (which is what makes sense here), this is not realistic to what ends up happening on the DB side. Up until now this just worked behind the scenes because rustqlite did the heavy lifting via default trait implementations of usize which handled this translation for us. This default implementation for usize was dropped in 0.38.0 (see [1]). Even if it can be enabled back via the "fallible_uint" feature, it's more fair to stick to isize, as it's not much of a problem on our side, and it's more transparent in regards to what happens in the end in the DB. Last but not least, this commit also upgrades rustqlite to the latest 0.38.0, with the rest of the dependency tree. [1] https://github.com/rusqlite/rusqlite/issues/1722) Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Fix style issues coming from recent mergeMiquel Sabaté Solà2026-01-131-2/+2
| | | | | | | | | I apparently merged the 'inflection' branch without checking the code style. This means that a lot of warnings are being raised by clippy and I'm unsure which commit did what. Since I'm lazy about this right now, let's bring all fixes in a single commit. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Add basic validation for verbs and pronounsMiquel Sabaté Solà2026-01-131-1/+1
| | | | Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
* Provide initial implementation for word inflectionMiquel Sabaté Solà2025-10-271-34/+3
| | | | | | | | | | Word inflection for nouns, adjectives has been added so it can be initially be used in commands like 'words show'. Word categories which have no inflections (e.g. adverbs, conjunctions, et al) are skipped. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Add the -f/--flag flag to the 'practice' commandMiquel Sabaté Solà2025-07-301-15/+45
| | | | Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Add exercises to the practice commandMiquel Sabaté Solà2025-07-291-11/+191
| | | | | | | | The '-e/--exercises' has also been introduced to instruct the 'practice' command to only go for exercises, and the '-k/--kind' flag allows the user to further filter which kind of exercise to practice. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Apply suggestions from clippyMiquel Sabaté Solà2025-07-251-6/+6
| | | | Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Add steps into wordsMiquel Sabaté Solà2025-06-131-2/+10
| | | | | | | | This is a way to make more granular the accounting of successful runs, so we don't give a word for done until we have run it successfully at least MAX_STEPS times in a row. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Implement the run commandMiquel Sabaté Solà2025-06-121-1/+141
| | | | | | | | This does not accept yet some flags that might be convenient for more advanced uses of it, nor it asks to inflect the word or stuff like that. For now it's as simple as "give me the meaning of...". Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Initial commitMiquel Sabaté Solà2025-06-031-0/+3
Basic commands have been added, but most of the features for this project are still work in progress. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>