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

[Redesign] Brand New Queuing System ✨ #484

Merged
merged 137 commits into from
Nov 21, 2023

Commits on May 18, 2023

  1. replaced AudioServiceHelper queue with QueueService for unshuffled al…

    …bums
    
    - Implemented new QueueService for handling most of the queueing logic
    - Connected QueueService to MusicPlayerBackgroundTask for accessing the just_audio and audio_service queues
    - Forwarded playback events from just_audio to QueueService to keep track of current item
    - added new PlaybackList class for storing queue items + list meta info
    - display PlaybackList info on player screen
    Chaphasilor committed May 18, 2023
    Configuration menu
    Copy the full SHA
    ef77863 View commit details
    Browse the repository at this point in the history
  2. proper queue implementation

    - Refactored `QueueService` with the proper state variables and functions
    - Linear & shuffled playback now working (for starting a new list, toggling doesn't work yet)
    - Adding to queue works
    - Manually skipping back and forth works
    - Skips initiated by the player also update the internal queues of the QueueService
    Chaphasilor committed May 18, 2023
    Configuration menu
    Copy the full SHA
    4be2568 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c51955b View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    1936f8d View commit details
    Browse the repository at this point in the history
  2. implemented 'loop all' for linear and shuffled mode

    - there's still a bug if the player skips to the next track by itself: if 'loop all' was enabled previously but then disabled, the player will still loop once
    - for more info see TODO at queue_service.dart:445
    Chaphasilor committed May 19, 2023
    Configuration menu
    Copy the full SHA
    b22fb96 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2023

  1. Configuration menu
    Copy the full SHA
    1f0afd0 View commit details
    Browse the repository at this point in the history
  2. 'loop all' working when skipping backwards

    - needed to replace the concatenating audio source, because the player's index cannot be modified externally
    - this results in backwards loops not being gapless, oh well...
    - also fixed skipping backwards when 'loop one' is enabled (resets current track and adds entry to history)
    Chaphasilor committed May 21, 2023
    Configuration menu
    Copy the full SHA
    a8d52ea View commit details
    Browse the repository at this point in the history
  3. simplify external queue updates

    - properly remove, prepend, and append AudioSources from/to the ConcatenatingAudioSource
    Chaphasilor committed May 21, 2023
    Configuration menu
    Copy the full SHA
    c80c778 View commit details
    Browse the repository at this point in the history
  4. working shuffle toggle

    Chaphasilor committed May 21, 2023
    Configuration menu
    Copy the full SHA
    b7eea9b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e1ec780 View commit details
    Browse the repository at this point in the history
  6. stream queue to queue list

    - convert Streams to BehaviorSubjects
    - show current track and queue (needs fixing)
    Chaphasilor committed May 21, 2023
    Configuration menu
    Copy the full SHA
    90b9d4d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    272e28b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    03f4f24 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. reimplement queue list bottom sheet with CustomScrollView

    - allows efficient and flexible combination of multiple lists and elements into a single scrolling view
    Chaphasilor committed May 22, 2023
    Configuration menu
    Copy the full SHA
    b7e8fdf View commit details
    Browse the repository at this point in the history
  2. working track selection in queue (skipByOffset)

    - can skip to track in both recent track and the regular queue by tapping on them
    Chaphasilor committed May 22, 2023
    Configuration menu
    Copy the full SHA
    731fb9e View commit details
    Browse the repository at this point in the history

Commits on May 24, 2023

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

    Chaphasilor committed May 24, 2023
    Configuration menu
    Copy the full SHA
    81c4f14 View commit details
    Browse the repository at this point in the history
  3. small improvements

    Chaphasilor committed May 24, 2023
    Configuration menu
    Copy the full SHA
    eddbc5e View commit details
    Browse the repository at this point in the history
  4. tried combining current track detection with proper skipping in queue

    - some inconsistencies still happen, but it mostly works
    Chaphasilor committed May 24, 2023
    Configuration menu
    Copy the full SHA
    43cb0e2 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Configuration menu
    Copy the full SHA
    6c8cdbb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    36aa49d View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. just_audio-based shuffling with Next Up support almost working

    - only thing missing is disabling shuffling and keeping the right index
    Chaphasilor committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    554cb43 View commit details
    Browse the repository at this point in the history
  2. fully working shuffle mode

    - fixed adjustedQueueIndex being using the track index instead of the array index
    - fixed adjustedQueueIndex being based on shuffledIndices when shuffle disabled
    Chaphasilor committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    f4d2a82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    32aac37 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    02daccb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    15b495e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    84b0ac2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0ebb4ae View commit details
    Browse the repository at this point in the history
  8. fix skipByOffset() when shuffle is enabled

    - allows skipping using the QueueList again
    Chaphasilor committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    fca95c7 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2023

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

Commits on Jun 7, 2023

  1. improved queue list

    - proper reordering support (between lists!)
    - current track is fixed
    - lists can't be dragged anymore
    - previous tracks collapsed by default
    Chaphasilor committed Jun 7, 2023
    Configuration menu
    Copy the full SHA
    33df18a View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2023

  1. working next up logic

    - add songs to next up (prepend and append)
    - reorder songs
    - show correct source
    Chaphasilor committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    c10ac61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1cf3c47 View commit details
    Browse the repository at this point in the history
  3. fix reordering issues

    Chaphasilor committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    a2ad87b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bc1b75b View commit details
    Browse the repository at this point in the history
  5. small fixes

    Chaphasilor committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    4248aae View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2023

  1. Configuration menu
    Copy the full SHA
    e8a017a View commit details
    Browse the repository at this point in the history
  2. added playback history (service)

    - added new screen showing the history (click a track starts an instant mix)
    - added new service class for managing history and playback reporting
    Chaphasilor committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    b59b21d View commit details
    Browse the repository at this point in the history
  3. re-add missing packages

    Chaphasilor committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    f93b234 View commit details
    Browse the repository at this point in the history
  4. improve next up + shuffle behavior

    - fixes adding tracks to next up if the current track isn't the first track in the queue
    - if the track was added to Next Up while shuffle was disabled, next up will stay in place when shuffle is toggled on and off
      - if shuffle was enabled while adding the track, toggling shuffle off will clear Next Up
    Chaphasilor committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    7774d66 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2023

  1. adding tracks to Next Up or queue fully working now

    - adding tracks to Next Up works when shuffled
    - adding tracks to (end of) queue working when shuffled
    - Next Up and end of queue stay in place when turning off shuffle
    - toggling shuffle doesn't affect Next Up but will shuffle end of queue (only when turning shuffle *on*)
    - adding to Next Up and end of queue also works when shuffle is disabled
    Chaphasilor committed Jun 11, 2023
    Configuration menu
    Copy the full SHA
    0154021 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2023

  1. Configuration menu
    Copy the full SHA
    cc4a44b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12e4c77 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. Configuration menu
    Copy the full SHA
    92ed02d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91ebd37 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2023

  1. Configuration menu
    Copy the full SHA
    2e02350 View commit details
    Browse the repository at this point in the history
  2. huge queue redesign progress

    - implemented separate widgets for different queues
    - reordering only possible within queues
    - updated design to be closer to the mockup
    Chaphasilor committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    d36eb6a View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Configuration menu
    Copy the full SHA
    0befb2c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7c33dd3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7903cff View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Configuration menu
    Copy the full SHA
    f3350ca View commit details
    Browse the repository at this point in the history
  2. improve scroll behavior

    Chaphasilor committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    53d862f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    84946ee View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    867d57d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b63a0fa View commit details
    Browse the repository at this point in the history
  6. some fixes

    Chaphasilor committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    a5ba1d0 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Configuration menu
    Copy the full SHA
    001cb95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f90d20 View commit details
    Browse the repository at this point in the history
  3. minor improvements

    Chaphasilor committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    44ec707 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e42f300 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    233739c View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Configuration menu
    Copy the full SHA
    36610e9 View commit details
    Browse the repository at this point in the history
  2. fix shuffle always starting on first index

    what is *wrong* with just_audio?! shuffling the playlist on load? 👀
    Chaphasilor committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    0947a14 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9d244e6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fa31e35 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. Configuration menu
    Copy the full SHA
    4e9e566 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    835e6f3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    77b4827 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2023

  1. navigate to queue source when tapping source string

    - doesn't work for all sources yet
    - artist/album mixes will navigate to the first artists/album
    Chaphasilor committed Sep 17, 2023
    Configuration menu
    Copy the full SHA
    1e08f1b View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. Configuration menu
    Copy the full SHA
    821606e View commit details
    Browse the repository at this point in the history
  2. shuffle next / to next up

    Chaphasilor committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    5b52754 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cc6a055 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. try to fix build errors

    Chaphasilor committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    6b72110 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e791df6 View commit details
    Browse the repository at this point in the history
  3. improved playback history screen

    - still needs a proper design and improved implementation
    Chaphasilor committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    04773fb View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. improved BaseItemDto favorite state handling

    - try to update the actual QueueItem wherever possible to be robust against rebuilds
    - added a callback to `FavouriteButton` to support updating e.g. the QueueItems in response to a toggle
    - the favorite buttons on the player screen and in the queue list are now synced
    Chaphasilor committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    6ef5f00 View commit details
    Browse the repository at this point in the history
  2. added localized strings

    Chaphasilor committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    3efde88 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Configuration menu
    Copy the full SHA
    c047239 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e9b4c6b View commit details
    Browse the repository at this point in the history
  3. smaller design tweaks to tie in the color theme

    - changes aren't limited to the queue list
    Chaphasilor committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    9db72f5 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

  1. Configuration menu
    Copy the full SHA
    0f39cf9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cfe5432 View commit details
    Browse the repository at this point in the history
  3. fixes & improvements ™

    - design tweaks
    - tried to limit flickering when changing queue
    - working with flutter 3.13.5, dart 3.1.2
    Chaphasilor committed Sep 24, 2023
    Configuration menu
    Copy the full SHA
    4a5693c View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2023

  1. formatting

    Chaphasilor committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    2ef5510 View commit details
    Browse the repository at this point in the history
  2. small design tweaks

    Chaphasilor committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    c65d04d View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. started to improve playback reporting

    - more robust with less race conditions
    - can detect looping a single track
    Chaphasilor committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    ce5eee2 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. Configuration menu
    Copy the full SHA
    8378c89 View commit details
    Browse the repository at this point in the history
  2. design/layout fixes

    Chaphasilor committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    78c61a3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd7012d View commit details
    Browse the repository at this point in the history
  4. update dependencies

    Chaphasilor committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    36df835 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    860d8b1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6421ecb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    635f949 View commit details
    Browse the repository at this point in the history
  8. re-enable chopper logs

    Chaphasilor committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    5e85c25 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6446695 View commit details
    Browse the repository at this point in the history
  10. increase buffer duration to compensate for spotty connections

    - has worked really well in my testing, with no pauses at all when losing reception for a few minutes
    - this could increase data usage if the Next Up queue is used a lot (frequent changes to next tracks)
      - @jmshrv definitely add a disclaimer to the release notes!
    Chaphasilor committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    2b711ab View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. remove dead code

    Chaphasilor committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    e32b9a8 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2023

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

Commits on Oct 2, 2023

  1. Configuration menu
    Copy the full SHA
    1c596ad View commit details
    Browse the repository at this point in the history
  2. small adjustments

    Chaphasilor committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    678b4ad View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Configuration menu
    Copy the full SHA
    9fdbb52 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a240509 View commit details
    Browse the repository at this point in the history
  3. fix loop one skip behavior

    - manual skips will switch the track, reaching the end of the track will loop it
    Chaphasilor committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    c436ae2 View commit details
    Browse the repository at this point in the history
  4. persist FinampLoopMode across restarts

    - required some changes to types to add Hive support and prevent name conflicts
    Chaphasilor committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    61683c6 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. add new queue sources & some fixes

    - fixed playlists being added to Next Up as "albums"
    - fixed sorting when adding lists to Next Up from the long-press menu
    Chaphasilor committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    0c3aa16 View commit details
    Browse the repository at this point in the history
  2. reword "recently played" to "previous tracks"

    - this just works better with looping queues where after the loop the previous tracks are empty again
      - "recently played" is better suited for the playback history screen
    Chaphasilor committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    db953ee View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4124b65 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    148a69a View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

  1. Configuration menu
    Copy the full SHA
    4f59674 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    19b8ee8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c811900 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    60907b4 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

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

Commits on Oct 21, 2023

  1. Configuration menu
    Copy the full SHA
    32dba48 View commit details
    Browse the repository at this point in the history
  2. don't shuffle twice

    Chaphasilor committed Oct 21, 2023
    Configuration menu
    Copy the full SHA
    5710e28 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Configuration menu
    Copy the full SHA
    3386a4e View commit details
    Browse the repository at this point in the history
  2. fix shuffle indices being wrong until updating queue

    - re-shuffling will now also yield a new order than before
    Chaphasilor committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    c39c416 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7cb1aba View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    0fc9e9b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8116198 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7034e6c View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2023

  1. refactor now_playing_bar.dart, fix errors when changing theme

    - also move the accent color generation back into the player screen (for now) to fix an infinite loop
    Chaphasilor committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    9fb3be4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ba857c View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. added favorite button to playback history items

    - makes it easier to "like" a song that you just listened to
    Chaphasilor committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    00e47ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2b6c63 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6450daf View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2023

  1. Configuration menu
    Copy the full SHA
    dd7e8cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d95f041 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ee2b97 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb91d6f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c063cb9 View commit details
    Browse the repository at this point in the history
  6. fix layout issues

    Chaphasilor committed Nov 18, 2023
    Configuration menu
    Copy the full SHA
    81f2e53 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2023

  1. Configuration menu
    Copy the full SHA
    fdeb781 View commit details
    Browse the repository at this point in the history
  2. format changed files

    Chaphasilor committed Nov 19, 2023
    Configuration menu
    Copy the full SHA
    258f183 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c99817b View commit details
    Browse the repository at this point in the history
  4. go back to metastable to get initial index to work

    - why is this so hard? :((
    Chaphasilor committed Nov 19, 2023
    Configuration menu
    Copy the full SHA
    ba78f92 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ce6ed6b View commit details
    Browse the repository at this point in the history