-
Notifications
You must be signed in to change notification settings - Fork 130
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
Commits on May 18, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for ef77863 - Browse repository at this point
Copy the full SHA ef77863View commit details -
- 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
Configuration menu - View commit details
-
Copy full SHA for 4be2568 - Browse repository at this point
Copy the full SHA 4be2568View commit details -
Configuration menu - View commit details
-
Copy full SHA for c51955b - Browse repository at this point
Copy the full SHA c51955bView commit details
Commits on May 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1936f8d - Browse repository at this point
Copy the full SHA 1936f8dView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for b22fb96 - Browse repository at this point
Copy the full SHA b22fb96View commit details
Commits on May 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1f0afd0 - Browse repository at this point
Copy the full SHA 1f0afd0View commit details -
'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)
Configuration menu - View commit details
-
Copy full SHA for a8d52ea - Browse repository at this point
Copy the full SHA a8d52eaView commit details -
simplify external queue updates
- properly remove, prepend, and append AudioSources from/to the ConcatenatingAudioSource
Configuration menu - View commit details
-
Copy full SHA for c80c778 - Browse repository at this point
Copy the full SHA c80c778View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7eea9b - Browse repository at this point
Copy the full SHA b7eea9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e1ec780 - Browse repository at this point
Copy the full SHA e1ec780View commit details -
- convert Streams to BehaviorSubjects - show current track and queue (needs fixing)
Configuration menu - View commit details
-
Copy full SHA for 90b9d4d - Browse repository at this point
Copy the full SHA 90b9d4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 272e28b - Browse repository at this point
Copy the full SHA 272e28bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 03f4f24 - Browse repository at this point
Copy the full SHA 03f4f24View commit details
Commits on May 22, 2023
-
reimplement queue list bottom sheet with CustomScrollView
- allows efficient and flexible combination of multiple lists and elements into a single scrolling view
Configuration menu - View commit details
-
Copy full SHA for b7e8fdf - Browse repository at this point
Copy the full SHA b7e8fdfView commit details -
working track selection in queue (skipByOffset)
- can skip to track in both recent track and the regular queue by tapping on them
Configuration menu - View commit details
-
Copy full SHA for 731fb9e - Browse repository at this point
Copy the full SHA 731fb9eView commit details
Commits on May 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f30f94c - Browse repository at this point
Copy the full SHA f30f94cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 81c4f14 - Browse repository at this point
Copy the full SHA 81c4f14View commit details -
Configuration menu - View commit details
-
Copy full SHA for eddbc5e - Browse repository at this point
Copy the full SHA eddbc5eView commit details -
tried combining current track detection with proper skipping in queue
- some inconsistencies still happen, but it mostly works
Configuration menu - View commit details
-
Copy full SHA for 43cb0e2 - Browse repository at this point
Copy the full SHA 43cb0e2View commit details
Commits on May 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6c8cdbb - Browse repository at this point
Copy the full SHA 6c8cdbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 36aa49d - Browse repository at this point
Copy the full SHA 36aa49dView commit details
Commits on Jun 2, 2023
-
just_audio-based shuffling with Next Up support almost working
- only thing missing is disabling shuffling and keeping the right index
Configuration menu - View commit details
-
Copy full SHA for 554cb43 - Browse repository at this point
Copy the full SHA 554cb43View commit details -
- fixed adjustedQueueIndex being using the track index instead of the array index - fixed adjustedQueueIndex being based on shuffledIndices when shuffle disabled
Configuration menu - View commit details
-
Copy full SHA for f4d2a82 - Browse repository at this point
Copy the full SHA f4d2a82View commit details -
Configuration menu - View commit details
-
Copy full SHA for 32aac37 - Browse repository at this point
Copy the full SHA 32aac37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02daccb - Browse repository at this point
Copy the full SHA 02daccbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 15b495e - Browse repository at this point
Copy the full SHA 15b495eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 84b0ac2 - Browse repository at this point
Copy the full SHA 84b0ac2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ebb4ae - Browse repository at this point
Copy the full SHA 0ebb4aeView commit details -
fix skipByOffset() when shuffle is enabled
- allows skipping using the QueueList again
Configuration menu - View commit details
-
Copy full SHA for fca95c7 - Browse repository at this point
Copy the full SHA fca95c7View commit details
Commits on Jun 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d9bb469 - Browse repository at this point
Copy the full SHA d9bb469View commit details
Commits on Jun 7, 2023
-
- proper reordering support (between lists!) - current track is fixed - lists can't be dragged anymore - previous tracks collapsed by default
Configuration menu - View commit details
-
Copy full SHA for 33df18a - Browse repository at this point
Copy the full SHA 33df18aView commit details
Commits on Jun 9, 2023
-
- add songs to next up (prepend and append) - reorder songs - show correct source
Configuration menu - View commit details
-
Copy full SHA for c10ac61 - Browse repository at this point
Copy the full SHA c10ac61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cf3c47 - Browse repository at this point
Copy the full SHA 1cf3c47View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2ad87b - Browse repository at this point
Copy the full SHA a2ad87bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bc1b75b - Browse repository at this point
Copy the full SHA bc1b75bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4248aae - Browse repository at this point
Copy the full SHA 4248aaeView commit details
Commits on Jun 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e8a017a - Browse repository at this point
Copy the full SHA e8a017aView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for b59b21d - Browse repository at this point
Copy the full SHA b59b21dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f93b234 - Browse repository at this point
Copy the full SHA f93b234View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 7774d66 - Browse repository at this point
Copy the full SHA 7774d66View commit details
Commits on Jun 11, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 0154021 - Browse repository at this point
Copy the full SHA 0154021View commit details
Commits on Jul 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for cc4a44b - Browse repository at this point
Copy the full SHA cc4a44bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 12e4c77 - Browse repository at this point
Copy the full SHA 12e4c77View commit details
Commits on Jul 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 92ed02d - Browse repository at this point
Copy the full SHA 92ed02dView commit details -
attempted to separate queue list into separate widgets with independe…
…nt streambuilders
Configuration menu - View commit details
-
Copy full SHA for 91ebd37 - Browse repository at this point
Copy the full SHA 91ebd37View commit details
Commits on Jul 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2e02350 - Browse repository at this point
Copy the full SHA 2e02350View commit details -
- implemented separate widgets for different queues - reordering only possible within queues - updated design to be closer to the mockup
Configuration menu - View commit details
-
Copy full SHA for d36eb6a - Browse repository at this point
Copy the full SHA d36eb6aView commit details
Commits on Jul 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0befb2c - Browse repository at this point
Copy the full SHA 0befb2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c33dd3 - Browse repository at this point
Copy the full SHA 7c33dd3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7903cff - Browse repository at this point
Copy the full SHA 7903cffView commit details
Commits on Aug 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f3350ca - Browse repository at this point
Copy the full SHA f3350caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53d862f - Browse repository at this point
Copy the full SHA 53d862fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 84946ee - Browse repository at this point
Copy the full SHA 84946eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 867d57d - Browse repository at this point
Copy the full SHA 867d57dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b63a0fa - Browse repository at this point
Copy the full SHA b63a0faView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5ba1d0 - Browse repository at this point
Copy the full SHA a5ba1d0View commit details
Commits on Aug 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 001cb95 - Browse repository at this point
Copy the full SHA 001cb95View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f90d20 - Browse repository at this point
Copy the full SHA 2f90d20View commit details -
Configuration menu - View commit details
-
Copy full SHA for 44ec707 - Browse repository at this point
Copy the full SHA 44ec707View commit details -
Configuration menu - View commit details
-
Copy full SHA for e42f300 - Browse repository at this point
Copy the full SHA e42f300View commit details -
Configuration menu - View commit details
-
Copy full SHA for 233739c - Browse repository at this point
Copy the full SHA 233739cView commit details
Commits on Aug 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 36610e9 - Browse repository at this point
Copy the full SHA 36610e9View commit details -
fix shuffle always starting on first index
what is *wrong* with just_audio?! shuffling the playlist on load? 👀
Configuration menu - View commit details
-
Copy full SHA for 0947a14 - Browse repository at this point
Copy the full SHA 0947a14View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d244e6 - Browse repository at this point
Copy the full SHA 9d244e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa31e35 - Browse repository at this point
Copy the full SHA fa31e35View commit details
Commits on Aug 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4e9e566 - Browse repository at this point
Copy the full SHA 4e9e566View commit details -
Configuration menu - View commit details
-
Copy full SHA for 835e6f3 - Browse repository at this point
Copy the full SHA 835e6f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77b4827 - Browse repository at this point
Copy the full SHA 77b4827View commit details
Commits on Sep 17, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 1e08f1b - Browse repository at this point
Copy the full SHA 1e08f1bView commit details
Commits on Sep 18, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 821606e - Browse repository at this point
Copy the full SHA 821606eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b52754 - Browse repository at this point
Copy the full SHA 5b52754View commit details -
Configuration menu - View commit details
-
Copy full SHA for cc6a055 - Browse repository at this point
Copy the full SHA cc6a055View commit details
Commits on Sep 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6b72110 - Browse repository at this point
Copy the full SHA 6b72110View commit details -
Configuration menu - View commit details
-
Copy full SHA for e791df6 - Browse repository at this point
Copy the full SHA e791df6View commit details -
improved playback history screen
- still needs a proper design and improved implementation
Configuration menu - View commit details
-
Copy full SHA for 04773fb - Browse repository at this point
Copy the full SHA 04773fbView commit details
Commits on Sep 21, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 6ef5f00 - Browse repository at this point
Copy the full SHA 6ef5f00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3efde88 - Browse repository at this point
Copy the full SHA 3efde88View commit details
Commits on Sep 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c047239 - Browse repository at this point
Copy the full SHA c047239View commit details -
Configuration menu - View commit details
-
Copy full SHA for e9b4c6b - Browse repository at this point
Copy the full SHA e9b4c6bView commit details -
smaller design tweaks to tie in the color theme
- changes aren't limited to the queue list
Configuration menu - View commit details
-
Copy full SHA for 9db72f5 - Browse repository at this point
Copy the full SHA 9db72f5View commit details
Commits on Sep 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0f39cf9 - Browse repository at this point
Copy the full SHA 0f39cf9View commit details -
Configuration menu - View commit details
-
Copy full SHA for cfe5432 - Browse repository at this point
Copy the full SHA cfe5432View commit details -
- design tweaks - tried to limit flickering when changing queue - working with flutter 3.13.5, dart 3.1.2
Configuration menu - View commit details
-
Copy full SHA for 4a5693c - Browse repository at this point
Copy the full SHA 4a5693cView commit details
Commits on Sep 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2ef5510 - Browse repository at this point
Copy the full SHA 2ef5510View commit details -
Configuration menu - View commit details
-
Copy full SHA for c65d04d - Browse repository at this point
Copy the full SHA c65d04dView commit details
Commits on Sep 26, 2023
-
started to improve playback reporting
- more robust with less race conditions - can detect looping a single track
Configuration menu - View commit details
-
Copy full SHA for ce5eee2 - Browse repository at this point
Copy the full SHA ce5eee2View commit details
Commits on Sep 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8378c89 - Browse repository at this point
Copy the full SHA 8378c89View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78c61a3 - Browse repository at this point
Copy the full SHA 78c61a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd7012d - Browse repository at this point
Copy the full SHA dd7012dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 36df835 - Browse repository at this point
Copy the full SHA 36df835View commit details -
Configuration menu - View commit details
-
Copy full SHA for 860d8b1 - Browse repository at this point
Copy the full SHA 860d8b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6421ecb - Browse repository at this point
Copy the full SHA 6421ecbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 635f949 - Browse repository at this point
Copy the full SHA 635f949View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e85c25 - Browse repository at this point
Copy the full SHA 5e85c25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6446695 - Browse repository at this point
Copy the full SHA 6446695View commit details -
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!
Configuration menu - View commit details
-
Copy full SHA for 2b711ab - Browse repository at this point
Copy the full SHA 2b711abView commit details
Commits on Sep 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e32b9a8 - Browse repository at this point
Copy the full SHA e32b9a8View commit details
Commits on Sep 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c9f1902 - Browse repository at this point
Copy the full SHA c9f1902View commit details
Commits on Oct 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1c596ad - Browse repository at this point
Copy the full SHA 1c596adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 678b4ad - Browse repository at this point
Copy the full SHA 678b4adView commit details
Commits on Oct 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9fdbb52 - Browse repository at this point
Copy the full SHA 9fdbb52View commit details -
Configuration menu - View commit details
-
Copy full SHA for a240509 - Browse repository at this point
Copy the full SHA a240509View commit details -
- manual skips will switch the track, reaching the end of the track will loop it
Configuration menu - View commit details
-
Copy full SHA for c436ae2 - Browse repository at this point
Copy the full SHA c436ae2View commit details -
persist FinampLoopMode across restarts
- required some changes to types to add Hive support and prevent name conflicts
Configuration menu - View commit details
-
Copy full SHA for 61683c6 - Browse repository at this point
Copy the full SHA 61683c6View commit details
Commits on Oct 12, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 0c3aa16 - Browse repository at this point
Copy the full SHA 0c3aa16View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for db953ee - Browse repository at this point
Copy the full SHA db953eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4124b65 - Browse repository at this point
Copy the full SHA 4124b65View commit details -
Configuration menu - View commit details
-
Copy full SHA for 148a69a - Browse repository at this point
Copy the full SHA 148a69aView commit details
Commits on Oct 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4f59674 - Browse repository at this point
Copy the full SHA 4f59674View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19b8ee8 - Browse repository at this point
Copy the full SHA 19b8ee8View commit details -
Configuration menu - View commit details
-
Copy full SHA for c811900 - Browse repository at this point
Copy the full SHA c811900View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60907b4 - Browse repository at this point
Copy the full SHA 60907b4View commit details
Commits on Oct 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ab41bab - Browse repository at this point
Copy the full SHA ab41babView commit details
Commits on Oct 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 32dba48 - Browse repository at this point
Copy the full SHA 32dba48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5710e28 - Browse repository at this point
Copy the full SHA 5710e28View commit details
Commits on Oct 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3386a4e - Browse repository at this point
Copy the full SHA 3386a4eView commit details -
fix shuffle indices being wrong until updating queue
- re-shuffling will now also yield a new order than before
Configuration menu - View commit details
-
Copy full SHA for c39c416 - Browse repository at this point
Copy the full SHA c39c416View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cb1aba - Browse repository at this point
Copy the full SHA 7cb1abaView commit details
Commits on Oct 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0fc9e9b - Browse repository at this point
Copy the full SHA 0fc9e9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8116198 - Browse repository at this point
Copy the full SHA 8116198View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7034e6c - Browse repository at this point
Copy the full SHA 7034e6cView commit details
Commits on Oct 29, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 9fb3be4 - Browse repository at this point
Copy the full SHA 9fb3be4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ba857c - Browse repository at this point
Copy the full SHA 0ba857cView commit details
Commits on Nov 17, 2023
-
added favorite button to playback history items
- makes it easier to "like" a song that you just listened to
Configuration menu - View commit details
-
Copy full SHA for 00e47ae - Browse repository at this point
Copy the full SHA 00e47aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for a2b6c63 - Browse repository at this point
Copy the full SHA a2b6c63View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6450daf - Browse repository at this point
Copy the full SHA 6450dafView commit details
Commits on Nov 18, 2023
-
Configuration menu - View commit details
-
Copy full SHA for dd7e8cf - Browse repository at this point
Copy the full SHA dd7e8cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for d95f041 - Browse repository at this point
Copy the full SHA d95f041View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ee2b97 - Browse repository at this point
Copy the full SHA 7ee2b97View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb91d6f - Browse repository at this point
Copy the full SHA cb91d6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c063cb9 - Browse repository at this point
Copy the full SHA c063cb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 81f2e53 - Browse repository at this point
Copy the full SHA 81f2e53View commit details
Commits on Nov 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fdeb781 - Browse repository at this point
Copy the full SHA fdeb781View commit details -
Configuration menu - View commit details
-
Copy full SHA for 258f183 - Browse repository at this point
Copy the full SHA 258f183View commit details -
Configuration menu - View commit details
-
Copy full SHA for c99817b - Browse repository at this point
Copy the full SHA c99817bView commit details -
go back to metastable to get initial index to work
- why is this so hard? :((
Configuration menu - View commit details
-
Copy full SHA for ba78f92 - Browse repository at this point
Copy the full SHA ba78f92View commit details -
Configuration menu - View commit details
-
Copy full SHA for ce6ed6b - Browse repository at this point
Copy the full SHA ce6ed6bView commit details