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

V2 fixes #48

Merged
merged 38 commits into from
Jul 18, 2016
Merged

V2 fixes #48

merged 38 commits into from
Jul 18, 2016

Commits on Dec 2, 2014

  1. Configuration menu
    Copy the full SHA
    65de9d3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #31 from iamdoron/master

    add OS X deployment target to podspec
    arielelkin committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    d2479d7 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2015

  1. Configuration menu
    Copy the full SHA
    09293dc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b363b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    43a527e View commit details
    Browse the repository at this point in the history
  4. Update README.md

    arielelkin committed Mar 8, 2015
    Configuration menu
    Copy the full SHA
    0218e85 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2015

  1. Non-ARC compatibility, Interface Builder designables compatibility, s…

    …cientific notation no longer borks parsing
    karnevil9 committed Mar 13, 2015
    Configuration menu
    Copy the full SHA
    78208d3 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2015

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

Commits on May 8, 2015

  1. Support Quadratic Bézier paths

    Adds support for:
    Q,q = Quadratic Bézier
    T,t = Smooth quadratic Bézier
    dbworku committed May 8, 2015
    Configuration menu
    Copy the full SHA
    a2addb1 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2015

  1. Fix Control Point state and valence check

    - Replace check if index == 0 and while statement into
    `doesValenceMatch` method that produces more descriptive logging when
    the parameters are insufficient
    - Compute `[token command] == ` once per append command.
    - Prevent Q and S control points from mixing
    - Q and S use last point drawn as control if the previous command did
    not produce a control point of that type.
    - Move to point was producing a line after it moved to that point
    dbworku committed May 11, 2015
    Configuration menu
    Copy the full SHA
    314b0f5 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2015

  1. Fix typos

    - L style commands should have 2 parameters
    - Fix logging on unichar
    dbworku committed May 12, 2015
    Configuration menu
    Copy the full SHA
    f1afdd1 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2015

  1. Merge pull request #34 from dbworku/master

    Support Quadratic Bézier paths
    arielelkin committed May 14, 2015
    Configuration menu
    Copy the full SHA
    f69e180 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    arielelkin committed May 14, 2015
    Configuration menu
    Copy the full SHA
    54b30ca View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2015

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

Commits on Jun 22, 2015

  1. Merge pull request #35 from hamin/nsbezierpath_bug_fix

    Bug fix for NSBezierPath. Wrong method signature :)
    arielelkin committed Jun 22, 2015
    Configuration menu
    Copy the full SHA
    4b3d302 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2015

  1. dynamic Interface Builder compatibility

    Preprocessor condition added so we can use the same file for building
    and IB without modification.
    nathanfjohnson committed Jun 23, 2015
    Configuration menu
    Copy the full SHA
    03454fd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #36 from nathanfjohnson/master

    dynamic Interface Builder compatibility
    arielelkin committed Jun 23, 2015
    Configuration menu
    Copy the full SHA
    4d2a1e8 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2015

  1. init carthage

    halseth committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    a744afa View commit details
    Browse the repository at this point in the history
  2. deleted files

    halseth committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    e5db1b2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1 from halseth/carthage

    Carthage
    halseth committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    64d14ec View commit details
    Browse the repository at this point in the history
  4. updates

    halseth committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    153049e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2 from halseth/carthage

    updates
    halseth committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    0d97986 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2015

  1. deleted files not in use

    halseth committed Oct 27, 2015
    Configuration menu
    Copy the full SHA
    7f3ed96 View commit details
    Browse the repository at this point in the history
  2. comment

    halseth committed Oct 27, 2015
    Configuration menu
    Copy the full SHA
    017828c View commit details
    Browse the repository at this point in the history
  3. removed user settings

    halseth committed Oct 27, 2015
    Configuration menu
    Copy the full SHA
    77f278d View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2015

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

Commits on Nov 9, 2015

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

Commits on May 10, 2016

  1. Added repeat instruction support

    As per w3.org specs, you can ommit command character for repeated path instructions.
    Example 1: C command followed by 12 numbers means two repeated C commands.
    Example 2: M or m command followed by 2 or more pairs of numbers is a shortcut for LineTo
    For more information see: https://www.w3.org/TR/SVG/paths.html#PathData
    
    Changes:
    - Support for multiple coordinate pairs after M/m command
    - Support for multiple coordinate pairs to the L/l/H/h/V/v
    - Support for multiple coordinate pairs to the S/s/C/c
    - Support for multiple coordinate pairs to the Q/q/T/t
    Daniel Chu committed May 10, 2016
    Configuration menu
    Copy the full SHA
    5e8e4f8 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2016

  1. Merge pull request #45 from DanielChu/master

    Added repeat instruction support
    arielelkin committed May 15, 2016
    Configuration menu
    Copy the full SHA
    64ab3fd View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2016

  1. update CFBundleIdentifier

    Ariel Elkin committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    852052a View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into v2

    Ariel Elkin committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    1eed8ac View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fe60d2c View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2016

  1. SVGExample: link framework into targets

    Ariel Elkin committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    51c1398 View commit details
    Browse the repository at this point in the history
  2. update podspec

    Ariel Elkin committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    faf0743 View commit details
    Browse the repository at this point in the history
  3. update podspec

    Ariel Elkin committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    2cd3a9d View commit details
    Browse the repository at this point in the history
  4. update podspec

    Ariel Elkin committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    5567ae5 View commit details
    Browse the repository at this point in the history
  5. add back travis.yml file

    Ariel Elkin committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    5c2199d View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2016

  1. Removed "PocketSVGFramework"

    It was unused from what I could tell.
    fjolnir committed Jul 18, 2016
    Configuration menu
    Copy the full SHA
    405636f View commit details
    Browse the repository at this point in the history