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

Bugfix/issue42 #607

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

Commits on Mar 25, 2015

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

Commits on Jul 12, 2015

  1. Activate C++11 for clang

    Tell clang to compile against the C++11 standard
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    ea84dd1 View commit details
    Browse the repository at this point in the history
  2. Remove #error in VolumeControl for Mac

    Replaced #errors in __APPLE__ ifdefs to simply no-op.
    
    A proper implementation will need some work to interface with CoreAudio
    on the Mac which will require some c++ to Obj-C bridging which I don’t
    know how to do yet.
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    399c160 View commit details
    Browse the repository at this point in the history
  3. Suppress inconsistent missing override warnings

    More clang combat.  Added set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}
    -Wno-inconsistent-missing-override")
    
    Should make it easier to spot actual clang errors.
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    0962dc8 View commit details
    Browse the repository at this point in the history
  4. ifndef'd a couple of usings which clang didn't like on OS X

    Everything appears to work anyway!
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    ed568dd View commit details
    Browse the repository at this point in the history
  5. ifndef'd a call in Window's ctor that was segfaulting on OS X

    the mBackgroundOverlay setImage call was causing a later call to an
    OpenGL method before SDL had been asked to init OpenGL on Mac OS X
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    d0ddcb1 View commit details
    Browse the repository at this point in the history
  6. Split some double >'s to make clang happy on OS X

    e.g. static std::vector<std::shared_ptr<Sound> > sSoundVector;
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    57cbb12 View commit details
    Browse the repository at this point in the history
  7. Ignore dotfiles when scanning directories

    Generally a good idea to ignore dot files, but especially important on
    OS X which spews ._SomeFile files on filesystems which do not natively
    support HFS+ metadata streams
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    28c6c44 View commit details
    Browse the repository at this point in the history
  8. Tidy up test code

    Oops.  Left some cruft behind in dotfile exclusion.
    Chris authored and Chris committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    96269a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2015

  1. Proper shutdown and restart on linux

    Fixes issue Aloshi#349
    masterfool committed Aug 24, 2015
    Configuration menu
    Copy the full SHA
    29ebda2 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2015

  1. Configuration menu
    Copy the full SHA
    276a207 View commit details
    Browse the repository at this point in the history
  2. MSVC 2015 fixes

    aslater committed Aug 30, 2015
    Configuration menu
    Copy the full SHA
    5748744 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ce00f5f View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2016

  1. Merge pull request Aloshi#1 from displaced/master

    MacOS Support (Thanks @displaced!)
    wolf-sigma committed Feb 6, 2016
    Configuration menu
    Copy the full SHA
    ccd61da View commit details
    Browse the repository at this point in the history
  2. Merge pull request Aloshi#2 from aslater/master

    MVC2015 & Sorting (Thanks @aslater!)
    wolf-sigma committed Feb 6, 2016
    Configuration menu
    Copy the full SHA
    b51496f View commit details
    Browse the repository at this point in the history
  3. MacOS Build Instructions

    wolf-sigma committed Feb 6, 2016
    Configuration menu
    Copy the full SHA
    f64c6bc View commit details
    Browse the repository at this point in the history
  4. Update README.md

    wolf-sigma committed Feb 6, 2016
    Configuration menu
    Copy the full SHA
    7eb4ff4 View commit details
    Browse the repository at this point in the history
  5. Update README.md

    wolf-sigma committed Feb 6, 2016
    Configuration menu
    Copy the full SHA
    6ac76cb View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2016

  1. Allow Hidden Files

    Initial commit for allowing hidden files
    wolf-sigma committed Feb 14, 2016
    Configuration menu
    Copy the full SHA
    196d917 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2016

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

Commits on Feb 19, 2016

  1. Configuration menu
    Copy the full SHA
    3b46a2a View commit details
    Browse the repository at this point in the history
  2. Added specifiable config directory

    The old implementation hardcoded a the directory ~/.emulationstation
    everywhere. This implementation uses compiler flags to find a sensible
    location (XDG compliant on linux, My Documents on Windows, and either
    XDG or Application Support on OSX)
    Herdinger committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    fbee69e View commit details
    Browse the repository at this point in the history
  3. Dummied out Volume Control

    Since I've wanted to build on OSX I had to dummy out or implement for
    the OSX compiler flags. I plan on using SDL to do manual mixing so I
    removed the rest too.
    Herdinger committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    3f8749c View commit details
    Browse the repository at this point in the history
  4. Fixed build on OSX

    I basically made clang happy, there are still warnings for literal
    string compares which I will fix soon. There was also the problem on
    calling GL functions before it was initialized.
    Herdinger committed Feb 19, 2016
    Configuration menu
    Copy the full SHA
    5ead4b5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7c21e3e View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2016

  1. Merge pull request Aloshi#1 from masterfool/patch-1

    Proper shutdown and restart on linux
    Herdinger committed Feb 20, 2016
    Configuration menu
    Copy the full SHA
    2b4bfa9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request Aloshi#2 from Devenor/master

    Added symlink support on removeCommonPath
    Herdinger committed Feb 20, 2016
    Configuration menu
    Copy the full SHA
    0867034 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2016

  1. Fixed Linux Build

    Herdinger committed Feb 23, 2016
    Configuration menu
    Copy the full SHA
    03c5115 View commit details
    Browse the repository at this point in the history
  2. Fixed OSX and Windows build

    Herdinger committed Feb 23, 2016
    Configuration menu
    Copy the full SHA
    54c9561 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1985dcf View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2016

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

Commits on Feb 26, 2016

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

Commits on Mar 2, 2016

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

Commits on Mar 3, 2016

  1. Configuration menu
    Copy the full SHA
    7379353 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28df88f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2a17103 View commit details
    Browse the repository at this point in the history
  4. Fixed wrong include

    Herdinger committed Mar 3, 2016
    Configuration menu
    Copy the full SHA
    6dbfabf View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2016

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

Commits on Mar 13, 2016

  1. Update README.md

    Add SDL2 to brew install list for compiling on OSX
    seriema committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    5fa0eeb View commit details
    Browse the repository at this point in the history
  2. Merge pull request Aloshi#13 from seriema/patch-1

    Update README.md with SDL2 brew for OSX
    wolf-sigma committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    93f6e11 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2016

  1. Added UI Options (Hidden Files + Splash Screen)

    Also fixed a bug with both options.
    wolf-sigma committed Mar 25, 2016
    Configuration menu
    Copy the full SHA
    8486646 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2016

  1. Configuration menu
    Copy the full SHA
    63aa696 View commit details
    Browse the repository at this point in the history
  2. adding some CI scripts

    wolf-sigma committed Mar 26, 2016
    Configuration menu
    Copy the full SHA
    9e92fa8 View commit details
    Browse the repository at this point in the history
  3. Slight CI Changes

    wolf-sigma committed Mar 26, 2016
    Configuration menu
    Copy the full SHA
    d504b69 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2016

  1. Update README.md

    wolf-sigma committed Mar 27, 2016
    Configuration menu
    Copy the full SHA
    6c60acb View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2016

  1. Configuration menu
    Copy the full SHA
    793392b View commit details
    Browse the repository at this point in the history
  2. Merge pull request Aloshi#18 from Herdinger/RetroPie-master

    Merging RetroPie Branch
    wolf-sigma committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    e3befb7 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2016

  1. Ability to switch displays

    Currently, this requires you to restart ES to take effect.
    wolf-sigma committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    c6bfeb8 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2016

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

Commits on May 3, 2016

  1. Fixed Aloshi#29

    Herdinger committed May 3, 2016
    Configuration menu
    Copy the full SHA
    f11df2c View commit details
    Browse the repository at this point in the history

Commits on May 7, 2016

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

Commits on May 9, 2016

  1. Merge pull request Aloshi#32 from John-Gee/master

    Preprocessor checks for Visual Studio broke the GCC6 build, fixed
    Herdinger committed May 9, 2016
    Configuration menu
    Copy the full SHA
    76c1538 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2016

  1. Resolving Herdinger#31

    Bug in checking for config files.
    wolf-sigma committed Jul 14, 2016
    Configuration menu
    Copy the full SHA
    54a3c3e View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2016

  1. Fixed issue 42, the OS will now restart and shutdown if emulationstat…

    …ion runs under the right permissions !
    Robert authored and Robert committed Aug 10, 2016
    Configuration menu
    Copy the full SHA
    47c39ec View commit details
    Browse the repository at this point in the history