Commit Graph
34302 Commits
Author SHA1 Message Date
Peter S. May a991ae18a0 SextetStream input and lights drivers. 2014-10-19 16:51:54 -04:00
Peter S. May 1f81c64c00 Merge remote-tracking branch 'upstream/master' 2014-10-19 15:49:36 -04:00
Colby Klein 546049f731 Merge pull request #341 from wolfman2000/wolf-revert-style-preserve
Revert "Preserve Steps of unknown Style."
2014-10-19 07:08:31 -07:00
Jason Felds 395107d3d5 Revert "Preserve Steps of unknown Style."
This reverts commit 8edd929e24.

This also updates the song cache.
2014-10-19 10:06:40 -04:00
Jason Felds a09e3477b2 Add another .gitignore entry: linker files. 2014-10-16 18:42:56 -04:00
Colby Klein 530cfa1f2d Version un-bump. A comes before B, Jason. 2014-10-16 07:36:31 -07:00
Colby Klein e2905529e3 Merge pull request #335 from hanubeki/lang-ja
Update Niler's Japanese language files.
2014-10-16 07:31:33 -07:00
Colby Klein 22041cde72 Merge pull request #336 from lthls/fix-static-ffmpeg-build
Fix compilation with --with-static-ffmpeg
2014-10-16 07:29:31 -07:00
Vincent Laviron 19233200b7 Fix compilation with --with-static-ffmpeg 2014-10-16 15:51:11 +02:00
hanubeki ec9d02dcf5 Update Niler's Japanese language files. 2014-10-16 21:48:52 +09:00
AJ Kelly b668e9feeb Merge pull request #333 from wolfman2000/wolf-version-b4b
Increment the version. Update the change log.
2014-10-15 20:13:42 -05:00
Jason Felds 3c80f38b56 Typo. 2014-10-15 21:10:31 -04:00
Jason Felds 824b355fc2 Merge pull request #334 from wolfman2000/wolf-clean-gitignore
Clean up .gitignore. Organize by cateogry.
2014-10-15 20:46:56 -04:00
Jason Felds 45fe70c7d8 Clean up .gitignore. Organize by cateogry. 2014-10-15 20:11:54 -04:00
Jason Felds bf7344a3e1 Increment the version. Update the change log. 2014-10-15 18:42:00 -04:00
Kyzentun 7ad1874ada Changed Common Error redir to not use Common Normal redir so changing Common Normal doesn't accidentally change Common Error. 2014-10-14 18:24:54 -06:00
freem 92c7b4345f fix invalid CropTo commands mentioned in issue #326 2014-10-14 02:53:17 -05:00
freem dede5ff561 pedantic spaces -> tabs commit 2014-10-14 02:52:25 -05:00
AJ Kelly 3f29a89e39 Merge pull request #329 from hanubeki/noteskin-var
Fix Var "Player" and Var "Controller" in non-receptor arrow.
2014-10-14 02:28:50 -05:00
hanubeki e9c5549896 formatting operator<() 2014-10-14 16:13:06 +09:00
hanubeki 5a69929f60 Modify NoteDisplay to work with Var "Player" and Var "Controller" in non-receptor arrow. 2014-10-14 14:30:23 +09:00
Jason Felds 578f0b8b0b Merge pull request #324 from jberney/master
Mac OS X 10.10 Yosemite crash fix
2014-10-13 18:54:05 -04:00
Peter S. May 5fa0c9dda6 Merge branch 'master' of github.com:psmay/stepmania 2014-10-13 08:45:23 -04:00
Jason Felds 295e09c9e6 Merge pull request #239 from dtinth/MacOSX10.9.sdk
Update to Mac OS X 10.10 SDK

Here's to hoping this doesn't cause too many problems.
2014-10-11 19:04:11 -04:00
AJ Kelly b0ccfd71a5 Merge pull request #328 from hanubeki/notecolor
Add {PartName}NoteColorType and {PartName}NoteColorCount NoteSkin metric.
2014-10-11 17:26:19 -05:00
Kyzentun 14a1504263 Merge pull request #323 from kyzentun/UnknownStyleSupport
Preserve Steps of unknown Style.
2014-10-11 16:18:21 -06:00
hanubeki 4e02983dc9 Add metrics for previous commit 2014-10-12 00:42:03 +09:00
hanubeki 4c40ca9b76 Add {PartName}NoteColorType and {PartName}NoteColorCount NoteSkin metric. 2014-10-12 00:40:46 +09:00
Thai Pangsakulyanont 36aa012f03 fallback to the fallback when KeyCodeToChar does not work 2014-10-11 21:10:23 +07:00
Thai Pangsakulyanont 85f6f2e5d4 added the code that works. It is tested outside of StepMania 2014-10-11 14:34:05 +07:00
Thai Pangsakulyanont b0106312c4 remove untested code 2014-10-11 14:19:20 +07:00
Thai Pangsakulyanont 7dc2bd7f63 Change project to 32 bit 2014-10-11 13:55:49 +07:00
Thai Pangsakulyanont a2e66a7803 Use Quarts to map raw keyboard to character code. 2014-10-11 13:49:43 +07:00
Thai Pangsakulyanont a4f9df9cbc Merge branch 'master' of https://github.com/stepmania/stepmania into MacOSX10.9.sdk 2014-10-11 12:40:18 +07:00
Jonathan Berney f9f486b812 Fixed indentation issues accidentally introduced 2014-10-07 19:56:33 -07:00
Jonathan Berney 218c10ef97 Update RageSoundDriver_AU.cpp
The Yosemite crash happens when we call CFRunLoopAddObserver. It doesn't seem to like runLoopRef. Replacing the first argument to this call with CFRunLoopGetCurrent() avoids the crash, but the app then hangs because CFRunLoopWakeUp doesn't cause observerRef (NameHALThread) to fire, so the semaphore is not posted. Commenting the semaphore wait line allows the game to boot in Yosemite, and seems to play totally normally. This doesn't really fix our problem (we are trying to name the HAL thread, and a catastrophic error occurs), but it shows us what the problem is.

We are obtaining runLoopRef using an API call that was deprecated years ago. However, the Apple-approved replacement code doesn't produce a runLoopRef that avoids the crash, either. So I'm not sure how we get the correct runLoopRef so we can name the thread.

This is my first time looking at the code base, but I don't see the value of naming the thread. In the interest of keeping Stepmania compatible with the upcoming operating system, I propose we just remove the thread-naming logic.
2014-10-07 19:48:58 -07:00
psmay 71d3a07d93 Merge pull request #1 from stepmania/master
Make the log mention Windows 8 instead of "unknown NT-based"
2014-10-07 08:52:33 -04:00
freem 4629bdef5c Make the log mention Windows 8 instead of "unknown NT-based"
(fwiw, I don't like windows 8. also can someone tell me what version number windows 10 will be using?)
2014-10-06 17:50:47 -05:00
Kyzentun e8b8bfdb60 Song cache version bump. 2014-10-03 19:05:39 -06:00
freem 63fa9afc24 add sm5_beginner.txt to NSIS install script 2014-10-02 02:05:36 -05:00
Kyzentun 8edd929e24 Preserve Steps of unknown Style. 2014-10-01 17:12:01 -06:00
freem 7c795fdbb7 our issue tracker moved to github a long time ago, even if we don't currently use this item. 2014-09-30 23:47:05 -05:00
freem 7dac269bcb This file also uses LoadFont("Common","Normal"), which will cause StepMania to cry 2014-09-30 23:39:21 -05:00
freem 0ef2bf23fd Merge branch 'master' of github.com:stepmania/stepmania 2014-09-30 23:36:38 -05:00
freem 32c40753fe Fix error that comes from using LoadFont 2014-09-30 23:36:13 -05:00
Kyzentun db1147abac Added ScreenHeartEntry example. 2014-09-30 19:16:21 -06:00
freem 620e5b2950 Merge branch 'master' of github.com:stepmania/stepmania 2014-09-30 17:37:38 -05:00
freem 8ca8ad4191 add missing 2d character metrics
I'm surprised people still use them, really
2014-09-30 17:37:00 -05:00
freem e9d26a4b7b add missing 2d character metrics
I'm surprised people still use them, really
2014-09-30 17:35:42 -05:00
freem f3faeefb26 StepMania 5 beta 4, for real this time. 2014-09-30 17:30:59 -05:00