Skip to content

Commit 922740a

Browse files
committed
Version 0.3.6
Changes - Updated electron version. - Updated Prism. - Spell checking is disabled. - Reworking of HTML structure & CSS Layut. - Added line highlight. - Fixed zoom issues with MarkDown; also resize with window. - Fixed “full screen” behaviour. - Fixed bug with additional comment blocks. - Added notepaper lines effect to code; also fixed line-height behaviour. - Minor re-design of control bar.
1 parent 37923f0 commit 922740a

17 files changed

+14601
-9889
lines changed

.jshintrc

+2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
"-W030": true,
1111
"-W014": true,
1212
"-W117": true,
13+
"-W093": true,
1314
"eqeqeq": false,
1415
"shadow": true,
16+
"elision": true,
1517
"sub": true,
1618
"globals": {
1719
"window": true,

README.css

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@
1515

1616
/* Basic
1717
================================================ */
18-
body {
18+
html {
1919
font-family: "Source Sans Pro";
20-
font-size: 1em;
20+
qfont-size: 1em;
2121
--color: #204564;
22+
font-size: 3vw;
2223
}
2324
code {
2425
font-family: "Source Code Pro";
25-
font-size: .8em;
26+
font-size: 1rem;
2627
}
2728

2829
table {
@@ -102,7 +103,7 @@
102103
================================================ */
103104
div.h2, div.h3 {
104105
color: #333;
105-
font-size: 3vw;
106+
qfont-size: 3vw;
106107
}
107108

108109
div.h2>h2 {

README.md

+27-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Document Pager 0.3.5
1+
# Document Pager 0.3.6
22

33
<img src="images/document-pager.png" width="140">
44

@@ -22,9 +22,19 @@ Currently, the default pattern is:
2222

2323
Note that the `/*` style comment is a block comment. The heading will only extend to the end of the line.
2424

25-
## Viewing the Document
25+
### Highlighed Code Lines
26+
27+
You can mark one or more lines for highlighting by ending it with a special marker. Typically it’s a comment marker with an exclamation mark (`!`) at the end.
28+
29+
For example:
30+
31+
```js
32+
var newInfo = null; //!
33+
```
2634

27-
### Opening the Document
35+
The line number will appear hightlighted.
36+
37+
## Viewing the Document
2838

2939
Naturally, you will first need to open the document. You can open a document from the local file system or from the Internet.
3040

@@ -93,31 +103,37 @@ Here are the default language settings:
93103
{
94104
"javascript": {
95105
"extensions": ["js","javascript"],
96-
"breaks": { "major": ["/**"], "minor": ["/*"]}
106+
"breaks": { "major": ["/**"], "minor": ["/*"]},
107+
"highlight": "//!"
97108
},
98109
"php": {
99110
"extensions": ["php"],
100-
"breaks": { "major": ["/**","/*:"], "minor": ["/*"] }
111+
"breaks": { "major": ["/**","/*:"], "minor": ["/*"] },
112+
"highlight": "//!"
101113
},
102114
"python": {
103115
"extensions": ["py"],
104-
"breaks": { "major": ["#:"], "minor": ["#::"] }
116+
"breaks": { "major": ["#:"], "minor": ["#::"] },
117+
"highlight": "#!"
105118
},
106119
"sql": {
107120
"extensions": ["sql"],
108-
"breaks": { "major": ["/**"], "minor": ["/*"] }
121+
"breaks": { "major": ["/**"], "minor": ["/*"] },
122+
"highlight": "--!"
109123
},
110124
"css": {
111125
"extensions": ["css"],
112-
"breaks": { "major": ["/**"], "minor": ["/*"] }
126+
"breaks": { "major": ["/**"], "minor": ["/*"] },
127+
"highlight": "/*!*/"
113128
},
114129
"markdown": {
115130
"extensions": ["md","markdown","mds"],
116131
"breaks": { "major": ["##"]}
117132
},
118133
"text": {
119134
"extensions": ["txt","text","*"],
120-
"breaks": { "major": ["#"], "minor": ["##"] }
135+
"breaks": { "major": ["#"], "minor": ["##"] },
136+
"highlight": "#!"
121137
}
122138
}
123139
```
@@ -183,4 +199,6 @@ Syntax Highlighting is made available through [Prism](https://prismjs.com/) by [
183199

184200
The Markdown Parser is [Marked](https://marked.js.org/).
185201

202+
This application does what it does and doesn’t do what it doesn’t do.
203+
186204
E & OE. Share & Enjoy

build/entitlements.mac.plist

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44
<dict>
55
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
66
<true/>
7-
</dict>
7+
<key>com.apple.security.cs.allow-jit</key>
8+
<true/>
9+
</dict>
810
</plist>

content/content.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</head>
1414
<body>
1515
<div id="main-content">
16-
<div>
16+
<div spellcheck="false">
1717
<code class="language-none">Content</code>
1818
<div class="md">Markdown Content</div>
1919
</div>

data/about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## About Document Pager 0.3.5
1+
## About Document Pager 0.3.6
22

33
Text Pager © Mark Simon
44
See also https://pager.internotes.net/

index.html

+20-21
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,26 @@ <h1>Document Pager</h1>
3535
</header>
3636
<aside id="about" data-load="/content/about.html"></aside>
3737
<main>
38-
<ul id="tabs">
39-
<form id="control">
40-
<!--
41-
<button type="button" name="about">About …</button>
42-
-->
43-
<p><input type="checkbox" name="show-highlight" id="control-show-highlight" checked><label for="control-show-highlight">Show Highlighted</label></p>
44-
<hr>
45-
<!--
46-
<p id="font-size">
47-
<button type="button" name="zoom-smaller" id="control-zoom-smaller">-</button><label for="control-zoom-smaller">⬇︎</label>
48-
<button type="button" name="zoom-default" id="control-zoom-default">•</button><label for="control-zoom-default">◼︎</label>
49-
<button type="button" name="zoom-larger" id="control-zoom-larger">+</button><label for="control-zoom-larger">⬆︎</label>
50-
</p>
51-
-->
52-
<p><input type="checkbox" name="show-documents" id="control-show-documents" checked><label for="control-show-documents">Documents</label></p>
53-
<!--
54-
<label for="upload-file">Open or Drop File …</label><input type="file" name="upload" id="upload-file">
55-
-->
56-
<p><button type="button" name="full-screen" id="control-full-screen">Full Screen</button><label for="control-full-screen">Full Screen</label></p>
57-
</form>
58-
</ul>
38+
<form id="control">
39+
<!--
40+
<button type="button" name="about">About …</button>
41+
-->
42+
<label><input type="checkbox" name="show-highlight" id="control-show-highlight" checked>Show Highlighted</label>
43+
<!--
44+
<p id="font-size">
45+
<button type="button" name="zoom-smaller" id="control-zoom-smaller">-</button><label for="control-zoom-smaller">⬇︎</label>
46+
<button type="button" name="zoom-default" id="control-zoom-default">•</button><label for="control-zoom-default">◼︎</label>
47+
<button type="button" name="zoom-larger" id="control-zoom-larger">+</button><label for="control-zoom-larger">⬆︎</label>
48+
</p>
49+
-->
50+
<label><input type="checkbox" name="show-documents" id="control-show-documents" checked>Documents</label>
51+
<!--
52+
<label for="upload-file">Open or Drop File …</label><input type="file" name="upload" id="upload-file">
53+
-->
54+
<label><input type="checkbox" name="full-screen" id="control-full-screen">Full ScreenFull Screen</label>
55+
<ul id="tabs">
56+
</ul>
57+
</form>
5958
<div id="pager">
6059
<nav id="documents">
6160
<ul>

0 commit comments

Comments
 (0)