summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-05-03Releasing version 1.11.0HEADv1.11.0mainAmjith Ramanujam
2024-05-03Update changelog to release 1.11.0Amjith Ramanujam
2024-05-03Merge pull request #178 from dbcli/random-stuffAmjith Ramanujam
Random stuff
2024-05-03Merge branch 'main' into random-stuffAmjith Ramanujam
2024-05-03Merge pull request #177 from dbcli/startup-commandsAmjith Ramanujam
Startup commands
2024-05-03Update changelogAmjith Ramanujam
2024-05-03Check if startup commands are a list.Amjith Ramanujam
2024-03-23Update changelog.Amjith Ramanujam
2024-03-23Print the sqlite version at startup.random-stuffAmjith Ramanujam
2024-03-23Drop Python 3.7 and add 3.11 and 3.12Amjith Ramanujam
2024-03-23Improve \d to show list of tables.Amjith Ramanujam
2024-03-23Releasing version 1.10.1v1.10.1Amjith Ramanujam
2024-03-23Prep for release.Amjith Ramanujam
2024-03-04Merge pull request #173 from dbcli/optional-configAmjith Ramanujam
Do not crash if ~/.config/litecli is not writeable.
2024-02-18Update changelog.Amjith Ramanujam
2024-02-18Do not crash if ~/.config/litecli is not writeable.Amjith Ramanujam
2023-11-19Releasing version 1.10.0v1.10.0Amjith Ramanujam
2023-11-19Prep for release.Amjith Ramanujam
2023-11-19Merge pull request #171 from mjpieters/exclude_autoindexesAmjith Ramanujam
Skip internal indexes in .schema output
2023-11-10Skip internal indexes in .schema outputMartijn Pieters
See the [schema table `sql` column documentation][schema]: > The `sqlite_schema.sql` is NULL for the internal indexes that are automatically > created by UNIQUE or PRIMARY KEY constraints. [schema]: https://www.sqlite.org/schematab.html#interpretation_of_the_schema_table Fixes #170
2023-10-03Merge pull request #168 from mjpieters/fix_onceAmjith Ramanujam
Open once_file once per use
2023-10-03Merge branch 'main' into fix_onceAmjith Ramanujam
2023-10-03Merge pull request #166 from mjpieters/keyboard_interruptAmjith Ramanujam
Use sqlite3 API to cancel running queries
2023-10-03Open once_file once per useMartijn Pieters
It was being re-opened for every single line of output, which prevented `.once -o ...` from working, plus this is a lot more efficient for long result sets.
2023-10-03Use sqlite3 API to cancel running queriesMartijn Pieters
Since the interrupt handler was the only code that referenced `sqlexecute.connection_id`, and the connection ids is merely a random UUID without any meaning, the code generating that UUID can be removed as well.
2023-10-03Merge pull request #167 from mjpieters/blackenAmjith Ramanujam
Apply black
2023-10-03Apply blackMartijn Pieters
This is necessary to pass the CI lint tests on all PRs.
2023-09-27Merge pull request #165 from liamhennebury/liamhennebury/right-arrow-completionAmjith Ramanujam
Add key binding to accept completion with the right-arrow key
2023-09-27Add key binding to accept completion with the right-arrow keyLiam Hennebury
2023-08-25Merge pull request #162 from Kevin-Prichard/show_describe_in_helpAmjith Ramanujam
Fix: 'describe' command doesn't appear in 'help'
2023-08-25- litecli/packages/special/dbcommands.py- describe(): the 'describe' command ↵Kevin-Prichard
does not appear when user requests 'help'. This happens because the command string 'describe' also appears in describe()'s aliases , which causes show_help() to skip it altogether (because aliases are added to COMMANDS with 'hidden=True', and this overwrites the original 'describe' entry.) Fix is to remove 'describe' from describe()'s aliases.
2023-05-11Merge pull request #160 from bjornasm/running-commands-on-startupAmjith Ramanujam
Fixing startupcommands and successful perpetually set as True
2023-05-11Updated changelogbjornasm
2023-05-11Added simple tests and refactored sqlitedotcommandbjornasm
2023-05-11Update liteclircBjørnar Brende Smestad
Corrected the startupcommands section in tests/liteclirc
2023-05-11Bugfix + cosmeticbjornasm
2023-05-10Refactored the code and updated test/liteclircbjornasm
2023-05-09Merge pull request #151 from lgtm-migrator/codeqlAmjith Ramanujam
Add CodeQL workflow for GitHub code scanning
2023-05-04Minimal implementation of startup commandsbjornasm
2023-05-03Added changes done in changelog.bjornasm
2023-05-03Fixed missing implementation of successfulbjornasm
2023-05-03Merge pull request #159 from bjornasm/patch-1Amjith Ramanujam
Update CONTRIBUTING.md
2023-05-03Update CONTRIBUTING.mdBjørnar Brende Smestad
Found another master, substituted with main.
2023-05-03Update CONTRIBUTING.mdBjørnar Brende Smestad
Changed git pull upstream master to git pull upstream main to reflect changes to github naming.
2022-11-10Add CodeQL workflow for GitHub code scanningLGTM Migrator
2022-07-10Merge pull request #147 from mjpieters/fix-once-repeat-useAmjith Ramanujam
Make it possible to use .once more than once
2022-07-10Make it possible to use .once more than onceMartijn Pieters
When .once has been used, reset `written_to_once_file` as otherwise `once_file` is cleared after every subsequent command, including additional `.once` commands.
2022-07-04Merge pull request #145 from timgates42/bugfix_typosAmjith Ramanujam
docs: Fix a few typos
2022-07-03docs: Fix a few typosTim Gates
There are small typos in: - litecli/completion_refresher.py Fixes: - Should read `populate` rather than `popoulate`. - Should read `naturally` rather than `natually`.
2022-06-21Merge pull request #143 from kianmeng/fix-typosAmjith Ramanujam
Fix typos