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

Implement wifi-only downloads for iOS #768

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Nov 24, 2022

  1. Correctly read the error/success codes

    + Use the correct data type to evaluate the error codes when
    opening the SQLite database.
    lyio committed Nov 24, 2022
    Configuration menu
    Copy the full SHA
    df9ae16 View commit details
    Browse the repository at this point in the history
  2. Add schema migrations on iOS

    + Add a way to migrate the database schema on iOS
    + This partly reverts the changes to the db location
    lyio committed Nov 24, 2022
    Configuration menu
    Copy the full SHA
    1ccd752 View commit details
    Browse the repository at this point in the history
  3. fluttercommunity#408 Add DB column for allow_cellular on iOS

    + Add a column to the table `task`
    + Add the value to the record when modeling tasks
    lyio committed Nov 24, 2022
    Configuration menu
    Copy the full SHA
    54ac602 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2022

  1. fluttercommunity#408 Use different NSURLSessions to prevent downloads…

    … via cellular data
    
    + iOS handles this on a session basis and not on a per task basis, so we have
    to configure two different sessions. One that allows downloading via cellular
    data and one that doesn't.
    lyio committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    7fec9a6 View commit details
    Browse the repository at this point in the history