Skip to content

Commit c0e6981

Browse files
committed
Added whitepaper and a bunch of functions
1 parent 6435118 commit c0e6981

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1628
-1204
lines changed

docs/bulma.min.css

-1
This file was deleted.

docs/calendar.png

-20.7 KB
Binary file not shown.

docs/index.html

+69-6
Original file line numberDiff line numberDiff line change
@@ -699,12 +699,45 @@ <h2> Blog </h2>
699699

700700
<details>
701701
<summary> Inspirations for Ilse Langnar's Notebook</summary>
702-
<p> SpaceMacs | SPC (key) | You can start listening to "brown noise" from ilse with `C-SPC t s b` the "C-SPC" means "control+space" then t s b, in complete it would be: ctrl+space t s b | </p>
703-
<p> | Roam Research | Outline | We have an outline similar to that of [Roam Research](https://roamresearch.com/) So you can nest bullets down with no problems| </p>
704-
<p> | Anki | Spaced Repetition | | </p>
705-
<p> | Supermemo | Incremental Reading | | </p>
706-
<p> | Supermemo | Incremental Learning | | </p>
707-
<p> | Obsidian | Plugins | | </p>
702+
703+
<table>
704+
<tr>
705+
<th> Program </th>
706+
<th> Feature </th>
707+
<th> Description </th>
708+
</tr>
709+
<tr>
710+
<td> Roam Researcher </td>
711+
<td> Outliner </td>
712+
<td> TODO </td>
713+
</tr>
714+
715+
<tr>
716+
<td> Anki </td>
717+
<td> Spaced Repetition </td>
718+
<td> TODO </td>
719+
</tr>
720+
721+
<tr>
722+
<td> Supermemo </td>
723+
<td> Incremental Reading </td>
724+
<td> TODO </td>
725+
</tr>
726+
727+
<tr>
728+
<td> Supermemo </td>
729+
<td> Incremental Learning </td>
730+
<td> TODO </td>
731+
</tr>
732+
733+
<tr>
734+
<td> Obsidian </td>
735+
<td> Plugins </td>
736+
<td> TODO </td>
737+
</tr>
738+
739+
</table>
740+
<br> <br>
708741
</details>
709742

710743
<details>
@@ -715,6 +748,36 @@ <h2> Blog </h2>
715748

716749
</div>
717750

751+
<div id="roadmap" class="features is-centered">
752+
<h2> Roadmap </h2>
753+
754+
<div class="flex" >
755+
<input type="checkbox" name="" id="" value="">
756+
<span> Autocomplete API </span>
757+
</div>
758+
759+
<div class="flex" >
760+
<input type="checkbox" name="" id="" value="">
761+
<span> Text Expantion API </span>
762+
</div>
763+
764+
<div class="flex" >
765+
<input type="checkbox" name="" id="" value="">
766+
<span> Communication API </span>
767+
</div>
768+
769+
<div class="flex" >
770+
<input type="checkbox" name="" id="" value="">
771+
<span> Stable Outliner </span>
772+
</div>
773+
774+
<div class="flex" >
775+
<input type="checkbox" name="" id="" value="">
776+
<span> OSX Build </span>
777+
</div>
778+
779+
</div>
780+
718781
<!-- <div class="standard is-centered">
719782
<h2> Standard </h2>
720783
<a href="Pax Cerebrum.pdf" target="_blank"> <img loading="lazy" src="file-text.svg" alt="" style="width: 40px;"> </a>
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const printf = console.log
2+
3+
import get_note_index from "@/classes/get_note_index.js"
4+
5+
export default function get_next_note_index( id ) {
6+
7+
let index = get_note_index( id )
8+
let next_id = keys[++index]
9+
10+
return ++index
11+
}

javascript/web/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "ilse-langnar-notebook",
3-
"version": "1.1.0",
3+
"productName": "Ilse Langnar's Notebook",
4+
"version": "1.2.0",
45
"private": true,
56
"author": "ilse",
67
"scripts": {

javascript/web/src/App.vue

+15-26
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,10 @@
66
// eslint-disable-next-line
77
const printf = console.log;
88
9-
// import "bulma/css/bulma.min.css"
10-
11-
// process.env.NODE_ENV === 'production' ? require("bulma/css/bulma.min.css") : require("@/assets/css/bulma.css")
12-
// require("@/assets/css/bulma.css")
13-
14-
// <----------> Title <----------> //
15-
// import title from "@/utils/title.js";
16-
// <----------> Title <----------> //
17-
18-
// window.Mousetrap = Mousetrap
19-
// printf( "Mousetrap -> ", Mousetrap )
20-
21-
// directives: {
22-
// title,
23-
// },
24-
// title: "Ilse Langna's Noreboko",
25-
26-
// metaInfo: {
27-
// title: "Ilse Langnar's Notebook"
28-
// },
29-
30-
// require("@/assets/domarrow.css")
31-
// require("@/assets/js/domarrow.js")
9+
// functions
10+
import set from "@/classes/set.js"
11+
import if_else from "@/classes/if_else.js"
12+
import is_platform from "@/classes/is_platform.js"
3213
3314
export default {
3415
@@ -40,7 +21,11 @@ export default {
4021
4122
methods: {
4223
43-
setFavicon() {
24+
set_title() {
25+
document.head.title = "Ilse Langnar's Notebook"
26+
},
27+
28+
set_favicon() {
4429
// let favicon = require( "@/assets/images/logo-white-background.png" )
4530
let favicon = require( "@/assets/images/logo.svg" )
4631
@@ -80,7 +65,12 @@ export default {
8065
},
8166
8267
setup() {
83-
if( process.env.VUE_APP_TARGET === "ELECTRON" ) this.set_font_face()
68+
69+
if_else( is_platform( 'electron' ),
70+
yes => this.set_font_face(),
71+
no => null
72+
)
73+
this.set_title()
8474
},
8575
8676
},
@@ -134,7 +124,6 @@ export default {
134124
background: var( --secondary-background-color );
135125
color: var( --secondary-text-color );
136126
border-radius: var( --border-radius );
137-
138127
}
139128
140129
.shortcut {

0 commit comments

Comments
 (0)