World: r3wp
[!REBOL3]
older newer | first last |
Henrik 27-Aug-2010 [4682] | please try a directory |
AdrianS 27-Aug-2010 [4683] | I get "** Script error: cannot use rename on port! value" |
Henrik 27-Aug-2010 [4684] | ok, still broken |
AdrianS 27-Aug-2010 [4685] | are you going to log the issue? |
Henrik 27-Aug-2010 [4686] | it's already in curecode. |
Henrik 28-Aug-2010 [4687] | Finished the first round of RM Asset's build system. There will surely be some revisions required, but I've put the manual out for public study: http://rebol.hmkdesign.dk/files/r3/build/build-manual.html |
Steeve 28-Aug-2010 [4688] | nice work |
Demitri 28-Aug-2010 [4689] | Where is the latest 104 release? |
Steeve 28-Aug-2010 [4690] | DTC |
Demitri 28-Aug-2010 [4691] | DTC? |
Steeve 28-Aug-2010 [4692] | is there any related anounce ? |
Demitri 28-Aug-2010 [4693x2] | The blog talks about a 104 version. My last one is 100.x.x.x |
The blog talks about a 104 version. My last one is 100.x.x.x | |
Henrik 28-Aug-2010 [4695] | It's a guru only release and very unstable, but there is a link in the REBOL3 Host Kit group. |
Demitri 28-Aug-2010 [4696] | ok, thanks. |
Graham 28-Aug-2010 [4697] | You can build your own 104 release or download Robert's |
Steeve 28-Aug-2010 [4698] | Oh ! Didn't see the blog |
Demitri 28-Aug-2010 [4699] | ok, thanks guys. |
Steeve 28-Aug-2010 [4700] | I'm like Henrik, I use an old one cuurently, A95 |
Graham 28-Aug-2010 [4701] | the 104 you build works with go.r but Robert's doesn't |
Henrik 28-Aug-2010 [4702] | anything after A97 is pretty much bat country right now. |
Demitri 28-Aug-2010 [4703] | Is there graphics yet? |
Henrik 28-Aug-2010 [4704] | yes, barely working |
Steeve 28-Aug-2010 [4705] | barely ? lol |
Graham 28-Aug-2010 [4706] | depends ... |
Demitri 28-Aug-2010 [4707] | ok. |
Graham 28-Aug-2010 [4708] | old builds have draw, newer do not |
Steeve 28-Aug-2010 [4709] | But richtexts seem to work, as far i tested |
Graham 28-Aug-2010 [4710] | on what build? |
Steeve 28-Aug-2010 [4711] | I mean the robert's one |
Graham 28-Aug-2010 [4712] | for your IRC client? |
Steeve 28-Aug-2010 [4713x4] | see !REBOL Host kit |
it's not an IRC client | |
Shad made a wrong guess | |
It's only some demo styles | |
Graham 28-Aug-2010 [4717] | ok ... |
Steeve 28-Aug-2010 [4718] | but maybe it will be a real GUI |
Graham 28-Aug-2010 [4719] | SGUI ? |
Steeve 28-Aug-2010 [4720x2] | S for ? |
oh ! | |
Graham 28-Aug-2010 [4722x2] | Steeve .... |
I guess it should be GUIdS since the noun follows in french | |
Steeve 28-Aug-2010 [4724] | not bad :-) |
Graham 28-Aug-2010 [4725] | GUIDuS |
Steeve 28-Aug-2010 [4726x2] | I found GuiMove but it''s already taken |
it's sound like guimauve in french and it means marshmallow | |
Graham 28-Aug-2010 [4728] | hmm... tasty |
Henrik 1-Sep-2010 [4729x2] | I've created this function many times enough to think it should be standard: ; creates a string from a list of strings with human readable comma separation string-list: func [blk /local out] [ out: make string! 1000 forall blk [ append out form first blk unless tail? next blk [append out either tail? at blk 3 [" and "][", "]] ] out ] string-list ["a" "b" "c"] == "a, b and c" |
feel free to optimize | |
Graham 1-Sep-2010 [4731] | Why is this R3? |
older newer | first last |