Forking what is left of ZeroNet and hopefully adding an AT Proto Frontend/Proxy
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix CoffeeScript 1.12 support

+2 -3
+2 -3
tools/coffee/coffee.wsf
··· 42 42 } 43 43 44 44 var coffee; 45 - if (!input) { 45 + if (!input) { 46 46 // Read all input data from STDIN 47 47 var chunks = []; 48 48 while (!WScript.StdIn.AtEndOfStream) ··· 62 62 return new f; 63 63 } 64 64 65 - var js = CoffeeScript.compile(coffee); 66 - 65 + var js = CoffeeScript.compile(coffee, {filename: "temp.coffee"}); 67 66 if (!output) { 68 67 WScript.StdOut.Write(js); 69 68 }