New 3.0 beta release

0 views
Skip to first unread message

Richard Jones

unread,
Jun 30, 2008, 11:08:55 PM6/30/08
to bruce-users
This release has some cool new stuff and some fixes:

- IMPORTANT: "decoration" is now called "layout"
- mention docutils requirement
- fixed page count / timer display
- allow default style to affect footer style
- display is now managed using Cocos
- add page transitions (experimental)
- nicely handle resize when switching to fullscreen
- fixed bullet symbol consistency
- fixed sub-list first item indentation
- better detection of mouse click vs. drag

Note the requirements have changed - see the README.


Richard

MishaS

unread,
Jul 2, 2008, 1:20:09 AM7/2/08
to bruce-users
On Jul 1, 6:08 am, Richard Jones <r1chardj0...@gmail.com> wrote:
> This release has some cool new stuff and some fixes:
That's great.

I made a really simple patch to show slide number in the window title
(seeing Slide 1 all the time is a bit misleading). :)

--
Misha

PS Since the google groups interface does not seem to allow attach
files, please see it inline :-/

----- cut here -----

Index: bruce/presentation.py
===================================================================
--- bruce/presentation.py (revision 139)
+++ bruce/presentation.py (working copy)
@@ -28,7 +28,7 @@
def start_presentation(self):
self.page = self.pages[self.page_num]
self.page.desired_size = self.desired_size
- director.window.set_caption('Presentation: Slide 1')
+ director.window.set_caption('Presentation: Slide %d' %
(self.page_num+1))
self.dispatch_event('on_page_changed', self.page,
self.page_num)
director.run(self.page)

@@ -46,7 +46,7 @@
else:
director.replace(page)

- director.window.set_caption('Presentation: Slide 1')
+ director.window.set_caption('Presentation: Slide %d' %
(self.page_num+1))
self.dispatch_event('on_page_changed', self.page,
self.page_num)

def on_resize(self, viewport_width, viewport_height):

Richard Jones

unread,
Jul 2, 2008, 1:57:06 AM7/2/08
to bruce...@googlegroups.com
On Wed, Jul 2, 2008 at 3:20 PM, MishaS <mikhail...@gmail.com> wrote:
I made a really simple patch to show slide number in the window title
(seeing Slide 1 all the time is a bit misleading). :)

Fixed, thanks.


     Richard
 
Reply all
Reply to author
Forward
0 new messages