Skip to content

Commit

Permalink
First release
Browse files Browse the repository at this point in the history
Only support Windows for this moment.
  • Loading branch information
ajsb85 committed Jan 22, 2014
1 parent 013f2be commit 210324c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 0 additions & 4 deletions config.json

This file was deleted.

3 changes: 2 additions & 1 deletion html/modal-about.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<div class="about-text">
<h2>Jekyll for Brackets</h2>
<p class="dialog-message">version 1.0 experimental build 0.35.0-10897 <span id="about-build-number">(release 445deaaa9)</span></p>
<p class="dialog-message">version <span class="version"></span> <span id="about-build-number"></span></p>
<p class="dialog-message description"></p>
<p class="dialog-message"><!-- $NON-NLS$ -->Copyright (c) 2014 Alexander Salas. <button class="message">Send message</button></p>
<p class="dialog-message">Jekyll is under <a href="https://github.com/jekyll/jekyll/blob/master/LICENSE">The MIT License</a>.</p>
<p class="dialog-message">Documentation and source at <a href="https://github.com/alexsalas/alexsalas.brackets-jekyll/">https://github.com/alexsalas/alexsalas.brackets-jekyll/</a></p>
Expand Down
Binary file added jekyll.zip
Binary file not shown.
9 changes: 6 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ define(function (require, exports, module) {
{className: Dialogs.DIALOG_BTN_CLASS_NORMAL, id: Dialogs.DIALOG_BTN_CANCEL, text: "Cancel"}
]
).done(function(id) {
console.log(id);
// Only saving
if(id !== "ok" && !buttonSend) return;
if(id !== "ok") return;
if(!buttonSend) return;

// Module name musn't be empty
if(email.value == "") {
Expand Down Expand Up @@ -342,6 +342,8 @@ define(function (require, exports, module) {
var email = document.querySelector("." + JEKYLL_ABOUT_DIALOG_ID + " .email"),
contributors = document.querySelector("." + JEKYLL_ABOUT_DIALOG_ID + " .about-contributors"),
$table = $("." + JEKYLL_ABOUT_DIALOG_ID + " .table"),
$version = $("." + JEKYLL_ABOUT_DIALOG_ID + " .version"),
$description = $("." + JEKYLL_ABOUT_DIALOG_ID + " .description"),
$about = $("." + JEKYLL_ABOUT_DIALOG_ID + " .about-text"),
$message = $("." + JEKYLL_ABOUT_DIALOG_ID + " .message"),
body = document.querySelector("." + JEKYLL_ABOUT_DIALOG_ID + " .body");
Expand Down Expand Up @@ -370,7 +372,8 @@ define(function (require, exports, module) {
}
contributors.innerHTML = html;
var ext = JSON.parse(require('text!package.json'));
console.log(ext.version);
$description.html(ext.description);
$version.html(ext.version);
});

}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
},
"repository": {
"type": "git",
"url": "https://github.com/alexsalas/alexsalas.brackets-jekyll.git"
"url": "https://github.com/alexsalas/alexsalas.brackets-jekyll.git",
"release_id": "128876"
},
"bugs": {
"url": "https://github.com/alexsalas.brackets-jekyll/issues",
Expand Down

0 comments on commit 210324c

Please sign in to comment.