Skip to content

Commit

Permalink
yasp is now GPLv3
Browse files Browse the repository at this point in the history
  • Loading branch information
luto committed Jan 3, 2014
1 parent 6818305 commit 974d0f6
Show file tree
Hide file tree
Showing 6 changed files with 694 additions and 6 deletions.
674 changes: 674 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -12,3 +12,6 @@ $ grunt commandsjs

# Online-Demo
http://yasp.me/yasp/src/app/test/

# License
GPLv3 (see `LICENSE.txt`)
14 changes: 10 additions & 4 deletions src/app/css/editor.css
Expand Up @@ -123,10 +123,6 @@ span.cm-keyword {
height: 100%;
}

#dialog_help .modal-footer {
margin-top: 0;
}

#help_container {
margin-top: 10px;
overflow-y: scroll;
Expand Down Expand Up @@ -170,6 +166,12 @@ span.cm-keyword {
vertical-align: middle;
}

/* === about === */
#dialog_about h6 {
font-weight: bold;
margin-bottom: 5px;
}

/* === other styles === */
.toolbarcontainer {
background-color: #f7f7f7;
Expand Down Expand Up @@ -202,6 +204,10 @@ span.cm-keyword {
left: 0;
}

.modal-footer {
margin-top: 0;
}

/* Fix z-index bug with labellist */
.modal {
z-index: 100000;
Expand Down
1 change: 1 addition & 0 deletions src/app/langs/de.js
Expand Up @@ -34,6 +34,7 @@ if (yasp.l10n.lang === undefined) yasp.l10n.lang = { };
"cutting-edge Debugger and highly sophisticated assembler. The development suit " +
"aims to make learning assembler programming easy and accessible for everyone.",
"editor.about.version": "Version",
"editor.about.license": "Lizenz",
"editor.about.team": "Team",
"editor.about.specialthanks": "Besonderer Dank geht an",
"editor.about.logo": "Logo",
Expand Down
1 change: 1 addition & 0 deletions src/app/langs/en.js
Expand Up @@ -36,6 +36,7 @@ if (yasp.l10n.lang === undefined) yasp.l10n.lang = { };
"cutting-edge Debugger and highly sophisticated assembler. The development suit " +
"aims to make learning assembler programming easy and accessible for everyone.",
"editor.about.version": "Version",
"editor.about.license": "License",
"editor.about.team": "Team",
"editor.about.specialthanks": "Special Thanks",
"editor.about.logo": "Logo",
Expand Down
7 changes: 5 additions & 2 deletions src/index.html
Expand Up @@ -143,6 +143,11 @@ <h6 data-l10n="editor.about.version"></h6>
<ul>
<li>0.6 BETA</li>
</ul>
<h6 data-l10n="editor.about.license"></h6>
<ul>
<li>GPLv3</li>
<li>&copy; 2013, 2014 Michael Lutonsky, Robert Fischer</li>
</ul>
<h6 data-l10n="editor.about.team"></h6>
<ul>
<li><a href="http://luto.at/" target="_blank">Michael Lutonsky</a></li>
Expand All @@ -161,8 +166,6 @@ <h6 data-l10n="editor.about.logo"></h6>
<li><span data-l10n="editor.about.logo.font"></span>: <a href="http://www.dafont.com/digital-7.font" target="_blank">Digital 7</a> (Free for personal use)</li>
<li>Created with Inkscape (<a href="http://inkscape.org/" target="_blank">http://inkscape.org/</a>)</li>
</ul>
<br>
<p>&copy; 2013, 2014 Michael Lutonsky, Robert Fischer</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
Expand Down

0 comments on commit 974d0f6

Please sign in to comment.