Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
KMikeeU committed May 15, 2021
0 parents commit 0887932
Show file tree
Hide file tree
Showing 153 changed files with 22,613 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
build
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# EncroNote
Write AES-encrypted notes

Based on [this electron sample app](https://github.com/hokein/electron-sample-apps/tree/master/mini-code-editor)
51 changes: 51 additions & 0 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
body {
margin: 0;
padding: 0;
margin-top: 5px;
overflow: hidden;
}

button {
margin: 0;
}

.CodeMirror {
margin: 0;
padding: 0;
}

.CodeMirror-scroll {
height: auto;
overflow-y: hidden;
overflow-x: auto;
}

#editor {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #262626;
}

.info {
font-family: monospace;
white-space: nowrap;
position: absolute;
bottom: 0;
background: #eee;
padding: 2px;
height: 20px;
left: 0;
right: 0;
}

.info label {
font-weight: bold;
}

.buttons {
padding: 2px;
height: 25px;
}
23 changes: 23 additions & 0 deletions cm/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Copyright (C) 2012 by Marijn Haverbeke <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Please note that some subdirectories of the CodeMirror distribution
include their own LICENSE files, and are released under different
licences.
6 changes: 6 additions & 0 deletions cm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# CodeMirror 2

CodeMirror 2 is a rewrite of [CodeMirror
1](http://github.com/marijnh/CodeMirror). The docs live
[here](http://codemirror.net/doc/manual.html), and the project page is
[http://codemirror.net/](http://codemirror.net/).
Loading

0 comments on commit 0887932

Please sign in to comment.