
You can download all the versions of Decaf JavaScript Editor here!
Check out our site: http://www.decaf.tk/
Latest version: Decaf 0.2.0
All Versions:
Decaf 0.1.0
Decaf 0.1.1
Decaf 0.1.2
Decaf 0.2.0
NOTE: All links will take you to our MediaFire download page.
Feel free to put the ad in your sig!
Code:
[url=http://scratch.mit.edu/forums/viewtopic.php?id=79924][img]http://www.imageflock.com/img/1320643506.gif[/img][/url]
Last edited by ohaiderstudios (2011-11-07 00:30:07)
Offline
Awesome.
Get it hosted.
Offline
Suggestion: Get a viewer added so you can see what the outcome is.
Offline
ProgrammingFreak wrote:
Suggestion: Get a viewer added so you can see what the outcome is.
![]()
Wouldn't you just need to run that in a browser?
Offline
ProgrammingFreak wrote:
Suggestion: Get a viewer added so you can see what the outcome is.
![]()
Okay, that actually is a good idea. It would open in a new window...I could use data uris!
Offline
LS97 wrote:
ProgrammingFreak wrote:
Suggestion: Get a viewer added so you can see what the outcome is.
![]()
Wouldn't you just need to run that in a browser?
Yeah, but it would be a automatic updater, so every time you make a change in the editor, it would change to your current code.
Or what you said, ohaidar.
Last edited by ProgrammingFreak (2011-11-05 17:22:26)
Offline
0.1.1 is now released!
The only difference is the viewer thingy!
Offline
Whoa. We posted at the same time!
Offline
ProgrammingFreak wrote:
Whoa. We posted at the same time!
![]()
That is pretty cool!
Offline
Offline
ProgrammingFreak wrote:
Very cool. Could you update it with Decaf 0.1.1 now?
Edit: That is seriously awesome!
Last edited by ohaiderstudios (2011-11-05 17:57:34)
Offline
And also, when you update it, please change the title to Decaf 0.1.1
I kinda forgot on the release!
Edit: I fixed the release, so you could redownload if you haven't already downloaded 0.1.1
Last edited by ohaiderstudios (2011-11-05 17:58:15)
Offline
ohaiderstudios wrote:
And also, when you update it, please change the title to Decaf 0.1.1
I kinda forgot on the release!
Edit: I fixed the release, so you could redownload if you haven't already downloaded 0.1.1
Want me to give you the details?
Offline
ProgrammingFreak wrote:
ohaiderstudios wrote:
And also, when you update it, please change the title to Decaf 0.1.1
I kinda forgot on the release!
Edit: I fixed the release, so you could redownload if you haven't already downloaded 0.1.1Want me to give you the details?
Sure! You can find contact info in notes.txt of any release
Offline
Looks really cool! It can be kind of difficult to know the number of a line though. And the drop down menu for "insert at line___" could become annoying long quickly. Maybe just a text box?
Offline
MoreGamesNow wrote:
Looks really cool! It can be kind of difficult to know the number of a line though. And the drop down menu for "insert at line___" could become annoying long quickly. Maybe just a text box?
Building on your idea, I just released version 0.1.2
Offline
Would it be possible to have numbers at the side of the box, or is that too complex to make?
Also, maybe you could have an autoupdater on the page (or with an iframe)
Offline
gbear605 wrote:
Would it be possible to have numbers at the side of the box, or is that too complex to make?
Also, maybe you could have an autoupdater on the page (or with an iframe)
An iframe with a refresh button, maybe!
Last edited by LS97 (2011-11-06 08:22:52)
Offline
LS97 wrote:
gbear605 wrote:
Would it be possible to have numbers at the side of the box, or is that too complex to make?
Also, maybe you could have an autoupdater on the page (or with an iframe)An iframe with a refresh button, maybe!
![]()
Ooh, nice idea
Mod I made:
Desc:
Browser Detection
Step one:
<option value="navigator">Browsers</option>
Step two:
case "navigator":
blocks.innerHTML = "<option value='appname'>Browser Name<\/option><option value='appcodename'>Browser Code Name<\/option><option value='platform'>Platform<\/option><option value='version'>Browser Version<\/option><option value='cookiesenabled'>Cookies Enabled?<\/option><option value='user-agent-header'>User-Agent Header<\/option>";
break;Step three:
case "appname":
div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>";
break;
case "appcodename":
div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select
break;
case "platform":
div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>";
break;
case "version":
div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>";
break;
case "cookiesenabled":
div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>";
break;
case "user-agent-header":
div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>";
break;Step four:
case "appname":
block = "navigator.appName";
break;
case "appcodename":
block = "navigator.appCodeName";
break;
case "platform":
block = "navigator.platform";
break;
case "version":
block = "navigator.appVersion";
break;
case "cookiesenabled":
block = "navigator.cookieEnabled";
break;
case "user-agent-header":
block = "navigator.userAgent";
break;Kinda simple, but it could be quite useful.
Also, (I know I'm addicted) this seems like a project that could go well on github (or sourceforge for that matter, but sourceforge isn't as easy to use as github)
Last edited by gbear605 (2011-11-06 09:01:49)
Offline
LS97 wrote:
gbear605 wrote:
Would it be possible to have numbers at the side of the box, or is that too complex to make?
Also, maybe you could have an autoupdater on the page (or with an iframe)An iframe with a refresh button, maybe!
![]()
Good idea, I'll look into it!
I'm planning on a big release next, like maybe...Decaf 0.2.0!!!!
Offline
gbear605 wrote:
LS97 wrote:
gbear605 wrote:
Would it be possible to have numbers at the side of the box, or is that too complex to make?
Also, maybe you could have an autoupdater on the page (or with an iframe)An iframe with a refresh button, maybe!
![]()
Ooh, nice idea
![]()
Mod I made:
Desc:
Browser Detection
Step one:Code:
<option value="navigator">Browsers</option>Step two:
Code:
case "navigator": blocks.innerHTML = "<option value='appname'>Browser Name<\/option><option value='appcodename'>Browser Code Name<\/option><option value='platform'>Platform<\/option><option value='version'>Browser Version<\/option><option value='cookiesenabled'>Cookies Enabled?<\/option><option value='user-agent-header'>User-Agent Header<\/option>"; break;Step three:
Code:
case "appname": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "appcodename": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select break; case "platform": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "version": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "cookiesenabled": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "user-agent-header": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break;Step four:
Code:
case "appname": block = "navigator.appName"; break; case "appcodename": block = "navigator.appCodeName"; break; case "platform": block = "navigator.platform"; break; case "version": block = "navigator.appVersion"; break; case "cookiesenabled": block = "navigator.cookieEnabled"; break; case "user-agent-header": block = "navigator.userAgent"; break;Kinda simple, but it could be quite useful.
![]()
Also, (I know I'm addicted) this seems like a project that could go well on github (or sourceforge for that matter, but sourceforge isn't as easy to use as github)
WOW! People are already modding this!
Nice job!
Offline
ohaiderstudios wrote:
gbear605 wrote:
LS97 wrote:
An iframe with a refresh button, maybe!
![]()
Ooh, nice idea
![]()
Mod I made:
Desc:
Browser Detection
Step one:Code:
<option value="navigator">Browsers</option>Step two:
Code:
case "navigator": blocks.innerHTML = "<option value='appname'>Browser Name<\/option><option value='appcodename'>Browser Code Name<\/option><option value='platform'>Platform<\/option><option value='version'>Browser Version<\/option><option value='cookiesenabled'>Cookies Enabled?<\/option><option value='user-agent-header'>User-Agent Header<\/option>"; break;Step three:
Code:
case "appname": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "appcodename": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select break; case "platform": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "version": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "cookiesenabled": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break; case "user-agent-header": div.innerHTML = "<input type='submit' value='Insert' \/> at line <select name='lines' id='lines'><\/select>"; break;Step four:
Code:
case "appname": block = "navigator.appName"; break; case "appcodename": block = "navigator.appCodeName"; break; case "platform": block = "navigator.platform"; break; case "version": block = "navigator.appVersion"; break; case "cookiesenabled": block = "navigator.cookieEnabled"; break; case "user-agent-header": block = "navigator.userAgent"; break;Kinda simple, but it could be quite useful.
![]()
Also, (I know I'm addicted) this seems like a project that could go well on github (or sourceforge for that matter, but sourceforge isn't as easy to use as github)WOW! People are already modding this!
![]()
Nice job!
thanks
I'm kinda a newb a javascript
Also, would it be possible to make it into seperate .js files for each step or something like that?
Last edited by gbear605 (2011-11-06 14:07:02)
Offline
MAJOR UPDATE!!!!!
Decaf 0.2.0
It features a TON of new stuff...but you'll have to download to find out!
Also check out the Decaf site: http://www.decaf.tk/
Offline
Could you add my release as part of the full one?
Offline
I love the updates to Decaf 0.2.0. I understand how you didn't make the line-number-thing, but your way works just as well (click the line and it tells you). The one thing I want to know is this: how did you get it to tell you what line you've selected?! I've never seen that done before.
Offline