Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clearer explanation about .cheat file paths #864

Merged
merged 40 commits into from
Dec 10, 2023
Merged

Commits on Dec 3, 2023

  1. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    6ab04ce View commit details
    Browse the repository at this point in the history
  2. Update README.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    2ae23b8 View commit details
    Browse the repository at this point in the history
  3. Update README.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    eb5c126 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    ec1eb7e View commit details
    Browse the repository at this point in the history
  5. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    e011114 View commit details
    Browse the repository at this point in the history
  6. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    df16803 View commit details
    Browse the repository at this point in the history
  7. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    96ff6fe View commit details
    Browse the repository at this point in the history
  8. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    6689cfd View commit details
    Browse the repository at this point in the history
  9. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    dbd0774 View commit details
    Browse the repository at this point in the history
  10. Update cheatsheet_syntax.md

    tapyu authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    0f41e07 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. Configuration menu
    Copy the full SHA
    7accaa4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    18c549b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2af6571 View commit details
    Browse the repository at this point in the history
  4. Update cheatsheet_syntax.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    924ffb8 View commit details
    Browse the repository at this point in the history
  5. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    fdc5603 View commit details
    Browse the repository at this point in the history
  6. Update cheatsheet_syntax.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    ef1521f View commit details
    Browse the repository at this point in the history
  7. Update cheatsheet_syntax.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    4e1aada View commit details
    Browse the repository at this point in the history
  8. Delete docs/aliases.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    3b7f5b9 View commit details
    Browse the repository at this point in the history
  9. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    ddf6e9c View commit details
    Browse the repository at this point in the history
  10. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    6118a85 View commit details
    Browse the repository at this point in the history
  11. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    1180e8c View commit details
    Browse the repository at this point in the history
  12. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    6f16237 View commit details
    Browse the repository at this point in the history
  13. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    1119164 View commit details
    Browse the repository at this point in the history
  14. Update navi_config.md

    tapyu authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    eb9ad7c View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. introduce use env_logger

    related to #576
    
    For the following config
    
    cheats:
      paths:
        - C:\\Users\\Administrator\\AppData\\Roaming\\navi\\cheat
        - C:\\Users\\Administrator\\AppData\\Roaming\\navi\\cheat
    
    navi now gets incorrect paths on Windows, since the seperator `:` for
    path join is a valid component.
    
    [2023-05-12T08:58:26Z DEBUG navi::commands::core] Filesystem(
            Some(
                "C:\\\\Users\\\\Administrator\\\\AppData\\\\Roaming\\\\navi\\\\cheat:C:\\\\Users\\\\Administrator\\\\AppData\\\\Roaming\\\\navi\\\\cheat",
            ),
        )
    [2023-05-12T08:58:28Z DEBUG navi::filesystem] filesystem::Fetcher = Fetcher {
            path: Some(
                "C:\\\\Users\\\\Administrator\\\\AppData\\\\Roaming\\\\navi\\\\cheat:C:\\\\Users\\\\Administrator\\\\AppData\\\\Roaming\\\\navi\\\\cheat",
            ),
            files: RefCell {
                value: [],
            },
        }
    zjp-CN authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    196872b View commit details
    Browse the repository at this point in the history
  2. rm env_logger; use tracing instead

    zjp-CN authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    e2c4b2b View commit details
    Browse the repository at this point in the history
  3. mv navi.log under config dir; debug folders on Windows

    2023-05-12T15:51:54.280707Z DEBUG navi::filesystem: read cheat files in `"C"`: []
    2023-05-12T15:51:54.281083Z DEBUG navi::filesystem: read cheat files in `"\\Users\\Administrator\\AppData\\Roaming\\navi\\cheats"`: []
    zjp-CN authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    4d077ba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    13318c4 View commit details
    Browse the repository at this point in the history
  5. eprintln init_logger failure (may need redir if it's flushed away)

    and add a description on logging
    zjp-CN authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    2026b70 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6822f1d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2933740 View commit details
    Browse the repository at this point in the history
  8. config_file_example: shell command should be cmd.exe on Windows

    and add shell command debug in logging
    zjp-CN authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    2f175e6 View commit details
    Browse the repository at this point in the history
  9. debug log

    zjp-CN authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    6a0accf View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    aeb9cd4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    422d37f View commit details
    Browse the repository at this point in the history
  12. doc: typo

    tjex authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    cac329e View commit details
    Browse the repository at this point in the history
  13. docs: clarity

    tjex authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    449141a View commit details
    Browse the repository at this point in the history
  14. docs: extra clarity

    tjex authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    be8326d View commit details
    Browse the repository at this point in the history
  15. doc: file rename

    tjex authored and denisidoro committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    00d5e9d View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    74ce5ad View commit details
    Browse the repository at this point in the history