| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add util function: free_pointer_array | verdant | 2026-07-28 | 2 | -0/+18 | |
| | | | | | | This function iterates through each element of pointer array, frees its memory, and finally free the array itself. | |||||
| * | Modify .clang-format | verdant | 2026-07-28 | 1 | -2/+11 | |
| | | ||||||
| * | Add format target to Makefile | verdant | 2026-07-28 | 1 | -1/+4 | |
| | | ||||||
| * | Fix function argument order and reformat | verdant | 2026-07-28 | 2 | -59/+64 | |
| | | ||||||
| * | Use global need_redraw variable in main loop | verdant | 2026-07-28 | 1 | -3/+2 | |
| | | ||||||
| * | Add analyze target to Makefile | verdant | 2026-07-28 | 1 | -2/+5 | |
| | | ||||||
| * | Implement open with editor | verdant | 2026-07-28 | 3 | -0/+81 | |
| | | | | | | Fork a child process to run the text editor. If the "EDITOR" envrionment variable is not set, fallback to "vi". | |||||
| * | Remove varaible "need_redraw" in fm_info, use global variable | verdant | 2026-07-28 | 3 | -6/+6 | |
| | | ||||||
| * | Fix pane height | verdant | 2026-07-27 | 1 | -1/+1 | |
| | | ||||||
| * | Fix -Wformat-truncation warning and refactor redraw logic | verdant | 2026-07-27 | 1 | -28/+35 | |
| | | ||||||
| * | Remove unused variable | verdant | 2026-07-27 | 1 | -1/+0 | |
| | | ||||||
| * | Delete stat module | verdant | 2026-07-27 | 3 | -306/+0 | |
| | | ||||||
| * | Remove unused header file including | verdant | 2026-07-27 | 3 | -3/+0 | |
| | | ||||||
| * | Fix path normalization in path_normalize() | verdant | 2026-07-27 | 1 | -2/+10 | |
| | | ||||||
| * | Fix -Wmissing-prototypes warnings | verdant | 2026-07-27 | 2 | -0/+4 | |
| | | ||||||
| * | Move two util functions to the bottom | verdant | 2026-07-27 | 1 | -17/+17 | |
| | | ||||||
| * | Remove unused function: fm_print | verdant | 2026-07-27 | 1 | -13/+0 | |
| | | ||||||
| * | Remove unused header files | verdant | 2026-07-27 | 2 | -2/+0 | |
| | | ||||||
| * | Fix -Wstrict-prototypes warnings | verdant | 2026-07-27 | 1 | -3/+3 | |
| | | ||||||
| * | Fix -Wstrict-prototypes warning | verdant | 2026-07-27 | 2 | -2/+2 | |
| | | ||||||
| * | Remove unused files | verdant | 2026-07-27 | 2 | -15/+0 | |
| | | ||||||
| * | Implement directory preview | verdant | 2026-07-27 | 2 | -1/+16 | |
| | | ||||||
| * | Add optional CFLAGS and test subcommand | verdant | 2026-07-27 | 1 | -8/+18 | |
| | | ||||||
| * | Implement xdirname, xbasename | verdant | 2026-07-27 | 2 | -0/+88 | |
| | | ||||||
| * | Add display structure improvements | verdant | 2026-07-27 | 2 | -5/+30 | |
| | | ||||||
| * | Implement xrealloc | verdant | 2026-07-27 | 2 | -1/+12 | |
| | | ||||||
| * | Refactor main.c | verdant | 2026-07-27 | 1 | -59/+31 | |
| | | ||||||
| * | Reformat log.c log.h | verdant | 2026-07-27 | 2 | -35/+39 | |
| | | ||||||
| * | Remove unused argument | verdant | 2026-07-27 | 2 | -5/+19 | |
| | | ||||||
| * | Refactor fm | verdant | 2026-07-27 | 2 | -178/+269 | |
| | | ||||||
| * | Fix use-after-free of pointer "buf" | verdant | 2026-07-25 | 1 | -2/+1 | |
| | | ||||||
| * | Fix format string vulnerability in file preview | verdant | 2026-07-25 | 1 | -1/+1 | |
| | | ||||||
| * | Free the memory of buf to avoid leaking | verdant | 2026-07-25 | 1 | -1/+3 | |
| | | ||||||
| * | Free memory before returning | verdant | 2026-07-25 | 1 | -0/+1 | |
| | | ||||||
| * | Remove unused code | verdant | 2026-07-25 | 1 | -1/+0 | |
| | | ||||||
| * | Free memory before returning | verdant | 2026-07-25 | 1 | -0/+2 | |
| | | ||||||
| * | Reformat log.h | verdant | 2026-07-24 | 1 | -4/+4 | |
| | | ||||||
| * | fm: implement directory listing with scrolling and file preview | verdant | 2026-07-23 | 2 | -3/+214 | |
| | | ||||||
| * | Add scroll state and redraw tracking to fm_info | verdant | 2026-07-23 | 2 | -2/+16 | |
| | | ||||||
| * | Remove unnecessary wborder call | verdant | 2026-07-23 | 1 | -1/+0 | |
| | | ||||||
| * | Fix window positioning and height calculation | verdant | 2026-07-23 | 1 | -2/+2 | |
| | | ||||||
| * | Remove a blank line | verdant | 2026-07-23 | 1 | -1/+0 | |
| | | ||||||
| * | Remove redundant debug logging and commented code | verdant | 2026-07-23 | 1 | -3/+0 | |
| | | ||||||
| * | Add path normalization | verdant | 2026-07-23 | 1 | -0/+13 | |
| | | | | | | | Add a path_normalize() helper function to remove trailing slashes from directory paths, preventing potential issues with duplicate slashes in file operations. | |||||
| * | Add version option support | verdant | 2026-07-23 | 1 | -0/+4 | |
| | | ||||||
| * | Fix a typo | verdant | 2026-07-23 | 1 | -1/+1 | |
| | | | | | handing -> handling | |||||
| * | Remove resize handling | verdant | 2026-07-23 | 1 | -9/+0 | |
| | | ||||||
| * | Redraw when scrolling | verdant | 2026-07-23 | 1 | -2/+11 | |
| | | ||||||
| * | Update README | verdant | 2026-07-23 | 1 | -0/+13 | |
| | | ||||||
| * | Move keypad() to ncurses_init() | verdant | 2026-07-23 | 2 | -2/+1 | |
| | | ||||||
