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

Some changes to track parsing #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Commits on Jan 31, 2018

  1. Added uwsgi config for easier local debug

    Domenico Iezzi committed Jan 31, 2018
    Configuration menu
    Copy the full SHA
    ab21ea8 View commit details
    Browse the repository at this point in the history
  2. Better tracknumber and discnumber parsing

    Tracks may have tracknumber and discnumber formatted as "x/y" where:
    
    - x is the current track/disc number
    - y is the total number of tracks/discs
    
    For example this is the case for tracks downloaded from Google Play
    Music. Now `parse_resource` function considers this particular case,
    otherwise will stick with the normal behaviour
    Domenico Iezzi committed Jan 31, 2018
    Configuration menu
    Copy the full SHA
    4816d9e View commit details
    Browse the repository at this point in the history
  3. Added venv folder and sqlite db to gitignore

    Domenico Iezzi committed Jan 31, 2018
    Configuration menu
    Copy the full SHA
    d6c0a1f View commit details
    Browse the repository at this point in the history
  4. Convert date field to string

    Since date tag inside tracks is a string, it can have any possible
    value. Previous code tried to parse date as an integer, but for example
    strings such as "2017-11-12 14:34" can't be cast to an integer value.
    
    As a workaround, date is now parsed as is, and the application client
    should handle its value as it sees fit
    Domenico Iezzi committed Jan 31, 2018
    Configuration menu
    Copy the full SHA
    6e694fe View commit details
    Browse the repository at this point in the history

Commits on May 1, 2018

  1. Some improvements discussed in PR #1

    Domenico Iezzi committed May 1, 2018
    Configuration menu
    Copy the full SHA
    86fef79 View commit details
    Browse the repository at this point in the history