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

[TASK-1059] Handle submission groups in Access Log UI #5115

Commits on Jul 15, 2024

  1. Configuration menu
    Copy the full SHA
    f80be70 View commit details
    Browse the repository at this point in the history
  2. Let each Node CI run finish independently

    …instead of canceling if another one failed
    p2edwards committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    cfce973 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Make tests run in Node >=17. Wow…

    Here's the error we were encountering when running mocha-chrome
    on Node >=17:
    
    ```
    Promise Rejection:  Error: connect ECONNREFUSED ::1:39193
        at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1606:16) {
      errno: -111,
      code: 'ECONNREFUSED',
      syscall: 'connect',
      address: '::1',
      port: 39193
    }
    ```
    
    Here's the patch that fixes this for us:
    
       // node_modules/mocha-chrome/lib/client.js
    -  const client = await CDP({ port: instance.port });
    +  const client = await CDP({ port: instance.port, host: '127.0.0.1' });
    
    An alternative patch that would also succeed:
    
       // node_modules/chrome-remote-interface/lib/defaults.js
    -  module.exports.HOST = 'localhost';
    +  module.exports.HOST = '127.0.0.1';
    
    Another option:
    
       // node_modules/chrome-remote-interface/lib/external-request.js
    -  const {address} = await util.promisify(dns.lookup)(options.host);
    +  const {address} = await util.promisify(dns.lookup)(
    +    options.host,
    +    {family:'IPv4'},
    +  );
    
    Thank you @nsainaney for writing this comment in nodejs/node#40702 [^1]:
    
    > It appears to be a breaking change with how DNS.lookup works. With
    > node 16, the lookup would return a IPv4 address but with node 17, it
    > returns an IPv6 address which will break most REST clients that
    > hardcode URLS like http://localhost:4040/api if the upstream server
    > only binds to the IPv4 address (e.g. server.listen('127.0.0.1'…) etc…
    
    [^1]: nodejs/node#40702 (comment)
    
    Before committing to the 'patch' strategy, I checked to see if either
    mocha-chrome or chrome-remote-interface had been updated later with this
    workaround.
    
    - chrome-remote-interface accepts a parameter for host, so nope.
      Makes sense, since you can specify the host manually.
    - mocha-chrome doesn't parameterize host, and the author of mocha-chrome
      considers it an obsolete package and is no longer updating it.
    p2edwards committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    7c6dfec View commit details
    Browse the repository at this point in the history
  2. Add comments to npm-test

    p2edwards committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    6975b22 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

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

Commits on Aug 2, 2024

  1. migrate Button to use only one type option instead of type+color pairs

    and update all the instances <3
    magicznyleszek committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    dde11de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2896b3b View commit details
    Browse the repository at this point in the history
  3. update button types

    magicznyleszek committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    bfaf051 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50f3ed4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4a70b71 View commit details
    Browse the repository at this point in the history
  6. improve Button's pending/disabled handling so that the focus and navi…

    …gation is more consistent/secure
    
    also adds some useful comments
    magicznyleszek committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    66cb008 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'beta' into task915-simplify-button-component

    # Conflicts:
    #	jsapp/js/projects/projectsTable/projectQuickActions.tsx
    #	jsapp/scss/libs/react-tagsinput.scss
    magicznyleszek committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    71a560b View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

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

Commits on Aug 6, 2024

  1. Fix bug on redeploy

    noliveleger committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    3e1d9d1 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'kobocat-django-app-part-2-remove-kobocat-rest-service' …

    …into kobocat-django-app-part-2-remove-service-account
    noliveleger committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    d40c334 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Merge branch 'update-colors' into task915-simplify-button-component

    # Conflicts:
    #	jsapp/js/account/security/email/emailSection.component.tsx
    #	jsapp/scss/libs/react-tagsinput.scss
    magicznyleszek committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    a15612c View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

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

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    f088b17 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d96fc4 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

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

Commits on Aug 20, 2024

  1. Merge pull request #5037 from kobotoolbox/kobocat-django-app-part-2-r…

    …emove-imports
    
    Code refactoring - Replace shadow models imports with their openrosa app counterparts
    jnm authored Aug 20, 2024
    Configuration menu
    Copy the full SHA
    3ee226a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    598aced View commit details
    Browse the repository at this point in the history
  3. Backport #5068

    noliveleger committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    bf67805 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. Configuration menu
    Copy the full SHA
    79546c3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5070 from kobotoolbox/backport-fix-suspiciouspath

    fix thumbnail resizing with FileSystemStorage
    noliveleger authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    88ba330 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c50ce44 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5068 from kobotoolbox/fix-digest-concurrency

    Fix 500 error when submitting data after changing the password
    noliveleger authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    34e5fcd View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5069 from kobotoolbox/backport-5068-partial-diges…

    …t-uniqueness
    
    (backport) Fix 500 error when submitting data after changing the password
    noliveleger authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    77336c0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e553474 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Configuration menu
    Copy the full SHA
    72d5b81 View commit details
    Browse the repository at this point in the history
  2. Apply requested changes

    noliveleger committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    32bbcc5 View commit details
    Browse the repository at this point in the history
  3. Fix bad refactoring

    noliveleger committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    b36a130 View commit details
    Browse the repository at this point in the history
  4. Fix sync_kobocat_xforms

    noliveleger committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    0f7f8b7 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5074 from kobotoolbox/qa-reponses-missing-bug

    Fix bug causing transcriptions/translations and qualitative analysis responses to not be displayed in the Data table
    jamesrkiger authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    aab7bb1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    735817d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    425d624 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    821686f View commit details
    Browse the repository at this point in the history
  9. Add TODO comment

    noliveleger committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    f5e1f92 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #5038 from kobotoolbox/kobocat-django-app-part-2-o…

    …penrosa-backend
    
    Code refactoring: Create new deployment backend class
    jnm authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    26e21fd View commit details
    Browse the repository at this point in the history
  11. Merge pull request #5042 from kobotoolbox/kobocat-django-app-part-2-r…

    …emove-kobocat-backend
    
    Code refactoring - Remove shadow models and KobocatDeploymentBackend class
    jnm authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    ada05fa View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Merge branch 'kobocat-django-app-part-2' into kobocat-django-app-part…

    …-2-remove-kobocat-rest-service
    noliveleger committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    1a8da58 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7697d68 View commit details
    Browse the repository at this point in the history
  3. Remove unused import

    noliveleger committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    3698143 View commit details
    Browse the repository at this point in the history
  4. Fix unit tests

    noliveleger committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    a056a74 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    25f8558 View commit details
    Browse the repository at this point in the history
  6. Bump various github-provided actions to v4

    Main effect: Changes the default Node 20 and adds some new optional
    options.
    
    We specify Node version anyway.
    p2edwards committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    c543376 View commit details
    Browse the repository at this point in the history
  7. improve comment

    p2edwards committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    fcc3a3e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    56e5f47 View commit details
    Browse the repository at this point in the history
  9. Run latest, unpinned versions of Node in CI, too

    Use resolved version in the package cache instead of matrix specifier
    p2edwards committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    375e092 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5da699c View commit details
    Browse the repository at this point in the history
  11. Merge pull request #5041 from kobotoolbox/kobocat-django-app-part-2-r…

    …emove-kobocat-rest-service
    
    Code refactoring: Remove RestService
    jnm authored Aug 23, 2024
    Configuration menu
    Copy the full SHA
    944d24f View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. Bump actions/checkout and setup-python in pytest

    Response to this warning:
    
    > The following actions uses node12 which is deprecated and will be forced
    to run on node16: actions/checkout@v2, actions/setup-python@v2. For more
    info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
    p2edwards committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    f587a1e View commit details
    Browse the repository at this point in the history
  2. Merge branch 'beta' into task915-simplify-button-component

    # Conflicts:
    #	jsapp/js/components/common/button.scss
    magicznyleszek committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    7e2aad3 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    78eb204 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aee0df0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4281fa2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a9662a8 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5085 from kobotoolbox/fix-missing-constance-nlp-f…

    …ield
    
    Fix missing field in constance configuration
    Guitlle authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    f9d55ba View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

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

Commits on Aug 30, 2024

  1. Merge pull request #5012 from kobotoolbox/node-20-upgrade-CI-testing

    Use Node 20, and add it to CI
    jnm authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    d235ce1 View commit details
    Browse the repository at this point in the history
  2. Apply --no-install-recommends to OpenJDK install

    This appears to trim 144 MB from the Docker image size.
    Internal discussion: https://chat.kobotoolbox.org/#narrow/stream/4-Kobo-Dev/topic/OpenJDK.20KPI.20dependency
    jnm committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    09a942a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7d49107 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    35c46d3 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5088 from kobotoolbox/no-install-recommends-openjdk

    Apply `--no-install-recommends` to OpenJDK install
    JacquelineMorrissette authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    01443e1 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Configuration menu
    Copy the full SHA
    697f204 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8f30351 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Merge branch 'beta' into task915-simplify-button-component

    Anji Tong authored and Anji Tong committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    d3c38c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7a7ba6e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53ff257 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cc50e2e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5046 from kobotoolbox/task915-simplify-button-com…

    …ponent
    
    [TASK-915] Simplify button component (even more)
    magicznyleszek authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    98cf909 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Fix wrong attribute

    noliveleger committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    2dabaec View commit details
    Browse the repository at this point in the history
  2. Merge branch 'kobocat-django-app-part-2-refactor-mock-deployment-back…

    …end' into kobocat-django-app-part-2-handle-missing-xform
    noliveleger committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    57eb2b2 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'kobocat-django-app-part-2-handle-missing-xform' into ko…

    …bocat-django-app-part-2-better-error-handling
    noliveleger committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    b062996 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f6802ae View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    75cf23e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae91f5c View commit details
    Browse the repository at this point in the history
  3. Merge branch 'kobocat-django-app-part-2' into kobocat-django-app-part…

    …-2-remove-service-account
    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    b1d5000 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'kobocat-django-app-part-2-remove-service-account' into …

    …kobocat-django-app-part-2-refactor-mock-deployment-backend
    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    a27edc3 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'kobocat-django-app-part-2-refactor-mock-deployment-back…

    …end' into kobocat-django-app-part-2-handle-missing-xform
    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    74b82e2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0c7dde8 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'kobocat-django-app-part-2-handle-missing-xform' into ko…

    …bocat-django-app-part-2-better-error-handling
    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    0fb498b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    34b228b View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5100 from kobotoolbox/release-2.024.33-clone-asse…

    …t-bugfix
    
    Fix asset clone UI crash
    RuthShryock authored Sep 5, 2024
    Configuration menu
    Copy the full SHA
    985e974 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3ccf9c8 View commit details
    Browse the repository at this point in the history
  11. Fix tests

    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    d7bd068 View commit details
    Browse the repository at this point in the history
  12. Merge branch 'kobocat-django-app-part-2-refactor-mock-deployment-back…

    …end' into kobocat-django-app-part-2-handle-missing-xform
    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    89efcdf View commit details
    Browse the repository at this point in the history
  13. Merge branch 'kobocat-django-app-part-2-handle-missing-xform' into ko…

    …bocat-django-app-part-2-better-error-handling
    noliveleger committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    569efe7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    0d7131f View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Merge pull request #5096 from kobotoolbox/data-table-column-glitch

    Fix misalignment of columns in data table after paginating
    magicznyleszek authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    1d2070f View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Configuration menu
    Copy the full SHA
    559e691 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f22d64 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2024

  1. Configuration menu
    Copy the full SHA
    00fc88c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e10341 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fde9526 View commit details
    Browse the repository at this point in the history
  4. Remove import

    noliveleger committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    5b4173f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2f17199 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5105 from kobotoolbox/fix-bad-performance-with-fo…

    …rmdisclaimer
    
    Fix bad performance introduced in `2.024.25`
    noliveleger authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    fdc9ed2 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #5104 from kobotoolbox/task-1027-change-delete-pro…

    …ject-button-text
    
    [ TASK-1027 ] Conditional label for 'Delete Project and Data' button
    p2edwards authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    81ef0fd View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    603ade4 View commit details
    Browse the repository at this point in the history
  9. Fix migration conflicts

    noliveleger committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    91d1909 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    50e367b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b30a3e7 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f4529a3 View commit details
    Browse the repository at this point in the history
  13. Fix bad merge

    noliveleger committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    e0ab6f6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    147f53c View commit details
    Browse the repository at this point in the history
  15. Merge pull request #5107 from kobotoolbox/skip-temporarily-mock-attac…

    …hments-tests
    
    Skip temporarily some failing tests
    noliveleger authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    c9a38bd View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    bb4062a View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    56df467 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Create UniversalTable and PaginatedQueryUniversalTable components

    Also update few `angle-*` icons
    magicznyleszek committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    2c945a0 View commit details
    Browse the repository at this point in the history
  2. Add Access Log section to security route, add access log query and us…

    …e it together with UniversalTable
    magicznyleszek committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    a98ae4b View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Configuration menu
    Copy the full SHA
    a3bb916 View commit details
    Browse the repository at this point in the history
  2. simplify MFA section styles and HTML by removing BEM and making it us…

    …e the same consistent DRY CSS module as other security sections
    magicznyleszek committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    0c797d0 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. code review fixes

    magicznyleszek committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    6f62c3e View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    8040ec7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    195d65d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f2f6e46 View commit details
    Browse the repository at this point in the history