World: r3wp
[!REBOL2 Releases] Discuss 2.x releases
older newer | first last |
BrianH 4-Jan-2011 [2262] | True, you aren't advocating negativity - that's Shadwolf's domain :) |
Dockimbel 4-Jan-2011 [2263x3] | BrianH: the problem was seen on Windows, not sure about Linux 2.7.7, but I can confirm that the problem hasn't showed up on Linux 2.7.8. For the script, I have one from a customer showing up the problem, I need to shrink it and test if again first. |
BrianH: the problem happens with any script encapped with encmd and enpro 2.7.7.3.1. I just tried with: REBOL [ ] print "hello". The error pops up when the encapped exe is launched. An alert window displays: REBOL Internal Error: Boot error: 316. | |
Strangely, encmdview is not affected by this issue. | |
BrianH 4-Jan-2011 [2266] | I tested this script for all the encappers of 2.7.8 (not officially released yet) with this script: REBOL [] print "hello" halt All succeeded, and all apps worked. |
Dockimbel 4-Jan-2011 [2267] | Thanks, glad to hear that. |
Maxim 13-Jan-2011 [2268x5] | continued from REBOL3! group. they where not listed in RAMBO... I was just lucky to be online with Carl and it got fixed in a beta version of 2.7.7 in one afternoon with cyphre giving a more robust fix the day after. He also had the fix to another annoying issue which makes first item to follow a space in a text to affect the transparency. the more spaces the darker it gets. his even affects other items in a text ends with spaces ! though I wonder if that ended up in the 2.7.8 release ' :-/ |
they = AGG fixes (mainly one which crashes AGG if using several gradients in the same block). | |
Cyphre had the second fix, but Carl disapeared then and it never got included AFAIK, so it may be in 2.7.8 though Cyphre would have to confirm this. | |
oops... "his even affects other items in a text ends with spaces !" == this even affects other items (like a box) if it follows a text which ends with spaces! | |
I discovered the bug while typing in a text field and the color of the field changed whenever I typed in a space! It took me a while to realize it was a problem in AGG and not in my code... :-) | |
GrahamC 13-Jan-2011 [2273] | I am still arguing for US date inputs as an option ... sure we can fake it, but it would be nice to have |
BrianH 13-Jan-2011 [2274] | We don't have to fake it, we can make addon functions to handle this. That's what community libraries are for. |
GrahamC 13-Jan-2011 [2275x5] | eh?? |
This is Rebol2 we are talking abut | |
And I would like to see a moveable window for dates | |
A 50 year window is not just good enough | |
not just = just not | |
shadwolf 13-Jan-2011 [2280] | correcting the agg bugs in r2 ? i would like antialiasing better fonts more readable less bug around the handling of font fixed etc... but as it just conserns my particalr and singular needs and as noone likes me i think i can forget it .... a bugfix to agg matrix would be nice too .. I know i'm such an egoistic being etc ... |
GrahamC 13-Jan-2011 [2281x2] | Hey Shadwolf, you're still in my good books! |
Especially if you can turn area-tc into a generalised rich text area | |
shadwolf 13-Jan-2011 [2283x3] | give me glyph size to pixel size or an automated internal way to composite text on a line having different size and bang ritch text area will be possible ... |
with area-tc we cheated that part forcing usign unsigned char ( i like by the way not having to composite lines of text letters by letters | |
unsigne char = font-fixed | |
Maxim 13-Jan-2011 [2286x2] | I do the same in glass for the text field. |
(unfortunately) | |
Oldes 16-Jan-2011 [2288] | Quick Tour of Useful 2.7.8 Features - http://www.rebol.com/article/0505.html |
Claude 16-Jan-2011 [2289] | super merci thank you ;-) |
GrahamC 16-Jan-2011 [2290] | Yes, have mercy on us all ! |
Pekr 16-Jan-2011 [2291] | speed.r kind of becoming natural part of R2 and R3 - http://www.rebol.com/article/0506.html |
Ashley 16-Jan-2011 [2292] | On Mac 2.7.8.2.5: >> ls ** Script Error: path has no value ** Where: ls ** Near: switch type?/word :path [ unset! [] file! [change-dir path] string! [change-dir to-rebol-file path] w... >> source speed? test test ... (fills console) test test <code> |
Oldes 17-Jan-2011 [2293] | the source is correct.. there is just a big string wirh many "test" lines which is used in test :) |
BrianH 17-Jan-2011 [2294x2] | Ashley, that looks like the R3 source of LS, not the R2/Forward source. For that matter, the R2 source of LS on Windows doesn't look like it has changed either, and looks like the old R2 source. I'll look into it. |
I'll also look into fixing the SPEED? bug. | |
BrianH 18-Jan-2011 [2296] | Just remembered: The reason R3's LS wasn't backported to R2 was because its behavior wasn't settled yet. However, since there have been no changes in it for more than a year, and it's just a console-level formatting function, there should be no reason not to include it. In the meanwhile the R2/Forward version works fine. |
Maxim 18-Jan-2011 [2297x2] | it seems the AGG text bug was not pushed to the 2.7.8 release... |
I meant, the fix was not released. | |
PeterWood 6-Feb-2011 [2299] | Does 2.7.8 support get-words with paths? eg :obj/get-my-data |
ChristianE 6-Feb-2011 [2300] | >> o: context [test: 3] >> a: o >> :a/test == 3 |
Sunanda 6-Feb-2011 [2301] | I think Peter might be asking about this sort of usage case: o: context [test: 3] a: 'o b: 'test o/:b ;; this works == 3 :a/:b ;; this fails ** Script Error: Cannot use path on word! value ** Near: :a/:b get in get a b ;; this works, but it is hardly elegant == 3 |
Kaj 6-Feb-2011 [2302] | I thought :a/b is a get-path! as a whole? |
PeterWood 6-Feb-2011 [2303] | Here's my issue though I'm still running 2.7.5 >> f: func[][1] >> o: make object! [my-func: :f ] >> b: reduce ['my-func :f] == [my-func func [][1]] >> :o/my-func == 1 >> :b/my-func == 1 As you can see the value is being evaluated when using a "get-path!". Rebol3 simply presented the unevaluated value which is what I had expected. |
Ladislav 6-Feb-2011 [2304x2] | Then yjou did not notice, that in R3, it is a different datatype. |
(no get-word in the value) | |
PeterWood 6-Feb-2011 [2306] | No I didn't so let me rephrase my question. Is the get-path! type supported in 2.7.8? |
Ladislav 7-Feb-2011 [2307] | no, the datatype does not exist in R2 |
PeterWood 7-Feb-2011 [2308] | Thanks. |
GrahamC 12-Feb-2011 [2309] | am I the only one who notices that cut and paste is completely broken on Rebol2 new releases? |
BrianH 12-Feb-2011 [2310] | Which platform? |
GrahamC 12-Feb-2011 [2311] | Windows 7 |
older newer | first last |