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

Revamp of the FSBrowser and SDWebServer examples #7182

Merged
merged 138 commits into from
Apr 29, 2020
Merged

Revamp of the FSBrowser and SDWebServer examples #7182

merged 138 commits into from
Apr 29, 2020

Commits on Oct 21, 2017

  1. Configuration menu
    Copy the full SHA
    3d65027 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2020

  1. Configuration menu
    Copy the full SHA
    8370794 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    211929c View commit details
    Browse the repository at this point in the history
  3. SD was replaced by SDFS, and sketch now works on either SDFS, SPIFFS or

    LittleFS based on a #define logic (required adding a second param to open() and
    replacing 'FILE_WRITE' by "w") + Added size information to file list and a /status request handler to return filesystem status
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    a1ed3ba View commit details
    Browse the repository at this point in the history
  4. Tree panel width is now proportional to window. Changed icons (lighte…

    …r and
    
    more neutral), including one for files. Show size of files. Fill
    "filename" box upon clicking on a file. Sort files alphabetically.
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    3c42a8d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    82d50b4 View commit details
    Browse the repository at this point in the history
  6. Return the filesystem time in the status object

    + Massive cleanup/merge/align with some code from the FSBrowser example
    and misc refactorings
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    4e04514 View commit details
    Browse the repository at this point in the history
  7. Fixed folder handling

    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    6aad505 View commit details
    Browse the repository at this point in the history
  8. Replaced the FILESYSTEM #define by a filesystem variable, and introdu…

    …ced FSConfig to prevent FS formating.
    
    Fixed recursive deletion.
    Got rid of specific isDir() for SPIFFS.
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    26b772d View commit details
    Browse the repository at this point in the history
  9. Made 8.3 lowercase filenames formating optional (disabled by default).

    Refresh only part of the tree when possible.
    Selecting a file for upload defaults to the same folder as the last
    clicked file.
    Removed the Mkdir button on SPIFFS.
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    c1947d4 View commit details
    Browse the repository at this point in the history
  10. Added 'wait' cursor during asynchronous operations.

    Slight refactoring of XMLHttpRequest completion handling
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    83e3c49 View commit details
    Browse the repository at this point in the history
  11. Removed limitation "files must have an extension, folders may not".

    Case insensivity of the extension for the editor and preview.
    vdeconinck committed Mar 14, 2020
    Configuration menu
    Copy the full SHA
    5217201 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    40310da View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2020

  1. Support Filenames without extension, Dirnames with extension.

    Added Save/Discard/Help buttons to Editor, discard confirmation on leave, and refresh tree/status upon save.
    Removed redundant Ctrl-Z + Ctrl-Shift-Z shortcut declarations.
    Small bug fixes.
    + some refactoring
    vdeconinck committed Mar 15, 2020
    Configuration menu
    Copy the full SHA
    df49379 View commit details
    Browse the repository at this point in the history
  2. Fixed tree refresh on delete in all cases by returning the remaining …

    …path as response to the delete request.
    
    Refactoring
    vdeconinck committed Mar 15, 2020
    Configuration menu
    Copy the full SHA
    637cb4d View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2020

  1. Changed FS status in text by a percentage graph, with numbers as tool…

    …tip.
    
    Unsupported files on SPIFFS (files at root not sarting with "/", files with double "/", files ending with "/") are now detected and reported in the page.
    vdeconinck committed Mar 18, 2020
    Configuration menu
    Copy the full SHA
    36e28cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    99cf471 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2020

  1. Small fix + refactoring

    vdeconinck committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    f76dfaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f0b87ef View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2020

  1. Implemented Move/Rename.

    Added "loading" screen during async operations (dim with spinner and status).
    Fixed "discard" feature that kept prompting even after an image was loaded.
    Improved refresh of parts of the tree, with recursive listing.
    Moved the "path" id attribute to the "li" elements for folders (was already the case for files).
    Refactoring and cleanup.
    vdeconinck committed Mar 29, 2020
    Configuration menu
    Copy the full SHA
    53126c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ad3b008 View commit details
    Browse the repository at this point in the history
  3. Fixed broken spinner

    vdeconinck committed Mar 29, 2020
    Configuration menu
    Copy the full SHA
    967d037 View commit details
    Browse the repository at this point in the history
  4. Cosmetic improvements.

    Removed non-functional Upload context menu.
    Fixed error in response to move requests.
    Added minified version.
    vdeconinck committed Mar 29, 2020
    Configuration menu
    Copy the full SHA
    e3529e9 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2020

  1. Added specific icons for text and image files.

    Fixed incompatibilities with SPIFFS.
    Fixed a race condition between deletion and reinsertion of nodes when multiple folders are refreshed.
    Fixed missing URL decoding for files with special chars (e.g. space char).
    Moved info from source code comment to a readme.md file.
    Added source PNG to git.
    Cleanup.
    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    3745906 View commit details
    Browse the repository at this point in the history
  2. Added favicon.ico.

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    2aabb70 View commit details
    Browse the repository at this point in the history
  3. Renaming project

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    83644bb View commit details
    Browse the repository at this point in the history
  4. Renamed project

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    73490be View commit details
    Browse the repository at this point in the history
  5. Renamed project

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    11635c5 View commit details
    Browse the repository at this point in the history
  6. Small changes

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    6354c9f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b32f6c7 View commit details
    Browse the repository at this point in the history
  8. Minor changes

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    94c5ad7 View commit details
    Browse the repository at this point in the history
  9. Define LittleFS by default.

    If both uncompressed and gz versions exist, use uncompressed version.
    Small fixes.
    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    99ba015 View commit details
    Browse the repository at this point in the history
  10. Define LittleFS by default.

    If both uncompressed and gz versions exist, use uncompressed version.
    Small fixes.
    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    6f48db4 View commit details
    Browse the repository at this point in the history
  11. Restyled version

    vdeconinck committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    30eeeb6 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2020

  1. Configuration menu
    Copy the full SHA
    f40f212 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3889b96 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    24cd70f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    441ae32 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cc61220 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6fcbdf2 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2020

  1. Configuration menu
    Copy the full SHA
    ab34ffc View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2020

  1. Configuration menu
    Copy the full SHA
    534081a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    440251e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b6ba07e View commit details
    Browse the repository at this point in the history
  4. Moved file

    vdeconinck committed Apr 6, 2020
    Configuration menu
    Copy the full SHA
    9a81b8b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bb8f250 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2020

  1. Configuration menu
    Copy the full SHA
    c953d96 View commit details
    Browse the repository at this point in the history
  2. SD was replaced by SDFS, and sketch now works on either SDFS, SPIFFS or

    LittleFS based on a #define logic (required adding a second param to open() and
    replacing 'FILE_WRITE' by "w") + Added size information to file list and a /status request handler to return filesystem status
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    6ca8da5 View commit details
    Browse the repository at this point in the history
  3. Tree panel width is now proportional to window. Changed icons (lighte…

    …r and
    
    more neutral), including one for files. Show size of files. Fill
    "filename" box upon clicking on a file. Sort files alphabetically.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    6d501ab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4ae345f View commit details
    Browse the repository at this point in the history
  5. Return the filesystem time in the status object

    + Massive cleanup/merge/align with some code from the FSBrowser example
    and misc refactorings
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    4fab7e7 View commit details
    Browse the repository at this point in the history
  6. Fixed folder handling

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    82904ff View commit details
    Browse the repository at this point in the history
  7. Replaced the FILESYSTEM #define by a filesystem variable, and introdu…

    …ced FSConfig to prevent FS formating.
    
    Fixed recursive deletion.
    Got rid of specific isDir() for SPIFFS.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    b68f5fd View commit details
    Browse the repository at this point in the history
  8. Made 8.3 lowercase filenames formating optional (disabled by default).

    Refresh only part of the tree when possible.
    Selecting a file for upload defaults to the same folder as the last
    clicked file.
    Removed the Mkdir button on SPIFFS.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    842b914 View commit details
    Browse the repository at this point in the history
  9. Added 'wait' cursor during asynchronous operations.

    Slight refactoring of XMLHttpRequest completion handling
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    5c0d0a7 View commit details
    Browse the repository at this point in the history
  10. Removed limitation "files must have an extension, folders may not".

    Case insensivity of the extension for the editor and preview.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    2864f35 View commit details
    Browse the repository at this point in the history
  11. Support Filenames without extension, Dirnames with extension.

    Added Save/Discard/Help buttons to Editor, discard confirmation on leave, and refresh tree/status upon save.
    Removed redundant Ctrl-Z + Ctrl-Shift-Z shortcut declarations.
    Small bug fixes.
    + some refactoring
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    992fa31 View commit details
    Browse the repository at this point in the history
  12. Fixed tree refresh on delete in all cases by returning the remaining …

    …path as response to the delete request.
    
    Refactoring
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    da09f36 View commit details
    Browse the repository at this point in the history
  13. Changed FS status in text by a percentage graph, with numbers as tool…

    …tip.
    
    Unsupported files on SPIFFS (files at root not sarting with "/", files with double "/", files ending with "/") are now detected and reported in the page.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    f0587c2 View commit details
    Browse the repository at this point in the history
  14. Small fix + refactoring

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    c6948fc View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    16acb24 View commit details
    Browse the repository at this point in the history
  16. Implemented Move/Rename.

    Added "loading" screen during async operations (dim with spinner and status).
    Fixed "discard" feature that kept prompting even after an image was loaded.
    Improved refresh of parts of the tree, with recursive listing.
    Moved the "path" id attribute to the "li" elements for folders (was already the case for files).
    Refactoring and cleanup.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    9bba9dd View commit details
    Browse the repository at this point in the history
  17. Fixed broken spinner

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    1fec42a View commit details
    Browse the repository at this point in the history
  18. Cosmetic improvements.

    Removed non-functional Upload context menu.
    Fixed error in response to move requests.
    Added minified version.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    7cc0eb2 View commit details
    Browse the repository at this point in the history
  19. Added specific icons for text and image files.

    Fixed incompatibilities with SPIFFS.
    Fixed a race condition between deletion and reinsertion of nodes when multiple folders are refreshed.
    Fixed missing URL decoding for files with special chars (e.g. space char).
    Moved info from source code comment to a readme.md file.
    Added source PNG to git.
    Cleanup.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    d709ae5 View commit details
    Browse the repository at this point in the history
  20. Added favicon.ico.

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    0b3ba4e View commit details
    Browse the repository at this point in the history
  21. Renaming project

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    f541b6d View commit details
    Browse the repository at this point in the history
  22. Renamed project

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    917dacd View commit details
    Browse the repository at this point in the history
  23. Renamed project

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    86dfa58 View commit details
    Browse the repository at this point in the history
  24. Small changes

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    86b54a4 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    1c5d10f View commit details
    Browse the repository at this point in the history
  26. Minor changes

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    170f3fb View commit details
    Browse the repository at this point in the history
  27. Define LittleFS by default.

    If both uncompressed and gz versions exist, use uncompressed version.
    Small fixes.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    ef26c49 View commit details
    Browse the repository at this point in the history
  28. Define LittleFS by default.

    If both uncompressed and gz versions exist, use uncompressed version.
    Small fixes.
    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    780db41 View commit details
    Browse the repository at this point in the history
  29. Restyled version

    vdeconinck committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    697f133 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    612b8ca View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    180705a View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    c4b7369 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    b993004 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    109ca0c View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    bc580c7 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    d6a8350 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    c3a33e6 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2020

  1. Configuration menu
    Copy the full SHA
    16b9329 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b0fa096 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    50f2a73 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2020

  1. Configuration menu
    Copy the full SHA
    ecfa7ba View commit details
    Browse the repository at this point in the history
  2. (reformated code)

    vdeconinck committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    88968df View commit details
    Browse the repository at this point in the history
  3. (comments)

    vdeconinck committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    1e04240 View commit details
    Browse the repository at this point in the history
  4. Preprocessed files

    vdeconinck committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    dd3fe6d View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2020

  1. Configuration menu
    Copy the full SHA
    54f8d79 View commit details
    Browse the repository at this point in the history
  2. Optionally embed index.htm in code.

    (+ documentation and preprocessing script)
    vdeconinck committed Apr 11, 2020
    Configuration menu
    Copy the full SHA
    5728526 View commit details
    Browse the repository at this point in the history
  3. (reformated)

    vdeconinck committed Apr 11, 2020
    Configuration menu
    Copy the full SHA
    0052336 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    616297f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fccbfff View commit details
    Browse the repository at this point in the history
  6. If editor cannot be loaded from the web, try a local version, or default

    to a text viewer if not present
    vdeconinck committed Apr 11, 2020
    Configuration menu
    Copy the full SHA
    d7e6d27 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ac1ff02 View commit details
    Browse the repository at this point in the history
  8. (removed a TODO item :-))

    vdeconinck committed Apr 11, 2020
    Configuration menu
    Copy the full SHA
    d2fe22e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    25d2600 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2020

  1. Configuration menu
    Copy the full SHA
    461a7f1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    30fe3ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cb98a52 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bc09207 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    941a7ec View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3fc2416 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2020

  1. Configuration menu
    Copy the full SHA
    3bdd5f0 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2020

  1. Configuration menu
    Copy the full SHA
    c5b66ff View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2020

  1. Configuration menu
    Copy the full SHA
    c5f99a3 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2020

  1. Configuration menu
    Copy the full SHA
    6b66a8f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    102908f View commit details
    Browse the repository at this point in the history
  3. Do not include gzipped version in the data folder by default. Leave i…

    …t in the extras folder and change readme accordingly (plus some reformatingi of the readme file)
    vdeconinck committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    c35b72e View commit details
    Browse the repository at this point in the history
  4. Gzipped index file not included in data/edit by default. It is now le…

    …ft in the extras folder.
    
    Readme file was updated accordingly (+ some reformating)
    vdeconinck committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    1b4499b View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2020

  1. Configuration menu
    Copy the full SHA
    52e5809 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cb8938f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    83fcdc9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fcfca4c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1115837 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    14463dc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cffeb76 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c8a2181 View commit details
    Browse the repository at this point in the history
  9. Misc improvements.

    vdeconinck committed Apr 26, 2020
    Configuration menu
    Copy the full SHA
    a740ec2 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d6eb21d View commit details
    Browse the repository at this point in the history
  11. Addressed a few comments.

    vdeconinck committed Apr 26, 2020
    Configuration menu
    Copy the full SHA
    cb7b0d1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c4b4ec0 View commit details
    Browse the repository at this point in the history
  13. (reformated)

    vdeconinck committed Apr 26, 2020
    Configuration menu
    Copy the full SHA
    6f6ed1d View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    998de01 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2020

  1. Configuration menu
    Copy the full SHA
    b8b7d85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5af55b View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2020

  1. Configuration menu
    Copy the full SHA
    2aabe70 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5c86ac0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    50ea735 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2020

  1. Configuration menu
    Copy the full SHA
    e53c634 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    065b366 View commit details
    Browse the repository at this point in the history
  3. (reformated)

    vdeconinck committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    cc32ac8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d6db83d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2384e90 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2a48168 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0348a17 View commit details
    Browse the repository at this point in the history