Earlier this year
-
r392
(warning on my init change in sound.py) committed by daniel.zingaro
- warning on my init change in sound.py
warning on my init change in sound.py
-
r391
(fixed get_pixels docstring) committed by daniel.zingaro
- fixed get_pixels docstring
fixed get_pixels docstring
-
r390
(-Fixed media.get_max_sample and media.get_min_sample (they l...) committed by daniel.zingaro
- -Fixed media.get_max_sample and media.get_min_sample (they lacked a 'return')
-Made normalize fast again, using numpy multiplication
-added (fast) __eq__ to sounds
-Fixed media.get_max_sample and media.get_min_sample (they lacked a 'return')
-Made normalize fast again, using numpy multiplication
-added (fast) __eq__ to sounds
-
r389
(Samples now have an __cmp__. The main reason is so that max(...) committed by daniel.zingaro
- Samples now have an __cmp__. The main reason is so that max(snd) and min(snd) are reliable.
Samples now have an __cmp__. The main reason is so that max(snd) and min(snd) are reliable.
-
r388
(sound samples now have __cmp__ so that max(snd) for a sound ...) committed by daniel.zingaro
- sound samples now have __cmp__ so that max(snd) for a sound snd works
sound samples now have __cmp__ so that max(snd) for a sound snd works
-
-
-
r386
(Fixed docstring in picture.py) committed by daniel.zingaro
- Fixed docstring in picture.py
Fixed docstring in picture.py
-
r385
(fixed docstring for iterator) committed by daniel.zingaro
- fixed docstring for iterator
fixed docstring for iterator
-
r384
(Fixed definition of green color) committed by daniel.zingaro
- Fixed definition of green color
Fixed definition of green color
-
r383
(-Changed init_sound to use 22050 mono instead of 44100 stere...) committed by daniel.zingaro
- -Changed init_sound to use 22050 mono instead of 44100 stereo by default; manually processing sounds
is too slow otherwise
-Fixed normalize function (did not use floating-point, so the multiplicative factor was incorrect)
-Fixed calculation of octave frequencies
-Made note frequencies more precise
-Moved pygame.mixer.init to main thread instead of mw thread. This solves the "mixer not
initialized" error that occurs if you try to play a sound before the mw thread finishes initializing
the mixer; I am not sure if this is a general solution!
-Changed init_sound to use 22050 mono instead of 44100 stereo by default; manually processing sounds
is too slow otherwise
-Fixed normalize function (did not use floating-point, so the multiplicative factor was incorrect)
-Fixed calculation of octave frequencies
-Made note frequencies more precise
-Moved pygame.mixer.init to main thread instead of mw thread. This solves the "mixer not
initialized" error that occurs if you try to play a sound before the mw thread finishes initializing
the mixer; I am not sure if this is a general solution!
-
r382
(Fixed create_note typo in media.py) committed by daniel.zingaro
- Fixed create_note typo in media.py
Fixed create_note typo in media.py
Older
-
r381
(fixed scrollbars for choices dialog) committed by ootz0rz
- fixed scrollbars for choices dialog
fixed scrollbars for choices dialog
-
r380
(recreated ask/say dialogs using tkinter instead of wx as bes...) committed by ootz0rz
- recreated ask/say dialogs using tkinter instead of wx as best tk lets me
recreated ask/say dialogs using tkinter instead of wx as best tk lets me
-
r379
(updated installer scripts) committed by ootz0rz
- updated installer scripts
updated installer scripts
-
r378
(Installer for Python, WingIDE, and all required modules.) committed by ootz0rz
- Installer for Python, WingIDE, and all required modules.
Installer for Python, WingIDE, and all required modules.
-
r377
(pygraphics installer for windows) committed by campbell.jen
- pygraphics installer for windows
pygraphics installer for windows
-
r376
(reverting to correct verions) committed by campbell.jen
- reverting to correct verions
reverting to correct verions
-
-
r374
(touched setup to try checking in.) committed by pgries
- touched setup to try checking in.
touched setup to try checking in.
-
-
r372
(couldn't figure out how to replace these directories.) committed by C.J.Maddison
- couldn't figure out how to replace these directories.
couldn't figure out how to replace these directories.
-
r371
(minimum window size for show() is now 150 X 150 pixels
) committed by C.J.Maddison
- minimum window size for show() is now 150 X 150 pixels
minimum window size for show() is now 150 X 150 pixels
-
r370
(Added media.py global functions to help with sound editing. ...) committed by C.J.Maddison
- Added media.py global functions to help with sound editing. Sounds have minor documentation changes.
Added media.py global functions to help with sound editing. Sounds have minor documentation changes.
-
r369
(Added show_external to Pictures, close_inspect to both Pictu...) committed by C.J.Maddison
- Added show_external to Pictures, close_inspect to both Pictures and Sound, added relevant
show/close/update/inspect global functions for Pictures and Sound to media.
Added show_external to Pictures, close_inspect to both Pictures and Sound, added relevant
show/close/update/inspect global functions for Pictures and Sound to media.
-
-
r367
(A small readme for the modules of pygraphics.) committed by C.J.Maddison
- A small readme for the modules of pygraphics.
A small readme for the modules of pygraphics.
-
-
r365
(copied back into sandbox) committed by C.J.Maddison
- copied back into sandbox
-
r364
(PictureInspector now carries it's own copy of the picture ar...) committed by C.J.Maddison
- PictureInspector now carries it's own copy of the picture around.
PictureInspector now carries it's own copy of the picture around.
-
-
r362
(Updated to work with newer picture stuff) committed by C.J.Maddison
- Updated to work with newer picture stuff
Updated to work with newer picture stuff
-
-
-
r359
(Added support for mediawindows thread. Added init_sound() th...) committed by C.J.Maddison
- Added support for mediawindows thread. Added init_sound() that initializes the pygame.mixer. This
must be run before using Sound objects. It also initializes the mediawindows thread.
Added support for mediawindows thread. Added init_sound() that initializes the pygame.mixer. This
must be run before using Sound objects. It also initializes the mediawindows thread.
-
r358
(Added support for threaded show window and picture inspector...) committed by C.J.Maddison
- Added support for threaded show window and picture inspector. Works with the mediawindows thread.
Added init_picture() function which initializes the mediawindows thread and set PIC_INITIALIZED to
true. This is necessary to use Picture objects.
Added support for threaded show window and picture inspector. Works with the mediawindows thread.
Added init_picture() function which initializes the mediawindows thread and set PIC_INITIALIZED to
true. This is necessary to use Picture objects.
-
r357
(Still VERY messy. Contains the thread to run the show window...) committed by C.J.Maddison
- Still VERY messy. Contains the thread to run the show window off of, the graphics support for the
show window, and the picture inspector. Works on Mac, still needs testing on windows and linux.
Still VERY messy. Contains the thread to run the show window off of, the graphics support for the
show window, and the picture inspector. Works on Mac, still needs testing on windows and linux.
-
r356
(Added threaded show window support. When imported media now ...) committed by C.J.Maddison
- Added threaded show window support. When imported media now initializes picture, sound, and
mediawindows modules. This starts the mediawindows thread and the pygame.mixer
Added threaded show window support. When imported media now initializes picture, sound, and
mediawindows modules. This starts the mediawindows thread and the pygame.mixer
-
r355
(added PictureInspector, Pictures and Sounds no longer initia...) committed by C.J.Maddison
- added PictureInspector, Pictures and Sounds no longer initialize the modules, added documentation to
mediawindows
added PictureInspector, Pictures and Sounds no longer initialize the modules, added documentation to
mediawindows
-
r354
(Sounds and Pictures now initialize picture or sound module i...) committed by C.J.Maddison
- Sounds and Pictures now initialize picture or sound module if it is not already inititalized.
Sounds and Pictures now initialize picture or sound module if it is not already inititalized.
-
r353
(Cool things to check out!) committed by C.J.Maddison
- Cool things to check out!
Cool things to check out!
-
r352
(changed from color import * to import color) committed by C.J.Maddison
- changed from color import * to import color
changed from color import * to import color
-
-
r350
(working threaded window) committed by C.J.Maddison
- working threaded window
-
-
-
-
r346
(got rid of import graphics) committed by C.J.Maddison
- got rid of import graphics
got rid of import graphics
-
-
|