Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat: Added HTML and Javascript progress bar when uploading files | Alec Di Vito | 2024-06-06 | 1 | -0/+8 |
| | |||||
* | Improve documentation for the --header parameter (#1389) | orwithout | 2024-04-26 | 1 | -1/+6 |
| | | | | | | | | * Improve documentation for the --header parameter * Add Support for HSTS to Enhance HTTPS Security --------- Co-authored-by: orwithout <googoldecibel@gmail.com> | ||||
* | Merge pull request #1329 from dyc3/disable-indexing | Sven-Hendrik Haase | 2024-02-01 | 1 | -0/+7 |
|\ | | | | | add `--disable-indexing` cli flag to completely disable directory indexing | ||||
| * | tweak doc comment | Carson McManus | 2024-02-01 | 1 | -2/+2 |
| | | |||||
| * | add short version of `--disable-indexing` cli arg | Carson McManus | 2024-01-30 | 1 | -1/+2 |
| | | |||||
| * | add `--disable-indexing` cli flag to completely disable directory indexing | Carson McManus | 2024-01-29 | 1 | -0/+6 |
| | | |||||
* | | Refactor errors | cyqsimon | 2024-01-29 | 1 | -6/+26 |
|/ | | | | | - Split `ContexualError` into `StartError` & `RuntimeError` - Made sure every `RuntimeError` variant has an accurate status code | ||||
* | Reformat args help | Sven-Hendrik Haase | 2024-01-16 | 1 | -3/+5 |
| | |||||
* | Add option for compress response | zuisong | 2024-01-16 | 1 | -0/+12 |
| | |||||
* | Clean up default order function | Sven-Hendrik Haase | 2024-01-13 | 1 | -4/+5 |
| | | | | I removed the stringly typing as we already have enums for this that we can make use of. | ||||
* | Set default sorting order and method with arguments | elandsborough | 2024-01-13 | 1 | -0/+20 |
| | |||||
* | Better help for -u | Sven-Hendrik Haase | 2023-11-09 | 1 | -0/+5 |
| | |||||
* | Fix arg help formatting | Sven-Hendrik Haase | 2023-08-21 | 1 | -4/+9 |
| | |||||
* | Merge pull request #1179 from proudmuslim-dev/master | Sven-Hendrik Haase | 2023-08-21 | 1 | -1/+9 |
|\ | | | | | Add ability to read auth from file | ||||
| * | Add file content example to `--auth-file` argument | proudmuslim-dev | 2023-08-03 | 1 | -1/+5 |
| | | |||||
| * | Update src/args.rs | proudmuslim-dev | 2023-08-03 | 1 | -1/+1 |
| | | | | | | Co-authored-by: Sven-Hendrik Haase <svenstaro@gmail.com> | ||||
| * | Add ability to read auth from file | Proudmuslim | 2023-07-21 | 1 | -1/+5 |
| | | |||||
* | | Add pretty urls | Norberto Lopes | 2023-08-06 | 1 | -0/+8 |
|/ | | | | | | | | | | This adds a new flag namely `--pretty-urls` that when enabled will serve the equivalent `.html` if it exists. Very much the same approach that [`netlify` uses](https://docs.netlify.com/site-deploys/post-processing/). It can be quite useful when having hrefs like `/about` serve `/about.html`. | ||||
* | Allow parameters to be provided via env vars | Sven-Hendrik Haase | 2023-07-05 | 1 | -32/+78 |
| | | | | Fixes #829. | ||||
* | Fix lints | Sven-Hendrik Haase | 2022-12-19 | 1 | -4/+4 |
| | |||||
* | Fix clap 4 behavior when allowing duplicate args | Sven-Hendrik Haase | 2022-11-11 | 1 | -12/+3 |
| | |||||
* | Golf a use line | Sven-Hendrik Haase | 2022-10-14 | 1 | -2/+1 |
| | |||||
* | Fix clap deprecations | Sven-Hendrik Haase | 2022-10-14 | 1 | -36/+35 |
| | | | | Also update README | ||||
* | Upgrade clap to v4 | Sven-Hendrik Haase | 2022-10-12 | 1 | -33/+24 |
| | |||||
* | Tidy up some imports | Sven-Hendrik Haase | 2022-09-20 | 1 | -2/+3 |
| | |||||
* | Improved output of -h | Jonas Diemer | 2022-09-18 | 1 | -1/+1 |
| | |||||
* | cargo fmt | Jonas Diemer | 2022-09-18 | 1 | -1/+6 |
| | |||||
* | Use argument -u instead of --allowed-upload-dir | Jonas Diemer | 2022-09-18 | 1 | -11/+5 |
| | |||||
* | Renamed option for more clarity | Jonas Diemer | 2022-09-18 | 1 | -3/+5 |
| | |||||
* | Switched to use of PathBuf, fixed for subdirs | Jonas Diemer | 2022-09-18 | 1 | -3/+2 |
| | |||||
* | Added dependency to -u for --restrict-upload-dir | Jonas Diemer | 2022-09-18 | 1 | -1/+2 |
| | |||||
* | Added option restrict-upload-dir | Jonas Diemer | 2022-09-18 | 1 | -0/+4 |
| | |||||
* | Fix typos | Kian-Meng Ang | 2022-09-14 | 1 | -1/+1 |
| | | | | Found via `codespell -L crate`. | ||||
* | Correct Spelling | Gaurav | 2022-08-14 | 1 | -1/+1 |
| | |||||
* | Add `--readme` info and reformat | Gaurav | 2022-08-14 | 1 | -2/+2 |
| | |||||
* | Add `--readme` flag to cli | Gaurav | 2022-08-14 | 1 | -0/+4 |
| | |||||
* | Create directory (#781) | Sheepy | 2022-06-26 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ability to make directory Frontend for making directories Fix potential security vulnerability (CWE-23) Add tests Update README.md Disallow using parent directories altogether Fix formatting Fix clippy warnings Address review comments Update README.md Change `making` to `creation` Co-authored-by: Sven-Hendrik Haase <svenstaro@gmail.com> Have make directory flag require file upload flag Address review comments * Disallow uploading files and making directories through symlinks when disabled * Add test * Clippy formatting changes * Add test doc comment | ||||
* | Flip usage of theme selector showing functionality added in last commit | Sven-Hendrik Haase | 2022-05-23 | 1 | -4/+4 |
| | | | | This is so it doesn't break current configurations. Let's not surprise the users. | ||||
* | Add configuration `change-theme` (#805) | FLAMINGO | 2022-05-23 | 1 | -0/+4 |
| | | | Add configuration `change-theme`Add configuration `change-theme` | ||||
* | Fix security issue with --no-symlinks | Sven-Hendrik Haase | 2022-05-18 | 1 | -2/+2 |
| | | | | | Even with --no-symlinks specified, if a direct path to a symlink had been entered, it would be resolved. This fixes that behavior and improves tests to ensure this behavior. | ||||
* | Allow to set the accept input attribute to arbitrary values | Johannes May | 2022-03-12 | 1 | -0/+20 |
| | |||||
* | Add man page support using --print-manpage (fixes #730) | Sven-Hendrik Haase | 2022-02-20 | 1 | -0/+4 |
| | |||||
* | Merge 'jikstra/feat_route_prefix' #682 | Ali MJ Al-Nasrawy | 2022-02-06 | 1 | -1/+5 |
|\ | |||||
| * | Implement --route-prefix to set specific route prefix | jikstra | 2021-12-29 | 1 | -1/+5 |
| | | |||||
* | | Upgrade clap | Sven-Hendrik Haase | 2022-01-03 | 1 | -1/+1 |
|/ | |||||
* | Bump deps | Sven-Hendrik Haase | 2021-12-09 | 1 | -2/+2 |
| | |||||
* | Refactor SPA-mode to make it more ergonomic | Sven-Hendrik Haase | 2021-10-25 | 1 | -6/+6 |
| | |||||
* | Fix lint | Sven-Hendrik Haase | 2021-10-25 | 1 | -5/+1 |
| | |||||
* | Merge pull request #515 from sinking-point/sinkingpoint/add-spa-index-option-474 | Sven-Hendrik Haase | 2021-10-25 | 1 | -0/+8 |
|\ | | | | | Add --spa-index option | ||||
| * | Add --spa-index option | Billy Bradley | 2021-10-08 | 1 | -0/+8 |
| | |