shoes 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +12 -0
- data/CHANGELOG +29 -0
- data/COPYING +30 -0
- data/README.md +76 -0
- data/README.old +117 -0
- data/Rakefile +130 -0
- data/Rakefile.bk +651 -0
- data/app.yaml +7 -0
- data/bin/main.skel +104 -0
- data/bugs/issue-012e9468ddc7b0cb7e1503413a8a11c4f8707b67.yaml +21 -0
- data/bugs/issue-0711ff8b67baa63586f11d0096fee9dd4436bf58.yaml +23 -0
- data/bugs/issue-07f87998d93eb401e22395c11085676389b935c4.yaml +22 -0
- data/bugs/issue-0bff2d80008803cbc7efbcdacdc60ef2163664d2.yaml +22 -0
- data/bugs/issue-0c66f223d19efbca7b692f3b91961f407ad7abec.yaml +24 -0
- data/bugs/issue-183bc3c7a8f575aff2b24e0bf22aa0dfcc8e4fc2.yaml +29 -0
- data/bugs/issue-1bad1e60a04cb3adb6a8f3ded128af2e16b56ffe.yaml +18 -0
- data/bugs/issue-1f1d43f76bf4de79d7f94adbae6dd506a9d81633.yaml +41 -0
- data/bugs/issue-320924117cadb045cc91f2a6fca922b4d81d4bb5.yaml +20 -0
- data/bugs/issue-33e5c8355fbf65252ea9e939714651df8bd8cb3b.yaml +25 -0
- data/bugs/issue-36f7c8262a72bcd5e28cfa4ed29328b8237ea79b.yaml +20 -0
- data/bugs/issue-39bf04ee50c3bef67b89b8e9beb28657805587ce.yaml +18 -0
- data/bugs/issue-3e28ba7754f73d02ef416eef989af707a8c00f01.yaml +23 -0
- data/bugs/issue-3f638cc03f41f9c3fdf217355321f1563f8fee45.yaml +22 -0
- data/bugs/issue-41e48e14f1ef4f6deb69be68165d7dd3ffd99156.yaml +22 -0
- data/bugs/issue-4c9408166a2aa5dd333bbb05520deebf4ded08e0.yaml +22 -0
- data/bugs/issue-55c687e108ecd5aeb8e0d0aeb4294984f84acd3e.yaml +18 -0
- data/bugs/issue-5811d34692cc292717a58ec1df1f8948cf30d826.yaml +28 -0
- data/bugs/issue-5a7c1f59a0526f9cea7fb366867cf1e6ed8ef69d.yaml +22 -0
- data/bugs/issue-688a2c2566bef6a03efa57a4ae1f7cfa8fc74444.yaml +21 -0
- data/bugs/issue-78b16c7988ade2ef96e716fa8cb9a004bd4ced65.yaml +33 -0
- data/bugs/issue-804ee49f9800154eddf0650690c7a9bb5626253f.yaml +27 -0
- data/bugs/issue-807dd1c610b2e941a5d454e26b2eac27e89a0ab4.yaml +22 -0
- data/bugs/issue-822ee33ec11ebd25f90ea86e8438de7891e63aee.yaml +18 -0
- data/bugs/issue-82ff7152cebb8a1cb065b864cb4fe22de2328146.yaml +29 -0
- data/bugs/issue-856afbdcdd4970ad54b8ce4a6c017fbaab45f49d.yaml +31 -0
- data/bugs/issue-8d49e32fb21522651c67490adb4d80076dbb14e1.yaml +24 -0
- data/bugs/issue-91583359653a9d530c1e32be72d874d847a306e7.yaml +21 -0
- data/bugs/issue-af41a5229613172764e7d3c98431172db337053d.yaml +20 -0
- data/bugs/issue-bd9856b3788dd429c998a5af1b2aae8221cb80b7.yaml +28 -0
- data/bugs/issue-be22aef5c564fb7b5e9938343136a9cd6a2edb7b.yaml +22 -0
- data/bugs/issue-bf8697523c77c326e7e35fc82cf3dd739ae92310.yaml +27 -0
- data/bugs/issue-cdd4b4795f34d6ff46e56ece10f8216a4a5456b2.yaml +25 -0
- data/bugs/issue-d9bfb5581d745ef9deb3b9b2e08ef74d1cd43082.yaml +20 -0
- data/bugs/issue-e0ce2f687cc096f35715d28b0af88589f4ab6cc6.yaml +18 -0
- data/bugs/issue-e4b0aca4a10a574b333aeaecaaf221dbc5ed22c6.yaml +38 -0
- data/bugs/issue-f263746594b95ba778455730478ee8df60ee639d.yaml +22 -0
- data/bugs/project.yaml +72 -0
- data/builddeps.sh +102 -0
- data/fonts/Coolvetica.ttf +0 -0
- data/fonts/Lacuna.ttf +0 -0
- data/gemlib/shoes.rb +1 -0
- data/lib/shoes.rb +548 -0
- data/lib/shoes/cache.rb +54 -0
- data/lib/shoes/chipmunk.rb +35 -0
- data/lib/shoes/data.rb +39 -0
- data/lib/shoes/help.rb +468 -0
- data/lib/shoes/image.rb +25 -0
- data/lib/shoes/inspect.rb +128 -0
- data/lib/shoes/log.rb +48 -0
- data/lib/shoes/minitar.rb +986 -0
- data/lib/shoes/override.rb +38 -0
- data/lib/shoes/pack.rb +543 -0
- data/lib/shoes/search.rb +46 -0
- data/lib/shoes/setup.rb +329 -0
- data/lib/shoes/shy.rb +131 -0
- data/lib/shoes/shybuilder.rb +44 -0
- data/lib/shoes/version.rb +3 -0
- data/make/darwin/deps.vlc +12 -0
- data/make/darwin/dylibs.shoes +22 -0
- data/make/darwin/dylibs.video +11 -0
- data/make/darwin/env.rb +81 -0
- data/make/darwin/tasks.rb +105 -0
- data/make/linux/env.rb +65 -0
- data/make/linux/tasks.rb +61 -0
- data/make/make.rb +85 -0
- data/make/mingw/dlls +19 -0
- data/make/mingw/env.rb +69 -0
- data/make/mingw/tasks.rb +70 -0
- data/make/rakefile_common.rb +8 -0
- data/manual-snapshots/class-book.png +0 -0
- data/manual-snapshots/expert-definr.png +0 -0
- data/manual-snapshots/expert-funnies.png +0 -0
- data/manual-snapshots/expert-irb.png +0 -0
- data/manual-snapshots/expert-minesweeper.png +0 -0
- data/manual-snapshots/expert-othello.png +0 -0
- data/manual-snapshots/expert-pong.png +0 -0
- data/manual-snapshots/expert-tankspank.png +0 -0
- data/manual-snapshots/good-arc.png +0 -0
- data/manual-snapshots/good-clock.png +0 -0
- data/manual-snapshots/good-follow.png +0 -0
- data/manual-snapshots/good-reminder.png +0 -0
- data/manual-snapshots/good-vjot.png +0 -0
- data/manual-snapshots/simple-accordion.png +0 -0
- data/manual-snapshots/simple-anim-shapes.png +0 -0
- data/manual-snapshots/simple-anim-text.png +0 -0
- data/manual-snapshots/simple-arc.png +0 -0
- data/manual-snapshots/simple-bounce.png +0 -0
- data/manual-snapshots/simple-calc.png +0 -0
- data/manual-snapshots/simple-chipmunk.png +0 -0
- data/manual-snapshots/simple-control-sizes.png +0 -0
- data/manual-snapshots/simple-curve.png +0 -0
- data/manual-snapshots/simple-dialogs.png +0 -0
- data/manual-snapshots/simple-downloader.png +0 -0
- data/manual-snapshots/simple-draw.png +0 -0
- data/manual-snapshots/simple-editor.png +0 -0
- data/manual-snapshots/simple-form.png +0 -0
- data/manual-snapshots/simple-mask.png +0 -0
- data/manual-snapshots/simple-menu.png +0 -0
- data/manual-snapshots/simple-menu1.png +0 -0
- data/manual-snapshots/simple-rubygems.png +0 -0
- data/manual-snapshots/simple-slide.png +0 -0
- data/manual-snapshots/simple-sphere.png +0 -0
- data/manual-snapshots/simple-sqlite3.png +0 -0
- data/manual-snapshots/simple-timer.png +0 -0
- data/manual-snapshots/simple-video.png +0 -0
- data/platform/mac/Info.plist +55 -0
- data/platform/mac/build-deps.sh +658 -0
- data/platform/mac/command-manual.rb +1 -0
- data/platform/mac/deps-osx.patch +159 -0
- data/platform/mac/dmg_ds_store +0 -0
- data/platform/mac/pangorc +2 -0
- data/platform/mac/pkg-dmg +1447 -0
- data/platform/mac/shoes +31 -0
- data/platform/mac/shoes-launch +7 -0
- data/platform/mac/stub.m +178 -0
- data/platform/mac/version.plist +14 -0
- data/platform/msw/base.nsi +644 -0
- data/platform/msw/installer-1.bmp +0 -0
- data/platform/msw/installer-2.bmp +0 -0
- data/platform/msw/shoes.exe.manifest +17 -0
- data/platform/msw/shoes.ico +0 -0
- data/platform/msw/stub-inject.c +59 -0
- data/platform/msw/stub.c +271 -0
- data/platform/msw/stub32.h +14 -0
- data/platform/msw/stub32.rc +16 -0
- data/platform/nix/INSTALL +56 -0
- data/platform/nix/Makefile +144 -0
- data/platform/nix/shoes.launch +20 -0
- data/platform/skel.rb +27 -0
- data/rakefile_darwin.rb +7 -0
- data/rakefile_linux.rb +3 -0
- data/rakefile_mingw.rb +7 -0
- data/samples/class-book.rb +43 -0
- data/samples/class-book.yaml +387 -0
- data/samples/expert-definr.rb +23 -0
- data/samples/expert-funnies.rb +51 -0
- data/samples/expert-irb.rb +112 -0
- data/samples/expert-minesweeper.rb +267 -0
- data/samples/expert-othello.rb +319 -0
- data/samples/expert-pong.rb +62 -0
- data/samples/expert-tankspank.rb +385 -0
- data/samples/good-arc.rb +37 -0
- data/samples/good-clock.rb +51 -0
- data/samples/good-follow.rb +26 -0
- data/samples/good-reminder.rb +174 -0
- data/samples/good-vjot.rb +56 -0
- data/samples/simple-accordion.rb +75 -0
- data/samples/simple-anim-shapes.rb +17 -0
- data/samples/simple-anim-text.rb +13 -0
- data/samples/simple-arc.rb +23 -0
- data/samples/simple-bounce.rb +24 -0
- data/samples/simple-calc.rb +70 -0
- data/samples/simple-chipmunk.rb +26 -0
- data/samples/simple-control-sizes.rb +24 -0
- data/samples/simple-curve.rb +26 -0
- data/samples/simple-dialogs.rb +29 -0
- data/samples/simple-downloader.rb +27 -0
- data/samples/simple-draw.rb +13 -0
- data/samples/simple-editor.rb +28 -0
- data/samples/simple-form.rb +28 -0
- data/samples/simple-form.shy +0 -0
- data/samples/simple-mask.rb +21 -0
- data/samples/simple-menu.rb +31 -0
- data/samples/simple-menu1.rb +35 -0
- data/samples/simple-rubygems.rb +29 -0
- data/samples/simple-slide.rb +45 -0
- data/samples/simple-sphere.rb +28 -0
- data/samples/simple-sqlite3.rb +13 -0
- data/samples/simple-timer.rb +13 -0
- data/samples/simple-video.rb +13 -0
- data/shoes.gemspec +21 -0
- data/shoes/app.c +591 -0
- data/shoes/app.h +110 -0
- data/shoes/appwin32.h +13 -0
- data/shoes/appwin32.rc +28 -0
- data/shoes/canvas.c +2202 -0
- data/shoes/canvas.h +682 -0
- data/shoes/code.h +14 -0
- data/shoes/config.h +232 -0
- data/shoes/effects.c +243 -0
- data/shoes/effects.h +7 -0
- data/shoes/http.h +44 -0
- data/shoes/http/common.h +86 -0
- data/shoes/http/curl.c +259 -0
- data/shoes/http/nsurl.m +274 -0
- data/shoes/http/windownload.c +114 -0
- data/shoes/http/winhttp.c +216 -0
- data/shoes/http/winhttp.h +19 -0
- data/shoes/image.c +1020 -0
- data/shoes/internal.c +46 -0
- data/shoes/internal.h +63 -0
- data/shoes/native.h +110 -0
- data/shoes/native/cocoa.h +105 -0
- data/shoes/native/cocoa.m +1557 -0
- data/shoes/native/gtk.c +1257 -0
- data/shoes/native/windows.c +2392 -0
- data/shoes/ruby.c +5221 -0
- data/shoes/ruby.h +299 -0
- data/shoes/world.c +243 -0
- data/shoes/world.h +63 -0
- data/static/Shoes.icns +0 -0
- data/static/avatar.png +0 -0
- data/static/code_highlighter.js +188 -0
- data/static/code_highlighter_ruby.js +26 -0
- data/static/icon-debug.png +0 -0
- data/static/icon-error.png +0 -0
- data/static/icon-info.png +0 -0
- data/static/icon-warn.png +0 -0
- data/static/listbox_button1.png +0 -0
- data/static/listbox_button2.png +0 -0
- data/static/man-app.png +0 -0
- data/static/man-builds.png +0 -0
- data/static/man-builds1.png +0 -0
- data/static/man-editor-notepad.png +0 -0
- data/static/man-editor-osx.png +0 -0
- data/static/man-ele-background.png +0 -0
- data/static/man-ele-border.png +0 -0
- data/static/man-ele-button.png +0 -0
- data/static/man-ele-check.png +0 -0
- data/static/man-ele-editbox.png +0 -0
- data/static/man-ele-editline.png +0 -0
- data/static/man-ele-image.png +0 -0
- data/static/man-ele-listbox.png +0 -0
- data/static/man-ele-progress.png +0 -0
- data/static/man-ele-radio.png +0 -0
- data/static/man-ele-shape.png +0 -0
- data/static/man-ele-textblock.png +0 -0
- data/static/man-ele-video.png +0 -0
- data/static/man-intro-dmg.png +0 -0
- data/static/man-intro-exe.png +0 -0
- data/static/man-look-tiger.png +0 -0
- data/static/man-look-ubuntu.png +0 -0
- data/static/man-look-vista.png +0 -0
- data/static/man-run-osx.png +0 -0
- data/static/man-run-vista.png +0 -0
- data/static/man-run-xp.png +0 -0
- data/static/man-shot1.png +0 -0
- data/static/manual-en.txt +3531 -0
- data/static/manual-ja.txt +2825 -0
- data/static/manual.css +167 -0
- data/static/menu-corner1.png +0 -0
- data/static/menu-corner2.png +0 -0
- data/static/menu-gray.png +0 -0
- data/static/menu-left.png +0 -0
- data/static/menu-right.png +0 -0
- data/static/menu-top.png +0 -0
- data/static/shoes-dmg.jpg +0 -0
- data/static/shoes-icon-blue.png +0 -0
- data/static/shoes-icon.png +0 -0
- data/static/shoes-manual-apps.gif +0 -0
- data/static/shoes_main_window.png +0 -0
- data/static/stripe.png +0 -0
- data/static/stubs/blank.exe +0 -0
- data/static/stubs/blank.hfz +0 -0
- data/static/stubs/blank.run +375 -0
- data/static/stubs/cocoa-install +0 -0
- data/static/stubs/sh-install +49 -0
- data/static/stubs/shoes-stub-inject.exe +0 -0
- data/static/stubs/shoes-stub.exe +0 -0
- data/static/tutor-back.png +0 -0
- data/test/shoes_test.rb +8 -0
- data/test/test_helper.rb +25 -0
- data/use-deps +12 -0
- data/use-tmp-dep +8 -0
- metadata +509 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Visiting a URL you're already on causes a crash
|
3
|
+
desc: Again, on Leopard. From Shoes IRC.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-07-10 14:22:27.268438 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 41e48e14f1ef4f6deb69be68165d7dd3ffd99156
|
14
|
+
log_events:
|
15
|
+
- - 2008-07-10 14:22:28.212634 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-12-05 22:05:25.105072 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- ""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Bring new windows to the front
|
3
|
+
desc: On Windows at least, some windows don't launch in front.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-12-04 22:18:18.470435 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 4c9408166a2aa5dd333bbb05520deebf4ded08e0
|
14
|
+
log_events:
|
15
|
+
- - 2008-12-04 22:18:19.680990 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-12-05 22:07:37.415057 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- Couldn't reproduce. The problem of window centering on Linux was fixed.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Double-click events
|
3
|
+
desc: Add a double-click event, so people don't need to rig the click event.
|
4
|
+
type: :feature
|
5
|
+
component: shoes
|
6
|
+
release: Murder
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2008-11-26 17:57:22.968605 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 55c687e108ecd5aeb8e0d0aeb4294984f84acd3e
|
14
|
+
log_events:
|
15
|
+
- - 2008-11-26 17:57:24.844150 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
@@ -0,0 +1,28 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Native linking troubles on OS X server
|
3
|
+
desc: |-
|
4
|
+
On Sat, Feb 07, 2009 at 01:06:54PM +0000, Kyle King wrote:
|
5
|
+
> 1. I am running Raisins on OS X Server 10.5.6 and cannot build native
|
6
|
+
> extensions because of linking problems. Changing the CFLAGS variable
|
7
|
+
> in rbconfig.rb from
|
8
|
+
>
|
9
|
+
> -isysroot /Developer/SDKs/MacOSX10.3.9.sdk => -isysroot /Developer/
|
10
|
+
> SDKs/MacOSX10.5.sdk
|
11
|
+
>
|
12
|
+
> seemed to fix the problem for me, but might cause linking errors in
|
13
|
+
> older versions of OS X. Ideas?
|
14
|
+
type: :bugfix
|
15
|
+
component: shoes
|
16
|
+
release: Policeman
|
17
|
+
reporter: _why <why@whytheluckystiff.net>
|
18
|
+
status: :unstarted
|
19
|
+
disposition:
|
20
|
+
creation_time: 2009-02-10 18:56:24.792628 Z
|
21
|
+
references: []
|
22
|
+
|
23
|
+
id: 5811d34692cc292717a58ec1df1f8948cf30d826
|
24
|
+
log_events:
|
25
|
+
- - 2009-02-10 18:56:25.835191 Z
|
26
|
+
- _why <why@whytheluckystiff.net>
|
27
|
+
- created
|
28
|
+
- ""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Font smoothing on Windows
|
3
|
+
desc: Why is Pango giving me jagged fonts under ClearType?
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Murder
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2008-12-04 22:14:50.467880 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 5a7c1f59a0526f9cea7fb366867cf1e6ed8ef69d
|
14
|
+
log_events:
|
15
|
+
- - 2008-12-04 22:14:52.508656 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-12-05 22:06:54.332658 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- assigned to release Murder from Raisins
|
22
|
+
- Still researching. Tried creating a 32-bit DIB under windows. Tried changing anti-alias settings in pango and playing with fontconfig. I need to start with a very basic app and see if I can correct it. I suspect the problem is either how I'm creating the DC or how fonts are being loaded.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: No "verifying archive" message in the .run
|
3
|
+
desc: |-
|
4
|
+
On Thu, Feb 05, 2009 at 06:06:24PM +0100, Jan Martin wrote:
|
5
|
+
> I was irritated by the annoying "Verifying Archive" window that always
|
6
|
+
> opens when I try to run a .shy file on Ubuntu 8.04 Hardy Heron Linux.
|
7
|
+
type: :bugfix
|
8
|
+
component: shoes
|
9
|
+
release: Policeman
|
10
|
+
reporter: _why <why@whytheluckystiff.net>
|
11
|
+
status: :unstarted
|
12
|
+
disposition:
|
13
|
+
creation_time: 2009-02-10 18:50:25.908325 Z
|
14
|
+
references: []
|
15
|
+
|
16
|
+
id: 688a2c2566bef6a03efa57a4ae1f7cfa8fc74444
|
17
|
+
log_events:
|
18
|
+
- - 2009-02-10 18:50:27.382588 Z
|
19
|
+
- _why <why@whytheluckystiff.net>
|
20
|
+
- created
|
21
|
+
- ""
|
@@ -0,0 +1,33 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: don't allow elements to be added without at least an `append`
|
3
|
+
desc: |+
|
4
|
+
|
5
|
+
Well, the code should be:
|
6
|
+
|
7
|
+
Shoes.app do
|
8
|
+
button "add para" do
|
9
|
+
append { para "here" }
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
Adding the element without an append should throw an error.
|
14
|
+
|
15
|
+
type: :feature
|
16
|
+
component: shoes
|
17
|
+
release: Murder
|
18
|
+
reporter: _why <why@whytheluckystiff.net>
|
19
|
+
status: :closed
|
20
|
+
disposition: :fixed
|
21
|
+
creation_time: 2008-04-02 16:32:47.558732 Z
|
22
|
+
references: []
|
23
|
+
|
24
|
+
id: 78b16c7988ade2ef96e716fa8cb9a004bd4ced65
|
25
|
+
log_events:
|
26
|
+
- - 2008-04-02 16:32:49.933982 Z
|
27
|
+
- _why <why@whytheluckystiff.net>
|
28
|
+
- created
|
29
|
+
- ""
|
30
|
+
- - 2008-06-21 07:19:23.532061 Z
|
31
|
+
- _why <why@whytheluckystiff.net>
|
32
|
+
- closed issue with disposition fixed
|
33
|
+
- This was fixed a few checkins ago. Instead of disallowing it, I allowed it and fixed the segfault. So, elements can be added with or without `append`.
|
@@ -0,0 +1,27 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Cursor position in an edit_box
|
3
|
+
desc: |+
|
4
|
+
|
5
|
+
It would be useful to be able to get and set the current position of the cursor in an edit_box.
|
6
|
+
|
7
|
+
Suggested name:
|
8
|
+
|
9
|
+
@editbox.cursor_position
|
10
|
+
@editbox.cursor_position=
|
11
|
+
|
12
|
+
|
13
|
+
type: :feature
|
14
|
+
component: shoes
|
15
|
+
release: Murder
|
16
|
+
reporter: tcp
|
17
|
+
status: :unstarted
|
18
|
+
disposition:
|
19
|
+
creation_time: 2008-04-02 18:39:32.005746 Z
|
20
|
+
references: []
|
21
|
+
|
22
|
+
id: 804ee49f9800154eddf0650690c7a9bb5626253f
|
23
|
+
log_events:
|
24
|
+
- - 2008-04-02 18:39:34.439069 Z
|
25
|
+
- _why <why@whytheluckystiff.net>
|
26
|
+
- created
|
27
|
+
- ""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: OS X ask dialog incomplete
|
3
|
+
desc: Ever since switching to Cocoa, I forgot to walk over and do the `ask` dialog.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-07-10 14:21:07.611962 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 807dd1c610b2e941a5d454e26b2eac27e89a0ab4
|
14
|
+
log_events:
|
15
|
+
- - 2008-07-10 14:21:09.175930 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-11-26 17:20:03.878608 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- Done and also added :secret option.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Resize events
|
3
|
+
desc: Simply an event called `resize` that fires whenever the window is resized.
|
4
|
+
type: :feature
|
5
|
+
component: shoes
|
6
|
+
release: Murder
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2008-12-04 15:44:24.371122 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 822ee33ec11ebd25f90ea86e8438de7891e63aee
|
14
|
+
log_events:
|
15
|
+
- - 2008-12-04 15:44:25.293131 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
@@ -0,0 +1,29 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: For 'password' mode, accept :secret style for Ask dialog?
|
3
|
+
desc: |+
|
4
|
+
|
5
|
+
edit_line can take a style of :secret => TRUE for obscured input.
|
6
|
+
|
7
|
+
Could the Ask dialog also take a :secret setting?
|
8
|
+
|
9
|
+
Use_case: ask("What is your Credit Card PIN?", :secret => TRUE)
|
10
|
+
|
11
|
+
results in - What is your Credit Card PIN? [**** ]
|
12
|
+
|
13
|
+
Or, since the dialogs only accept a single argument for simplicity, have an 'ask_obscured' variant of the dialog.
|
14
|
+
|
15
|
+
type: :feature
|
16
|
+
component: shoes
|
17
|
+
release: Feinstein
|
18
|
+
reporter: DeeJay <smartgpx@gmail.com>
|
19
|
+
status: :unstarted
|
20
|
+
disposition:
|
21
|
+
creation_time: 2008-04-02 16:27:46.117788 Z
|
22
|
+
references: []
|
23
|
+
|
24
|
+
id: 82ff7152cebb8a1cb065b864cb4fe22de2328146
|
25
|
+
log_events:
|
26
|
+
- - 2008-04-02 16:27:59.069402 Z
|
27
|
+
- _why <why@whytheluckystiff.net>
|
28
|
+
- created
|
29
|
+
- ""
|
@@ -0,0 +1,31 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Simple menus
|
3
|
+
desc: |-
|
4
|
+
A first take at menu support in Shoes. Likely this would only activate in
|
5
|
+
standalone mode.
|
6
|
+
|
7
|
+
menu "File" do
|
8
|
+
menu("(O)pen...") { ask_open_file }
|
9
|
+
menu("(A)bout") { about_dialog }
|
10
|
+
bar
|
11
|
+
menu("E(x)it") { close }
|
12
|
+
end
|
13
|
+
|
14
|
+
Something like that.
|
15
|
+
|
16
|
+
Also, add the status bar, if anyone wants to use it.
|
17
|
+
type: :feature
|
18
|
+
component: shoes
|
19
|
+
release: Murder
|
20
|
+
reporter: _why <why@whytheluckystiff.net>
|
21
|
+
status: :unstarted
|
22
|
+
disposition:
|
23
|
+
creation_time: 2008-12-03 16:12:55.560559 Z
|
24
|
+
references: []
|
25
|
+
|
26
|
+
id: 856afbdcdd4970ad54b8ce4a6c017fbaab45f49d
|
27
|
+
log_events:
|
28
|
+
- - 2008-12-03 16:12:57.443482 Z
|
29
|
+
- _why <why@whytheluckystiff.net>
|
30
|
+
- created
|
31
|
+
- ""
|
@@ -0,0 +1,24 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: mouse wheel is a mess on osx
|
3
|
+
desc: |-
|
4
|
+
"it seems to kind of wait for you to scroll a certain amount of pixels
|
5
|
+
and then suddenly scrolls a huge chunk"
|
6
|
+
type: :bugfix
|
7
|
+
component: shoes
|
8
|
+
release: Raisins
|
9
|
+
reporter: _why <why@whytheluckystiff.net>
|
10
|
+
status: :closed
|
11
|
+
disposition: :fixed
|
12
|
+
creation_time: 2008-07-11 13:08:40.957025 Z
|
13
|
+
references: []
|
14
|
+
|
15
|
+
id: 8d49e32fb21522651c67490adb4d80076dbb14e1
|
16
|
+
log_events:
|
17
|
+
- - 2008-07-11 13:08:42.165320 Z
|
18
|
+
- _why <why@whytheluckystiff.net>
|
19
|
+
- created
|
20
|
+
- ""
|
21
|
+
- - 2008-09-16 18:41:09.297777 Z
|
22
|
+
- _why <why@whytheluckystiff.net>
|
23
|
+
- closed issue with disposition fixed
|
24
|
+
- commit cb48846 on sep 8th, found a casting error in my use of deltaY.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Broken resolv.conf symlink crashes Shoes applications
|
3
|
+
desc: |-
|
4
|
+
Config.parse_resolv_conf returns a nil if /etc/resolv.conf is a symlink to a non-existent file. This occurs on OS X when it is not attached to any network.
|
5
|
+
|
6
|
+
So, then, lazy_initialize falls over on line 794, because config_hash is nil, and crashes any Shoe app trying to run.
|
7
|
+
type: :bugfix
|
8
|
+
component: shoes
|
9
|
+
release:
|
10
|
+
reporter: Jeff Hodges <jeff@somethingsimilar.com>
|
11
|
+
status: :unstarted
|
12
|
+
disposition:
|
13
|
+
creation_time: 2008-09-15 07:07:52.742605 Z
|
14
|
+
references: []
|
15
|
+
|
16
|
+
id: 91583359653a9d530c1e32be72d874d847a306e7
|
17
|
+
log_events:
|
18
|
+
- - 2008-09-15 07:07:58.790699 Z
|
19
|
+
- Jeff Hodges <jeff@somethingsimilar.com>
|
20
|
+
- created
|
21
|
+
- ""
|
@@ -0,0 +1,20 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Windows keyboard (French slash and Satoshi's Alt-A)
|
3
|
+
desc: |-
|
4
|
+
Many windows keyboard issues brought up by Satoshi Asakawa and Lionel Orry on Dec 5th.
|
5
|
+
Refer to the shoes lists.
|
6
|
+
type: :bugfix
|
7
|
+
component: shoes
|
8
|
+
release: Murder
|
9
|
+
reporter: _why <why@whytheluckystiff.net>
|
10
|
+
status: :unstarted
|
11
|
+
disposition:
|
12
|
+
creation_time: 2008-12-05 22:02:20.006655 Z
|
13
|
+
references: []
|
14
|
+
|
15
|
+
id: af41a5229613172764e7d3c98431172db337053d
|
16
|
+
log_events:
|
17
|
+
- - 2008-12-05 22:02:21.231661 Z
|
18
|
+
- _why <why@whytheluckystiff.net>
|
19
|
+
- created
|
20
|
+
- ""
|
@@ -0,0 +1,28 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Binject problems on OS X when building EXEs
|
3
|
+
desc: |-
|
4
|
+
> 2. In Raisins, running on Windows XP, the packager fails properly
|
5
|
+
> create an EXE for source code containing windows line returns.
|
6
|
+
>
|
7
|
+
> As far as I can tell, the packager is removing all "\r"s from the
|
8
|
+
> source files being added to the EXE. However, the length of the file
|
9
|
+
> is not adjusted, resulting in an extra byte of garbage for each "\r"
|
10
|
+
> appended to the source file when decompressed by Shoes for execution.
|
11
|
+
>
|
12
|
+
> The user sees a message like "Illegal characters \312 \112 ..." in the
|
13
|
+
> shoes console when trying to execute the EXE.
|
14
|
+
type: :bugfix
|
15
|
+
component: shoes
|
16
|
+
release: Policeman
|
17
|
+
reporter: _why <why@whytheluckystiff.net>
|
18
|
+
status: :unstarted
|
19
|
+
disposition:
|
20
|
+
creation_time: 2009-02-10 18:59:11.553167 Z
|
21
|
+
references: []
|
22
|
+
|
23
|
+
id: bd9856b3788dd429c998a5af1b2aae8221cb80b7
|
24
|
+
log_events:
|
25
|
+
- - 2009-02-10 18:59:12.860215 Z
|
26
|
+
- _why <why@whytheluckystiff.net>
|
27
|
+
- created
|
28
|
+
- ""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: confirm opens a confirmation dialog, but returns nil
|
3
|
+
desc: This is on Leopard. Reported on IRC by Jenna.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-07-10 14:21:45.758870 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: be22aef5c564fb7b5e9938343136a9cd6a2edb7b
|
14
|
+
log_events:
|
15
|
+
- - 2008-07-10 14:21:46.541947 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-11-26 17:27:55.495713 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- Also done.
|
@@ -0,0 +1,27 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: add-scale the height or width of an image if only one dimension is supplied
|
3
|
+
desc: "It would be nice if image(), when given a width, \n\
|
4
|
+
or a height, but not both, would size the image to that width/height, and \n\
|
5
|
+
size the other dimension automatically to maintain aspect ratio. For \n\
|
6
|
+
example: \n\n\
|
7
|
+
If I had a png which is 500x1000 pixels big, and I do image('bigpony.png', \n\
|
8
|
+
:width => 200), it would size height to 400."
|
9
|
+
type: :feature
|
10
|
+
component: shoes
|
11
|
+
release: Raisins
|
12
|
+
reporter: _why <why@whytheluckystiff.net>
|
13
|
+
status: :closed
|
14
|
+
disposition: :fixed
|
15
|
+
creation_time: 2008-07-02 15:15:36.994992 Z
|
16
|
+
references: []
|
17
|
+
|
18
|
+
id: bf8697523c77c326e7e35fc82cf3dd739ae92310
|
19
|
+
log_events:
|
20
|
+
- - 2008-07-02 15:15:38.264780 Z
|
21
|
+
- _why <why@whytheluckystiff.net>
|
22
|
+
- created
|
23
|
+
- ""
|
24
|
+
- - 2008-11-26 17:18:26.485325 Z
|
25
|
+
- _why <why@whytheluckystiff.net>
|
26
|
+
- closed with disposition fixed
|
27
|
+
- http://github.com/why/shoes/commit/2d2b1aa
|