CodeBrew-io / Issues

Submit new issues here
4 stars 1 forks source link

Main Panels Lost #18

Open aacerox opened 10 years ago

aacerox commented 10 years ago

Hi

first of all, congratulations for your app, you've done a great job in this new version.

Trying your new interface at codebrew.io (I used the app when it was scalakata.com but I didn't know this new version) I hit CTRL+R (I think it was CTRL + R...) and the panels and buttons of main page all disappeared and I can't even see the documentation and can't find a way to restore them (what the hell I've done!!!).

Could you please tell me how can I come back to main page where all panels and buttons are?

Thanks.

MasseGuillaume commented 10 years ago

hola,

I removed the main pannel in this current version (sharing and documentation). Don't worry I will put them back. What feature do you miss the most ?

For the documentation, it will take some time because I have to upgrade it for scala 2.11.x

Gui.

davesmith00000 commented 10 years ago

Was there any movement on this? I used to use your awesome site for testing code concepts but I can't any more. The most crucial thing missing is the output pane, but I've also lost access to all the snippets I've created.

MasseGuillaume commented 10 years ago

I will bring back the sharing when I have time.

To capture the output you can do this (the output is duplicated, it's a bug). I'm not shure why you want to println something when you can see the instrumented value immediately.

val outputStream = new java.io.ByteArrayOutputStream()
Console.withOut(outputStream) {
  println("console")
  println("=== end ===")
}
outputStream.toString