Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: processing/processing
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mikechambers/processing
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 6 files changed
  • 1 contributor

Commits on Jul 22, 2014

  1. Added support for specifying a universal include folder.

    To enable, add the following preference to your preferences.txt file:
    
    preproc.includes_path=/path/to/include/folder
    
    When this preference is specified, any .pde or .java files included
    in the includes folder will be available when compiling sketch files
    from the IDE.
    
    This allows you to place commonly used code and files in a single folder
    and have them avaiable to all of your Processing projects, without
    having to copy the files into each project directory.
    
    If the preference is not specified, is empty, or does not point to
    a folder, it will be ignored.
    
    Note, I basically reused code for parsing SketchCode file in Sketch.java.
    
    Ideally, this code should be refactored in a way that it can be reused (so we don't
    have two copies of the code).
    mikechambers committed Jul 22, 2014
    Configuration menu
    Copy the full SHA
    9e7b3a9 View commit details
    Browse the repository at this point in the history
  2. adding support for #include directive. This compiles and runs, but wi…

    …ll throw an error. I need to remove the #include line after I parse it.
    mikechambers committed Jul 22, 2014
    Configuration menu
    Copy the full SHA
    3aed66f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b7c6db3 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2014

  1. Configuration menu
    Copy the full SHA
    1bbca08 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    78d4f5d View commit details
    Browse the repository at this point in the history
  3. fixed some bugs with possible duplicate files using different relativ…

    …e paths not getting caught
    mikechambers committed Jul 23, 2014
    Configuration menu
    Copy the full SHA
    a2c6bc3 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2014

  1. completely refactored include code. Moved to Sketch and not preproces…

    …sing. Can not include .java files. included files now open in sketch. #include directives in include files are currently ignored.
    mikechambers committed Jul 26, 2014
    Configuration menu
    Copy the full SHA
    af1145c View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2015

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

Commits on Dec 19, 2015

  1. Configuration menu
    Copy the full SHA
    8ffbcf7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    533efa3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c62badd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3158567 View commit details
    Browse the repository at this point in the history
Loading