listpick 0.1.16.12__tar.gz → 0.1.16.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of listpick might be problematic. Click here for more details.

Files changed (71) hide show
  1. listpick-0.1.16.14/.gitignore +35 -0
  2. listpick-0.1.16.14/CHANGELOG.md +299 -0
  3. {listpick-0.1.16.12/src/listpick.egg-info → listpick-0.1.16.14}/PKG-INFO +1 -1
  4. listpick-0.1.16.14/TODO.md +537 -0
  5. listpick-0.1.16.14/assets/aria2tui_graph_screenshot.png +0 -0
  6. listpick-0.1.16.14/assets/aria2tui_screenshot.png +0 -0
  7. listpick-0.1.16.14/assets/file_compare.png +0 -0
  8. listpick-0.1.16.14/assets/listpick_df_example.png +0 -0
  9. listpick-0.1.16.14/assets/lpfman.png +0 -0
  10. listpick-0.1.16.14/examples/data_generation/list_files.toml +23 -0
  11. listpick-0.1.16.14/examples/data_generation/list_files_empty.toml +22 -0
  12. listpick-0.1.16.14/examples/data_generation/video_duplicates.toml +50 -0
  13. listpick-0.1.16.14/examples/data_generation/video_mediainfo.toml +32 -0
  14. listpick-0.1.16.14/examples/input_files/polynomials.tsv +31 -0
  15. listpick-0.1.16.14/examples/input_guides/gnuplot_graph.md +13 -0
  16. listpick-0.1.16.14/examples/picker/auxiallary_files/2024-25_Premier_League.pkl +0 -0
  17. listpick-0.1.16.14/examples/picker/footer_string_example.py +30 -0
  18. listpick-0.1.16.14/examples/picker/picker_example.py +54 -0
  19. listpick-0.1.16.14/examples/picker/template.py +28 -0
  20. listpick-0.1.16.14/examples/picker/wikipedia_table.py +78 -0
  21. listpick-0.1.16.14/listpick.py +30 -0
  22. listpick-0.1.16.14/requirements.txt +13 -0
  23. {listpick-0.1.16.12 → listpick-0.1.16.14}/setup.py +1 -1
  24. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/listpick_app.py +24 -25
  25. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/input_field.py +0 -1
  26. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/keys.py +4 -1
  27. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/utils.py +6 -1
  28. {listpick-0.1.16.12 → listpick-0.1.16.14/src/listpick.egg-info}/PKG-INFO +1 -1
  29. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick.egg-info/SOURCES.txt +24 -1
  30. listpick-0.1.16.14/tests/kitty_control.sh +14 -0
  31. listpick-0.1.16.14/tests/sorting_dates.csv +8 -0
  32. {listpick-0.1.16.12 → listpick-0.1.16.14}/LICENSE.txt +0 -0
  33. {listpick-0.1.16.12 → listpick-0.1.16.14}/README.md +0 -0
  34. {listpick-0.1.16.12 → listpick-0.1.16.14}/setup.cfg +0 -0
  35. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/__init__.py +0 -0
  36. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/__main__.py +0 -0
  37. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/pane/__init__.py +0 -0
  38. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/pane/get_data.py +0 -0
  39. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/pane/left_pane_functions.py +0 -0
  40. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/pane/pane_functions.py +0 -0
  41. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/pane/pane_functions_1.py +0 -0
  42. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/pane/pane_utils.py +0 -0
  43. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/__init__.py +0 -0
  44. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/build_help.py +0 -0
  45. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/draw_screen.py +0 -0
  46. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/footer.py +0 -0
  47. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/help_screen.py +0 -0
  48. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/ui/picker_colours.py +0 -0
  49. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/__init__.py +0 -0
  50. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/clipboard_operations.py +0 -0
  51. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/config.py +0 -0
  52. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/dump.py +0 -0
  53. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/filtering.py +0 -0
  54. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/generate_data.py +0 -0
  55. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/generate_data_multiprocessing.py +0 -0
  56. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/generate_data_multithreaded.py +0 -0
  57. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/generate_data_utils.py +0 -0
  58. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/graphing.py +0 -0
  59. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/keycodes.py +0 -0
  60. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/options_selectors.py +0 -0
  61. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/paste_operations.py +0 -0
  62. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/picker_log.py +0 -0
  63. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/search_and_filter_utils.py +0 -0
  64. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/searching.py +0 -0
  65. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/sorting.py +0 -0
  66. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/table_to_list_of_lists.py +0 -0
  67. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick/utils/user_input.py +0 -0
  68. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick.egg-info/dependency_links.txt +0 -0
  69. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick.egg-info/entry_points.txt +0 -0
  70. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick.egg-info/requires.txt +0 -0
  71. {listpick-0.1.16.12 → listpick-0.1.16.14}/src/listpick.egg-info/top_level.txt +0 -0
@@ -0,0 +1,35 @@
1
+ aria2tui.toml
2
+ data_stuff.py
3
+ *.pyc
4
+ oldcode.py
5
+ .vscode
6
+ ./.vscode
7
+ tmp/
8
+ ./list_picker/tmp/
9
+ ./scripts
10
+
11
+ # Compile stuff
12
+ __pycache__/
13
+ src/listpick/__pycache__
14
+ src/listpick/utils/__pycache__/
15
+ src/listpick/ui/__pycache__/
16
+
17
+ # Distribution / packaging
18
+ .Python
19
+ build/
20
+ develop-eggs/
21
+ dist/
22
+ downloads/
23
+ eggs/
24
+ .eggs/
25
+ lib64/
26
+ parts/
27
+ sdist/
28
+ var/
29
+ wheels/
30
+ share/python-wheels/
31
+ *.egg-info/
32
+ .installed.cfg
33
+ *.egg
34
+ MANIFEST
35
+
@@ -0,0 +1,299 @@
1
+ # CHANGELOG.md
2
+ Note that the changes between 0.1.11.0 and 1.1.12.0 are listed under 0.1.11
3
+
4
+ ## [0.1.16.14] 2025-10-??
5
+ - Fixed settings not loading when Picker has no rows
6
+ - Fixed footer not displaying correctly when Picker has no rows.
7
+
8
+ ## [0.1.16.13] 2025-10-15
9
+ - Updated edit_menu_keys.
10
+
11
+ ## [0.1.16.12] 2025-10-14
12
+ - Feature added: Edit selected cells in nvim (key 'E')--only works for cells in editable columns.
13
+ - Feature added: toggle visible columns menu (accessible from settings (~)).
14
+ - Fixed bugs and improved experience in Picker with hidden columns:
15
+ - Fixed rare row alignment problems with hidden columns
16
+ - Fixed certain problems with displaying highlights when columns are hidden
17
+ - Fixed row widths readjusting twice (but visually noticable) when columns are hidden
18
+ - Ensured that when moving to next/prev column we only move skip over hidden columns
19
+ - Added alternate_selection_char which allows, e.g., ☒, to indicate the selection status rather than a coloured character.
20
+ - The picker state is now passed to the data generation function which allows a stop event to be created, and triggered to tell the worker thread to stop sending jobs to the other threads.
21
+ - We now track threads and jobs that are created when generating cell values:
22
+ - We clean up the threads when exiting a picker.
23
+ - Eventually we will create a
24
+
25
+
26
+ ## [0.1.16.11] 2025-10-03
27
+ - Added some missing docstrings for helper functions.
28
+ - Refactored cell selection and list-padding logic.
29
+ - Removed broad try/except blocks in display code, relying on stricter checks.
30
+ - Adjusted Picker keyboard mapping for `opts_input` to use `META_o`.
31
+ - Simplified get_selected_cells_by_row using `collections.defaultdict`.
32
+
33
+ ## [0.1.16.10] 2025-09-23
34
+ - Created separate header_separator with " |" as the default which shows borders between the column-headers.
35
+ - Created ensure_no_overscroll() method to ensure we do not scroll past the data-set when we move the cursor down, select different columns, resize the terminal, etc.
36
+ - Mostly needed for consistency as each of these actions had effectively implemented their own version.
37
+
38
+
39
+ ## [0.1.16.9] 2025-09-22
40
+ - Feature added: support for displaying a left pane.
41
+ - Adjust leftmost_char when we resize the terminal.
42
+ - Added option to settings to allow one to precisely set the leftmost_char from the settings--lmc=83
43
+
44
+ ## [0.1.16.4-6] 2025-09-09
45
+ - Ensured that the previous terminal settings are restored after exiting the picker.
46
+ - Fixed bug which caused crash when opening the input field.
47
+
48
+ ## [0.1.16.4] 2025-09-09
49
+ - Commands passed to generate_picker_data can now use multiple {} and each will be replaced by the filename
50
+ - E.g., `[[ -f {} ]] && du -h {}`
51
+ - Improved the handling of filenames when opening files and generating column-data for files.
52
+ - Hide header in notifications.
53
+
54
+ ## [0.1.16.2] 2025-09-07
55
+ - Fixed some f-strings with nested quotes.
56
+
57
+ ## [0.1.16.1] 2025-09-07
58
+ - Massive improvements to Picker data generation.
59
+ - Data generation is now multithreaded.
60
+ - ~5x quicker when getting information on video files
61
+ - Data generation is now done **asynchronously**.
62
+ - generate_picker_data sets the header and items of the Picker with only the Files column filled. The rest of the cells have "..." as a placeholder. Multiple threads are created and they generate data for each of the cells.
63
+ - The Picker can receive user interaction while the data loads.
64
+ - Implemented a task priority queue which the threads utilise to determine their next task.
65
+ - Cells that are in view are prioritised in the queue and are generated first.
66
+ - Created generate_picker_data_from_file() function and separated the generation-specific code into the original generate_picker_data() function.
67
+ - This allows one to utilise the new generation capabilities by simply passing a list of functions and filenames to the generate_picker_data() function--no toml file necessary.
68
+ - This has been implemented in lpfman to display file attributes.
69
+ - Bug fixes:
70
+ - Static footer string was not displayed in some cases.
71
+
72
+ ## [0.1.16.1] 2025-09-05
73
+ - Data generation is now multithreaded.
74
+
75
+ ## [0.1.15.20] 2025-08-31
76
+ - Fixed screen refresh function for default options selector.
77
+
78
+ ## [0.1.15.18] 2025-08-31
79
+ - Added a new colour theme--blue background, black title/footer, white header.
80
+
81
+ ## [0.1.15.14] 2025-08-31
82
+ - Added different colour for header background to the left/right of the header.
83
+
84
+ ## [0.1.15.12] 2025-08-30
85
+ - Added crosshair_cursor option which highlights the entries of the active row and column.
86
+ - splash_screen() now works with a list of strings as a message.
87
+
88
+ ## [0.1.15.11] 2025-08-30
89
+ - Added new quickscroll keys to scroll left/right by 25 chars.
90
+
91
+ ## [0.1.15.10] 2025-08-29
92
+ - Ensure that pane data is retrieved immediately when cycling through panes.
93
+
94
+ ## [0.1.15.9] 2025-08-29
95
+ - We can now have multiple right panes which can be cycled through by pressing ".
96
+
97
+ ## [0.1.15.8] 2025-08-28
98
+ - Fixed header column alignment problems which popped up with some datasets.
99
+
100
+ ## [0.1.15.6] 2025-08-27
101
+ - Fixed misaligned header with very long header values.
102
+
103
+ ## [0.1.15.4] 2025-08-27
104
+ - Fixed error with filtering when there are no rows (i.e., items=[[]])
105
+ - Fixed error with changing modes when there are no rows (i.e., items=[[]]).
106
+
107
+ Fixed errors caused by filtering when items=[[]]; this also fixed problems changing modes when items=[[]].
108
+ ## [0.1.15.3] 2025-08-27
109
+ - Added error checking when setting the cursor_pos_id in fetch_data.
110
+
111
+ ## [0.1.15.1] 2025-08-27
112
+ - Added key to toggle right pane.
113
+ - Improved appearance of help screen.
114
+
115
+ ## [0.1.15.0] 2025-08-27
116
+ - Feature added: support for dynamic data display in a right pane.
117
+ - Bugs fixed:
118
+ - Fixed ipython not working when data is piped into the picker.
119
+
120
+ ## [0.1.14.0] - [0.1.14.14] 2025-08-24
121
+ - Added info screen to display all information on the running Picker.
122
+ - Added keys for file_next and file_prev
123
+ - Added __sizeof__() function for the Picker class.
124
+ - Fixed rows resizing twice when opening/switching between some files.
125
+ - Added to settings: goto row, goto column
126
+ - NaN replaced with empty string when loading empty cells from xlsx or ods files.
127
+ - Added Picker.get_config(path) method.
128
+ - Can now take input on stdin -- e.g., `du -h | listpick --stdin`
129
+ - We now get user input via '/dev/tty' rather than stdscr.getch() (which uses stdin).
130
+ - This was necessary to ensure that we can pipe data in via stdin and still receive user input.
131
+ - Bugs fixed:
132
+ - Closing files causes issues switching between files.
133
+ - Fixed crash when loading non-existent config file.
134
+ - Fixed highlighted cell not being aligned in the way that we expect.
135
+ - Fixed search query covering last row of data.
136
+ - Discovered missing keys from colour_theme 0 which caused menus not to be displayed.
137
+ - Setting colour_theme_number in the config now works.
138
+ - Create ~/.config/listpick directory for storing input history if it doesn't already exist.
139
+ - Added error checking when opening files.
140
+ - Added --headerless flag to prevent interpreting the first line of the input as the header.
141
+ - Fixed special keys not working:
142
+ - arrow keys (main picker, input_field)
143
+ - meta+key (input_field, main picker)
144
+ - Added column number to footer
145
+ - Improved splitting of whitespace separated data passed on stdin.
146
+ - Ensured that main picker elements resize if the terminal is resized when other dialogues are in focus: notifications, options, settings.
147
+ - Added method to check for terminal resize.
148
+ - Was necessary since we are no longer using getch from curses so we can't test whether getch() == curses.KEY_RESIZE.
149
+ - Added Alt+keys in build_help.
150
+
151
+ ## [0.1.14] 2025-08-20
152
+ - Fixed bug when cells are centred vertically.
153
+ - Added "level" keyword for highlight dictionary.
154
+ - l0: show highlight above base rows
155
+ - l1: show highlight above selected cells/rows
156
+ - l2: show highlight above cursor cell/row.
157
+ - Added separate selected_column argument (distinct from sort_column) so that columns can be navigated without sorting on the selected column. 's' has to be pressed on the selected_column to trigger sorting.
158
+ - Changed scrolling to start/end so that it selects the first/last column.
159
+ - Bug fixes:
160
+ - When data was centred vertically it would take an extra draw_screen loop to determine the proper column widths when the column sizes changed. This has been fixed.
161
+ - Refreshing sorted data would resort it on the selected column rather than the sort column. Fixed.
162
+ - Fixed error when padding uneven lists when a list of strings is passed instead of a list of lists.
163
+ - Fixed crash when showing certain notifications. The notification message was not being split into lines properly.
164
+ - Fixed wrong page number in the footer when paginate=True.
165
+ - Added some extra options to the settings:
166
+ - Toggle header
167
+ - Toggle row header
168
+ - Toggle modes
169
+ - Add/insert blank row
170
+ - Add/insert blank column
171
+ - Added splash screen to picker which can be displayed when loading a large data set, for example.
172
+ - Ensured that the curses colour pairs are redefined if we are loading from a picker save state.
173
+ - Added functions to insert an empty row/column at an an arbitrary position in the picker items.
174
+ - Adjusted the commandline arguments so that the filename can be passed without the -i flag.
175
+ - If no input file type is specified on the command line it will now guess based on the input file's extension.
176
+ - Improved display of cells/rows with various unicode characters. It is much better but there are still some problems with alignment and highlighting.
177
+ - Setup logging for the Picker class. Currently still very basic but will track to the last function that was run before crash if the --debug flag is passed to the picker.
178
+ - Added pin_cursor options which keeps the cursor on the same row during a refresh rather than tracking the id of the highlighted row.
179
+ - Updated StandardFooter. Now shows information on two lines rather than three; all cursor and selection information on the first line and the sort information on the second. Cursor, Visual (de)selection now abreviated to C, VS, and VDS.
180
+ - Added try-except wrapper to draw_screen function to prevent crashes during rapid resizing.
181
+ - Speed improvements:
182
+ - Create and track self.selected_cells_by_row when selections change rather than derive it from the self.cell_selections
183
+ - Much faster with very large data sets as we need to determine selected_cells_by_row every time we run self.draw_screen()
184
+ - We can now pipe data from cells in multiple columns to a command.
185
+ - e.g., pipe two cols to gnuplot
186
+ - Features added:
187
+ - Listpick now supports multiple open files.
188
+ - 'file_next' setting
189
+ - Listpick now supports files with multiple sheets.
190
+ - 'sheet_next' setting
191
+ - Fixed error when opening xlsx files.
192
+ - Can now open multiple files from the command line: listpick -i file1.csv, file2.csv
193
+
194
+ ## [0.1.13] 2025-07-28
195
+ - Cell-based picker is now supported.
196
+ - Cell-wise navigation.
197
+ - Cell-wise selection.
198
+ - Cell-wise copying.
199
+ - Cell-wise pasting.
200
+ - Pasting cells a picker is now supported
201
+ - Added footer_style class variable which can be given to select the footer style. Currently supports StandardFooter, CompactFooter, and NoFooter.
202
+ - Fixed bug which showed a distorted footer when the footer string was one char longer than the width of the terminal.
203
+ - Can now display a left-justified column indicating the row numbers (show_row_header)
204
+ - Selecting column to the left or right now scrolls the selected column into view.
205
+ - Input field autocompletion significantly improved.
206
+ - Now shows popup list showing the next autocomplete suggestions
207
+ - Supports auto-completing any words passed to the auto_complete_words argument of the input_field function
208
+ - Search and filter autocomplete any words in the items of the picker by default.
209
+ - Supports auto-complete functions %time and %date
210
+ - Supports auto-complete formulae.
211
+ - Will allow formulae filling at a later date.
212
+ - Can now edit input_field string in nvim by pressing ctrl+x
213
+ - Added functionality to add (empty) rows after the cursor and add (empty) columns after the cursor.
214
+
215
+ ## [0.1.12] 2025-07-25
216
+ - The Picker now supports different footer options. Three options have been added:
217
+ - StandardFooter
218
+ - CompactFooter
219
+ - NoFooter
220
+ - Added input field history for search and filter, pipe, settings, and opts.
221
+ - Fixed instacrash when a terminal doesn't have 8bit colour support.
222
+ - Created a fallback colour theme for terminals with < 256 colours available.
223
+ - Fixed bug when scrollbar doesn't show with several thousand entries. Ensured it is always at least 1 character high.
224
+ - Fixed colour configuration errors on some terminals by setting curses.use_default_colours().
225
+ - Added save and load history functions.
226
+ - Can now load full Picker from pickled save state.
227
+ - Fixed size of option-picker dialogue.
228
+ - Added the ability to add highlights from the settings input.
229
+ - hl,.*,3,8: highlight field 3
230
+ - Can now select theme with th# in settings; th still cycles as before.
231
+
232
+ ## [0.1.11] 2025-07-13
233
+ - Greatly improved the input_field
234
+ - Implemented path auto-completion with tab/shift+tab
235
+ - History can be passed to the input field
236
+ - Implemented a kill-ring
237
+ - Can paste into the input_field
238
+ - Implemented more readline keybinds:
239
+ - Alt+w: delete to word-separator character (' ' or '/')
240
+ - Alt+f: forwards one word
241
+ - Alt+b: backwards one word
242
+ - Ctrl+g: exit
243
+ - Ctrl+y: Yank from the top of the kill ring
244
+ - Alt+y: Yank from the kill ring. As is typical, this only works after a yank.
245
+ - Ctrl+n: Cycle forwards through history
246
+ - Ctrl+p: Cycle backwards through history
247
+ - Now accepts curses colour pair to set colours.
248
+ - Fixed bug where searching with a lot of matches causes slow down.
249
+ -
250
+
251
+ ## [0.1.10] 2025-07-04
252
+ - Help is now *built* (rather than simply displaying help text) using the active keys_dict and so only shows keys that function in the current Picker object.
253
+
254
+ ## [0.1.9] 2025-07-04
255
+ - Added asynchronous data refresh requests using threading.
256
+
257
+ ## [0.1.8] 2025-07-03
258
+ - Added left-right scrolling using h/l.
259
+ - Scroll to home/end with H/L.
260
+ - Fixed header columns not being aligned when len(header)>10.
261
+
262
+ ## [0.1.7] 2025-07-02
263
+ - Added row-wise highlighting.
264
+ - Added MIT license information.
265
+
266
+ ## [0.1.6] 2025-07-01
267
+ - Fixed footer_string not displaying immediately if passed with a refresh function.
268
+
269
+ ## [0.1.5] 2025-06-29
270
+ - Renamed list_picker listpick.
271
+ - Restructured project and added it to pypi so that it can be intalled with pip.
272
+ - Modified dependencies so that the dependencies required for loading/saving--pandas, csv, openpyxl, etc.--are only installed with `python -m pip install listpick[full]`."
273
+ - `python -m pip install listpick` will install all run-time dependencies outside of those used for saving data.
274
+
275
+ ## [0.1.4] 2025-06-27
276
+ - Added more themes: blue and purple.
277
+ - Added an a key dict which will work well with data passed in to be edited--e.g., settings.
278
+ - Column width is now determined by the width of the visible data rather than all data in the column.
279
+ - Notifications and options-picker can be exited with escape.
280
+
281
+ ## [0.1.3] 2025-06-19
282
+ - Fixed bug where list_picker crashed when rapidly resizing terminal or rapidly changing font-size.
283
+ - Fixed bug with filtering/searching where multiple tokens could not be specified for the same column.
284
+ - Visual improvements:
285
+ - Changed the footer colour to match the title bar in the main theme.
286
+ - Right aligned the elements in the footer
287
+ - Improved the appearance of the refresh indicator.
288
+ - Pickle files can now be loaded from the command line in addition to being able to be loaded wile running the Picker.
289
+
290
+ ## [0.1.2] 2025-06-18
291
+ - Added the ability to edit current instance of Picker in ipython when Ctrl+e is pressed.
292
+ - Quick-toggle footer with '_'.
293
+
294
+ ## [0.1.1] 2025-06-18
295
+ - Added a footer string function which can be auto refreshed with a given function.
296
+
297
+ ## [0.1.0] 2025-06-17
298
+ - CHANGELOG created
299
+ - Converted the underlying Picker from a function into a class.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: listpick
3
- Version: 0.1.16.12
3
+ Version: 0.1.16.14
4
4
  Summary: Listpick is a powerful TUI data tool for creating TUI apps or viewing/comparing tabulated data.
5
5
  Home-page: https://github.com/grimandgreedy/listpick
6
6
  Author: Grim