pygame is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

pygame / pygame http://pygame.org/

Clone this repository (size: 15.4 MB): HTTPS / SSH
hg clone https://bitbucket.org/pygame/pygame
hg clone ssh://hg@bitbucket.org/pygame/pygame

Searching for commits

Mercurial supports a functional language for selecting a set of revisions.

The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.

Identifiers such as branch names must be quoted with single or double quotes if they contain characters outside of [._a-zA-Z0-9\x80-\xff] or if they match one of the predefined predicates.

Prefix operators

not x
Changesets not in x. Short form is ! x.

Infix operators

x::y

A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to ancestors(y), if the second is left out it is equivalent to descendants(x).

An alternative syntax is x..y.

x:y
All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
x and y
The intersection of changesets in x and y. Short form is x & y.
x or y
The union of changesets in x and y. There are two alternative short forms: x | y and x + y.
x - y
Changesets in x but not in y.

Predicates

all()
All changesets, the same as 0:tip.
ancestor(single, single)
Greatest common ancestor of the two changesets.
ancestors(set)
Changesets that are ancestors of a changeset in set.
author(string)
Alias for user(string).
bookmark([name])
The named bookmark or all bookmarks.
branch(set)
All changesets belonging to the branches of changesets in set.
children(set)
Child changesets of changesets in set.
closed()
Changeset is closed.
date(interval)
Changesets within the interval, see hg help dates.
descendants(set)
Changesets which are descendants of changesets in set.
file(pattern)
Changesets affecting files matched by pattern.
follow()
An alias for ::. (ancestors of the working copy's first parent).
grep(regex)
Like keyword(string) but accepts a regex. Use grep(r'...') to ensure special escape characters are handled correctly.
head()
Changeset is a named branch head.
heads(set)
Members of set with no children in set.
id(string)
Revision non-ambiguously specified by the given hex string prefix.
keyword(string)
Search commit message, user name, and names of changed files for string.
limit(set, n)
First n members of set.
max(set)
Changeset with highest revision number in set.
merge()
Changeset is a merge changeset.
min(set)
Changeset with lowest revision number in set.
p1([set])
First parent of changesets in set, or the working directory.
p2([set])
Second parent of changesets in set, or the working directory.
parents([set])
The set of all parents for all changesets in set, or the working directory.
present(set)
An empty set, if any revision in set isn't found; otherwise, all revisions in set.
rev(number)
Revision with the given numeric identifier.
roots(set)
Changesets with no parent changeset in set.
tag(name)
The specified tag by name, or all tagged revisions if no name is given.
user(string)
User name is string.

Commits 1–30 of 146

Author Revision Comments Message Labels Date
zeroth 7390825a492a Merged with trunk rev 2613, and moved interactive movie test and sample
Branch
tylerthemovie
zeroth 0d50cb605e0f Pre-check in before merging with trunk. Fixed video display issues
Branch
tylerthemovie
zeroth 74fd9b73cbdb Added new doc file as per Vicent Martin's suggestion in the doc folder.
Branch
tylerthemovie
zeroth 6933dadfea7a Fixed surface issue. Surfaces now don't get resized. It is recommended
Branch
tylerthemovie
zeroth 48a2aa6a7909 Added video display destruction on a stop. However, replaying causes a
Branch
tylerthemovie
zeroth 176b6713022b Fixed memory leak issue with Pascal's test video. Apparently, the video
Branch
tylerthemovie
zeroth ae3b4d5de516 Fixed sound issues(hopefully). I did not hear static on my end, and
Branch
tylerthemovie
zeroth ac3cad651740 Successful compilation and installation state for module, just uncomment _movie line in Setup.in
Branch
tylerthemovie
zeroth 971bac1f4156 Began work on modifications for Windows compatibility.
Branch
tylerthemovie
zeroth 3aee3d0cb59b Merged with latest trunk rev.
Branch
tylerthemovie
zeroth 14984a35ea25 Made change to surface display code(no more skipped frames)
Branch
tylerthemovie
zeroth 77cf3e2a0594 Fixed seek issues, memory load issue, fixed bug in the movie_test. Added
Branch
tylerthemovie
zeroth 1f0322881527 Conditional fix of sound system causes much better syncing. I /think/ it is slightly off in some places, but gets synced back very quickly. Must test.
Branch
tylerthemovie
zeroth 6034b3853a0e Modifications to try to solve desync problem.
Branch
tylerthemovie
zeroth f9b5b153a0e6 Made improvements to sound/video syncing... but they eventually desync
Branch
tylerthemovie
zeroth 4e0f3485dd6d Added filepath checks. Also began working on desync issue... corrected
Branch
tylerthemovie
zeroth 71090b302fb3 Fixed a few more small bugs, created a macro which makes command
Branch
tylerthemovie
zeroth 3d4d167457b7 Tested expansion of command queue to all interactions, fixed several
Branch
tylerthemovie
zeroth ad8a925f040f Finished expansion of CommandQueue. Results in a much more stable
Branch
tylerthemovie
zeroth cdd6aaff3af8 Finished addition of CommandQueue, will add ytop, xleft, surface stuff
Branch
tylerthemovie
zeroth 9ac8fde3dccb Did some basic if conditionals on library version numbers to work around
Branch
tylerthemovie
zeroth ec60de760120 Removed audioconvert.h as it was not needed.
Branch
tylerthemovie
zeroth 19252bbc68bb Added seeking, but discovered desync issue. Working on solving it...
Branch
tylerthemovie
zeroth 91ba9c5ce58a Began working on seeking.
Branch
tylerthemovie
zeroth b2de91d85b9a Fixed slowdown issue that happened on odd-numbered playthroughs
Branch
tylerthemovie
zeroth f6c48462f121 Finished trunk rev merge 2544
Branch
tylerthemovie
Lenard Lindstrom 29258e808483 addition of ffmpeg to Windows deps build chain; incomplete
Branch
tylerthemovie
Lenard Lindstrom 2543b6fe6bfd unpdate Windows deps build chain in preporation to adding ffmpeg
Branch
tylerthemovie
zeroth 8480a420d59c Finished small stats package for checking render times. Surface
Branch
tylerthemovie
zeroth ebe7aa069c34 Updated backends to (mostly) mirror the functionality of the finished
Branch
tylerthemovie
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. »