Skip to content

Commit

Permalink
finishing up on #217
Browse files Browse the repository at this point in the history
  • Loading branch information
Cecil committed Mar 7, 2016
1 parent 19bfb45 commit 0cd93d0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
21 changes: 18 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@
to immplememt in Shoes 4.

=== New with 3.3.1
* Video widget. Big deal!
* Video widget. If you have VLC installed, Shoes will find it (and
you can tell Shoes where your VLC is). Once found you can use it.
You can not package VLC with you script however.
https://github.com/Shoes3/shoes3/issues/133
* Secondary packaging. Use an Shoes installer to install your app. Not
for the casual. Pretty damn clever so there's bugs.
for the casual. Pretty damn clever and confusing so there's likely to
be odd bugs.
https://github.com/Shoes3/shoes3/wiki/Custom-Install-Scripts
https://github.com/Shoes3/shoes3/wiki/Command-line-package
https://github.com/Shoes3/shoes3/issues/188
Expand All @@ -21,10 +24,22 @@
online docs you do find are not always up to date.

=== Fixed with 3.3.1
* Linux: fixed edit_box bug with Gtk >= 3.16
https://github.com/Shoes3/shoes3/issues/217
* OSX: Duplicate Shoes.app windows. Nasty if it happens to you.
Cshoes suffered from this bug. It works better now.
Cshoes suffered from this bug too. That works better now for OSX.
https://github.com/Shoes3/shoes3/issues/190
https://github.com/Shoes3/shoes3/issues/175
* Windows: ask_color crashes.
https://github.com/Shoes3/shoes3/issues/209

=== Developer issues for 3.3.1
* deleted gtk2 code. Video code will be included.
Many rakefiles were modified and are slightly less confusing.
* Windows: dependencies have changed - using Gtk 3.10.9
https://github.com/Shoes3/shoes3/wiki/Mingw-Dependencies
download from http://shoes.mvmanila.com/public/shoesdeps/mingw/ming-Shoes-3.3.1.tar.gz
if you need them - it's huge!

=== new with 3.3.0
* Uses Gtk3 (not gtk2) for Linux and Windows. This will change visuals
Expand Down
4 changes: 1 addition & 3 deletions shoes/native/gtkscrolledwindowalt.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ gtk_scrolled_window_alt_init(GtkScrolledWindow_Alt *scrolledwindowAlt)
/* This means that GtkScrolledWindow_Alt doesn't supply its own GdkWindow */
//gtk_widget_set_has_window(GTK_WIDGET(scrolledwindowAlt), FALSE);
gtk_widget_set_has_window(GTK_WIDGET(scrolledwindowAlt),
gtk_widget_get_has_window(GTK_WIDGET(&(scrolledwindowAlt->parent_instance))));


gtk_widget_get_has_window(GTK_WIDGET(&(scrolledwindowAlt->parent_instance))));

/* Initialize private members */
GtkScrolledWindow_AltPrivate *priv = GTK_SCROLLED_WINDOW_ALT_PRIVATE(scrolledwindowAlt);
Expand Down

0 comments on commit 0cd93d0

Please sign in to comment.