r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!REBOL2 Releases] Discuss 2.x releases

BrianH
7-Jun-2010
[1732]
When last I heard there was a lot of new stuff ready for release. 
Every time I check there is more, such as the recent graphics fixes. 
Eventually it will be dalayed enough that the stuff that was being 
put off until the next couple releases will be done too. Afaik, 2.7.8 
could have been released a month ago, though the graphics fixes are 
great too.
Graham
7-Jun-2010
[1733]
And have you actually reviewed the htt protocol changes I made yet??
BrianH
7-Jun-2010
[1734]
Yes, and later this week I would like to ask you some questions.
Graham
7-Jun-2010
[1735]
This is something I do find annoying http://rebol.wik.is/IBM_Cloud/Extend-cloud.r

I have to patch http each time I do any REST stuff
BrianH
7-Jun-2010
[1736]
At this rate, HTTP and the rest of the protocols will be patched 
in the next release. All of the R2/Forward changes have been submitted 
already, months ago.
Geomol
8-Jun-2010
[1737]
ICarii, as mentioned, I made a floodfill in my paint program. You 
can try it with:

do http://www.fys.ku.dk/~niclasen/rebol/canvas099.r
(Works best under Windows.)


On a modern computer, it fill with about the same speed in REBOL 
as DPaint did on an A500 computer 20+ years ago. I also made a rebcode 
version, which fills the entire screen almost instantly. That version 
isn't out there.
ICarii
8-Jun-2010
[1738]
Very nice Geomol!  Impressive speed - quite a bit faster than mine 
(i need to see what i messed up ;) )
Anton
9-Jun-2010
[1739]
A filling algorithm is a nice puzzle.
Steeve
9-Jun-2010
[1740x2]
I think too
But it bothers me to have to decipher big code.
I'll like to see some snippets instead.
Geomol
9-Jun-2010
[1742x2]
ICarii, what I did, was studying DPaint filling the screen, and then 
figured out, how to do it. It's a scanline filling algorithm. In 
short, it goes like:


- Search left and right for other colors from the point clicked on 
screen. That defines the first scanline.

- Look at lines above and below starting from the end-points of the 
first line. This defines 4 new points to look at.

- Again search left and right for other colors. Make sure, the whole 
area between the end-points are searched.
- Put it all in some list, and continue, until the list is empty.
A good way to test it, is making a lot of vertical lines on the screen 
with spaces in between, and not drawing them all the way to the border 
of the image. Then fill from some point at the center of the screen 
and see, how the filling is being split up into many separate fillings.
ICarii
10-Jun-2010
[1744]
ah - i went with a push/pop stack and a 4 point scan
Graham
18-Jun-2010
[1745]
http://www.rebol.com/priorities.html


says 2.7.8 is "(Status: delayed, pending sufficient user-base response 
and contributions related to installation)"


Who can progress the installer?  That looks like it is holding this 
up ...
AdrianS
18-Jun-2010
[1746]
is the installer problem just under Windows?
Graham
18-Jun-2010
[1747]
I believe so ...
Robert
19-Jun-2010
[1748]
Is it required at all?
BrianH
19-Jun-2010
[1749x2]
Yes, for file associations and the View desktop. R2 View, like AltME, 
is designed for Win9x behavior right now. It doesn't work well with 
Win2k and above.
The installer work has been delayed by Carl - he must have forgotten 
:(
Endo
20-Jun-2010
[1751]
is there any plan to remove viewtop from R2/View? To reduce the size. 
I always use View but almost never used viewtop.
second, there will be viewtop on R3?
Henrik
20-Jun-2010
[1752]
No, the Viewtop will not be part of R3. It will be replaced with 
ReBrowse.
Endo
20-Jun-2010
[1753]
Any plan to remove it from R2? It can be loadable from web by a function. 
Not a big issue ofcourse, we just won't need for those public, desktop 
etc. folders anymore and gain some kilobytes.
Henrik
20-Jun-2010
[1754]
I'm not sure there are plans to remove it.
BrianH
20-Jun-2010
[1755]
There are no plans at the moment to remove the viewtop from R2. It 
actually doesn't take up much space in the program.
BrianH
24-Jun-2010
[1756]
Work will be moving ahead soon on the R2 installer. Please post any 
information you have about installation issues in modern Windows 
versions (or links to sites with such), or about equivalent file 
location issues for other supported platforms. This will affect placement 
of the program, user-specific placement of the viewtop files, and 
(on Windows) file associations. Windows needs 4 installation profiles 
- let's hope that things can stay simpler on other platforms.
Graham
27-Jun-2010
[1757]
Any news here?
BrianH
27-Jun-2010
[1758x3]
Not yet. Since Thursday, i have had no time to program. Since noone 
has yet posted any links or issues, I'm assuming that there will 
need to be research cheduled for this task first. That can't happen 
until the coming week.
Carl is not working on the R2 installer right now. For the moment, 
it's just me.
Volunteers are welcome, particularly for the non-Windows platforms. 
I only have experience writing installers for Windows.
Graham
27-Jun-2010
[1761]
Where are the issues posted to?  Not curecode I presume ...
BrianH
28-Jun-2010
[1762x2]
Here. I asked for them to be posted here. Noone answered.
But it's still early yet, maybe people didn't notice.
Anton
29-Jun-2010
[1764]
I'm on linux and haven't been using View 2.7.7.4.2 because it crashes 
too easily with DRAW, so I'm still using 2.7.6.4.2.

(I'm assuming that will be fixed pretty quickly, however.) The biggest 
annoyance for me is the lack of DRAW text rendering.

It's been so long since I used the installer I can't remember any 
of the issues with it!
Rebolek
29-Jun-2010
[1765]
As long as "continue without installation" button works, I'm happy 
with current installer.
ICarii
29-Jun-2010
[1766]
do people actually still use viewtop?
Henrik
29-Jun-2010
[1767]
I use it regularly for deployment.
Rebolek
29-Jun-2010
[1768]
yes, you can run viewtop from console
ICarii
29-Jun-2010
[1769]
ah ok - i built my own installer back when i used to do R2 deployment 
for people
Henrik
29-Jun-2010
[1770]
I could have done that, but the viewtop solves the job OK.
ICarii
29-Jun-2010
[1771]
i found it a little clunky - but i was probably using it incorrectly
Henrik
29-Jun-2010
[1772]
it is clunky and awkward, true.
ICarii
29-Jun-2010
[1773]
most clients were more interested in auto-install / single-click 
jobs with a desktop icon / registry linking
Andreas
29-Jun-2010
[1774]
I don't care much at all about View installation on Linux, as long 
as directly invoking the binary with --noinstall continues to work.
Endo
29-Jun-2010
[1775]
I prefer it always runs as standalone console, even at first time. 
If user wants then he/she can INSTALL or starts DESKTOP.

So I can send rebol.exe to anyone and tell him just drag & drop that 
script file onto that exe file.
Maxim
29-Jun-2010
[1776]
I just wish there where a version without sandbox.  its VERY annoying 
to install, on vista it took me a full evening to get it to work 
using -qs properties.
BrianH
29-Jun-2010
[1777]
Not a version without sandbox/install, a *mode* without sandbox/install. 
It's one of the 4 profiles.
Maxim
29-Jun-2010
[1778]
I just want rebviewpro.exe to be available as well as rebol.exe. 


 the installer is a nuisance, why should /view require one while /core 
 doesn't?


I'd much rather have no install and have a mezz or native command 
I run in the console that does an "install"
BrianH
29-Jun-2010
[1779x2]
Which it why it will be supported. The installer is a nuisance because 
it wasn't done right.
Hate to break it to you, but the desktop is actually used by some 
and either needs installation or portable app mode. Console-only 
no-install mode, two install modes depending on permissions, and 
portable app mode, that's the 4 modes.
Maxim
29-Jun-2010
[1781]
its a nuisance because its not required.  the desktop is fine for 
end-users.   I'm not one of them, and it gets in the way when I deploy 
my pplications at clients.