Context release 4 alpha 1

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

Context release 4 alpha 1

ccrraaiigg

Hoi--

     I've released Context 4 alpha 1. This one fixes loading errors in
the welcome page, supports remote debugging and process browsing, and
makes Naiad and remote messaging support available as Monticello
packages. Thanks in advance for reporting bugs!

     http://tinyurl.com/pcj59xw (thiscontext.com)

     I'm around on the #context channel on squeak.slack.com for live
discussion.


     thanks!

-C

--
Craig Latta
netjam.org
+31   6 2757 7177 (SMS ok)
+ 1 415  287 3547 (no SMS)


Reply | Threaded
Open this post in threaded view
|

Re: Context release 4 alpha 1

Edgar De Cleene
Hi Craig, I downloading Context now.
Try to help to build the NeXtqueak (a evolution of Squeak targeted to OS X)

-- 
Edgar De Cleene
@morplenauta en twitter
Sent with Sparrow

On Tuesday, December 9, 2014 at 10:51 AM, Craig Latta wrote:


Hoi--

I've released Context 4 alpha 1. This one fixes loading errors in
the welcome page, supports remote debugging and process browsing, and
makes Naiad and remote messaging support available as Monticello
packages. Thanks in advance for reporting bugs!


I'm around on the #context channel on squeak.slack.com for live
discussion.


thanks!

-C

--
Craig Latta
+31 6 2757 7177 (SMS ok)
+ 1 415 287 3547 (no SMS)



Reply | Threaded
Open this post in threaded view
|

re: Context release 4 alpha 1

ccrraaiigg

> Hi Craig, I downloading Context now. Try to help to build the
> NeXtqueak (a evolution of Squeak targeted to OS X)

     Cool, thanks!


-C

--
Craig Latta
netjam.org
+31   6 2757 7177 (SMS ok)
+ 1 415  287 3547 (no SMS)


Reply | Threaded
Open this post in threaded view
|

Re: Context release 4 alpha 1

Chris Muller-3
In reply to this post by ccrraaiigg
Is Context the software formerly known as Spoon?

On Tue, Dec 9, 2014 at 7:51 AM, Craig Latta <[hidden email]> wrote:

>
> Hoi--
>
>      I've released Context 4 alpha 1. This one fixes loading errors in
> the welcome page, supports remote debugging and process browsing, and
> makes Naiad and remote messaging support available as Monticello
> packages. Thanks in advance for reporting bugs!
>
>      http://tinyurl.com/pcj59xw (thiscontext.com)
>
>      I'm around on the #context channel on squeak.slack.com for live
> discussion.
>
>
>      thanks!
>
> -C
>
> --
> Craig Latta
> netjam.org
> +31 6 2757 7177 (SMS ok)
> + 1 415 287 3547 (no SMS)
>
>

Reply | Threaded
Open this post in threaded view
|

re: Context release 4 alpha 1

ccrraaiigg

> Is Context the software formerly known as Spoon?

     Yes.


-C

--
Craig Latta
netjam.org
+31   6 2757 7177 (SMS ok)
+ 1 415  287 3547 (no SMS)


Reply | Threaded
Open this post in threaded view
|

re: Context release 4 alpha 1

Karl Ramberg
Windows don't seem to like file paths with spaces in them.
Once I removed spaces I got past the firewall popup and got IE with a web page :-)

I could not follow the link to the development environment.

Here is a page describing file path stuff windows:

Karl

On Fri, Dec 12, 2014 at 10:51 PM, Craig Latta <[hidden email]> wrote:

> Is Context the software formerly known as Spoon?

     Yes.


-C

--
Craig Latta
netjam.org
<a href="tel:%2B31%20%20%206%202757%207177" value="+31627577177">+31 6 2757 7177 (SMS ok)
<a href="tel:%2B%201%20415%20%20287%203547" value="+14152873547">+ 1 415 287 3547 (no SMS)




Reply | Threaded
Open this post in threaded view
|

Context release 4 alpha 1

Louis LaBrunda
Hi Karl,

On Wed, 17 Dec 2014 16:02:56 +0100, karl ramberg <[hidden email]>
wrote:

>Windows don't seem to like file paths with spaces in them.

Try wrapping the whole path in double quotes like: "c:\some path with
spaces\to the file.txt".

Lou


>Once I removed spaces I got past the firewall popup and got IE with a web
>page :-)
>
>I could not follow the link to the development environment.
>
>Here is a page describing file path stuff windows:
>http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx
>
>Karl
>
>On Fri, Dec 12, 2014 at 10:51 PM, Craig Latta <[hidden email]> wrote:
>>
>>
>> > Is Context the software formerly known as Spoon?
>>
>>      Yes.
>>
>>
>> -C
>>
>> --
>> Craig Latta
>> netjam.org
>> +31 6 2757 7177 (SMS ok)
>> + 1 415 287 3547 (no SMS)
>>
>>
>>
-----------------------------------------------------------
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon
mailto:[hidden email] http://www.Keystone-Software.com


Reply | Threaded
Open this post in threaded view
|

Re: Context release 4 alpha 1

Karl Ramberg
Here is the start script: context.vbs

' Start the Context console, a minimal web server one may use
' from a web browser to control Contexts.

set shell = createobject("wscript.shell")
shell.CurrentDirectory = "..\..\.."
shell.run "..\win32\spoon.exe 946BE974-48B7-4D11-B209-6355B3E49722.image"
' Allow some time for the web server to start.
WScript.Sleep 2000

I changed this to:

set shell = createobject("wscript.shell")
shell.CurrentDirectory = "..\..\"
shell.run "Resources\context 4 alpha 1 processor.app\Contents\win32\spoon.exe 946BE974-48B7-4D11-B209-6355B3E49722.image"
' Allow some time for the web server to start.
WScript.Sleep 2000

These are the correct file path, but I get the same error.

Karl

On Wed, Dec 17, 2014 at 9:03 PM, Louis LaBrunda <[hidden email]> wrote:
Hi Karl,

On Wed, 17 Dec 2014 16:02:56 +0100, karl ramberg <[hidden email]>
wrote:

>Windows don't seem to like file paths with spaces in them.

Try wrapping the whole path in double quotes like: "c:\some path with
spaces\to the file.txt".

Lou


>Once I removed spaces I got past the firewall popup and got IE with a web
>page :-)
>
>I could not follow the link to the development environment.
>
>Here is a page describing file path stuff windows:
>http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx
>
>Karl
>
>On Fri, Dec 12, 2014 at 10:51 PM, Craig Latta <[hidden email]> wrote:
>>
>>
>> > Is Context the software formerly known as Spoon?
>>
>>      Yes.
>>
>>
>> -C
>>
>> --
>> Craig Latta
>> netjam.org
>> <a href="tel:%2B31%206%202757%207177" value="+31627577177">+31 6 2757 7177 (SMS ok)
>> <a href="tel:%2B%201%20415%20287%203547" value="+14152873547">+ 1 415 287 3547 (no SMS)
>>
>>
>>
-----------------------------------------------------------
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon
mailto:[hidden email] http://www.Keystone-Software.com