Skip to content

Commit

Permalink
Update version, README, docs
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Mar 2, 2022
1 parent e9a928b commit 050c0c3
Show file tree
Hide file tree
Showing 12 changed files with 52 additions and 8 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ You will be prompted to choose a viewer for an html file containing
the encoded markdown from the current open file. If the text contains
no markdown the result will be the same text.

### Shortcut
You may create a **New file** shortcut in the launcher which will open
a new file in Editor.

### Regular expressions
Explaining [regular
expressions](https://en.wikipedia.org/wiki/Regular_expression) used in
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
applicationId "org.billthefarmer.editor"
minSdkVersion 14
targetSdkVersion 28
versionName "1.70"
versionCode 170
versionName "1.71"
versionCode 171

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">
<head>
<meta name="generator" content="Hugo 0.92.0" />
<meta name="generator" content="Hugo 0.93.0" />

<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
Expand Down
Binary file added docs/images/Editor-shortcut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/Editor-syntax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 19 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb">
<head>
<meta name="generator" content="Hugo 0.92.0" />
<meta name="generator" content="Hugo 0.93.0" />

<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
Expand Down Expand Up @@ -83,6 +83,8 @@ <h1 class="site-title"><a href="https://billthefarmer.github.io/editor/">Editor<

<li><a href="#regular-expressions">Regular Expressions</a></li>

<li><a href="#shortcut">Shortcut</a></li>

<li><a href="#highlight-syntax">Highlight Syntax</a></li>

<li><a href="#mode-line">Mode Line</a></li>
Expand Down Expand Up @@ -173,6 +175,7 @@ <h3>
<li>Optionally view files</li>
<li>Optional auto save</li>
<li>Optional Word wrap</li>
<li>New file shortcut</li>
<li>Light/Dark/Black/Retro themes</li>
<li>Small/Medium/Large font size</li>
<li>Monospace/Proportional font faces</li>
Expand Down Expand Up @@ -420,6 +423,21 @@ <h3>
</section>


<section class="page" id="shortcut">

<h3>
<a href="#shortcut">Shortcut</a>
</h3>

<div class="content">
<p><img src="images/Editor-shortcut.png" alt="Shortcut"></p>
<p>You may create a <strong>New file</strong> shortcut in the launcher which will open
a new file in Editor.</p>

</div>
</section>


<section class="page" id="highlight-syntax">

<h3>
Expand Down
13 changes: 11 additions & 2 deletions docs/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<generator>Hugo -- gohugo.io</generator>
<language>en-gb</language>
<copyright>Copyright &amp;copy; 2021 Bill Farmer</copyright>
<lastBuildDate>Wed, 03 Nov 2021 21:12:12 +0000</lastBuildDate><atom:link href="https://billthefarmer.github.io/editor/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Wed, 02 Mar 2022 09:34:09 +0000</lastBuildDate><atom:link href="https://billthefarmer.github.io/editor/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Features</title>
<link>https://billthefarmer.github.io/editor/introduction/features/</link>
<pubDate>Wed, 04 Mar 2020 15:40:25 +0000</pubDate>

<guid>https://billthefarmer.github.io/editor/introduction/features/</guid>
<description> File chooser Default file View markdown in browser or html viewer Regular expression text search Character set detection and selection Optional syntax highlighting Open recent files from menu Optionally view files Optional auto save Optional Word wrap Light/Dark/Black/Retro themes Small/Medium/Large font size Monospace/Proportional font faces </description>
<description> File chooser Default file View markdown in browser or html viewer Regular expression text search Character set detection and selection Optional syntax highlighting Open recent files from menu Optionally view files Optional auto save Optional Word wrap New file shortcut Light/Dark/Black/Retro themes Small/Medium/Large font size Monospace/Proportional font faces </description>
</item>

<item>
Expand Down Expand Up @@ -102,6 +102,15 @@ Default The default character set is set to UTF-8 on selecting New from the tool
<description>Explaining regular expressions used in the text search is beyond the scope of these docs. There is at least one book (of many) devoted to the subject. Use (?i) for case insensitive search, . matches any character once, .? matches any character once or not at all, .+ matches any character one or more times, .* matches any character any times or not at all. Use .+? or .*? for reluctant versions.</description>
</item>

<item>
<title>Shortcut</title>
<link>https://billthefarmer.github.io/editor/using/shortcut/</link>
<pubDate>Wed, 02 Mar 2022 09:34:09 +0000</pubDate>

<guid>https://billthefarmer.github.io/editor/using/shortcut/</guid>
<description>You may create a New file shortcut in the launcher which will open a new file in Editor.</description>
</item>

<item>
<title>Highlight Syntax</title>
<link>https://billthefarmer.github.io/editor/using/highlight-syntax/</link>
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<pubDate>Wed, 04 Mar 2020 15:40:25 +0000</pubDate>

<guid>https://billthefarmer.github.io/editor/introduction/features/</guid>
<description> File chooser Default file View markdown in browser or html viewer Regular expression text search Character set detection and selection Optional syntax highlighting Open recent files from menu Optionally view files Optional auto save Optional Word wrap Light/Dark/Black/Retro themes Small/Medium/Large font size Monospace/Proportional font faces </description>
<description> File chooser Default file View markdown in browser or html viewer Regular expression text search Character set detection and selection Optional syntax highlighting Open recent files from menu Optionally view files Optional auto save Optional Word wrap New file shortcut Light/Dark/Black/Retro themes Small/Medium/Large font size Monospace/Proportional font faces </description>
</item>

</channel>
Expand Down
5 changes: 4 additions & 1 deletion docs/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
</url><url>
<loc>https://billthefarmer.github.io/editor/using/regular-expressions/</loc>
<lastmod>2021-09-05T09:48:08+01:00</lastmod>
</url><url>
<loc>https://billthefarmer.github.io/editor/using/shortcut/</loc>
<lastmod>2022-03-02T09:34:09+00:00</lastmod>
</url><url>
<loc>https://billthefarmer.github.io/editor/using/highlight-syntax/</loc>
<lastmod>2020-03-04T19:41:14+00:00</lastmod>
Expand Down Expand Up @@ -69,7 +72,7 @@
<lastmod>2021-07-21T19:22:29+01:00</lastmod>
</url><url>
<loc>https://billthefarmer.github.io/editor/</loc>
<lastmod>2021-11-03T21:12:12+00:00</lastmod>
<lastmod>2022-03-02T09:34:09+00:00</lastmod>
</url><url>
<loc>https://billthefarmer.github.io/editor/categories/</loc>
</url><url>
Expand Down
9 changes: 9 additions & 0 deletions docs/using/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,15 @@ Default The default character set is set to UTF-8 on selecting New from the tool
<description>Explaining regular expressions used in the text search is beyond the scope of these docs. There is at least one book (of many) devoted to the subject. Use (?i) for case insensitive search, . matches any character once, .? matches any character once or not at all, .+ matches any character one or more times, .* matches any character any times or not at all. Use .+? or .*? for reluctant versions.</description>
</item>

<item>
<title>Shortcut</title>
<link>https://billthefarmer.github.io/editor/using/shortcut/</link>
<pubDate>Wed, 02 Mar 2022 09:34:09 +0000</pubDate>

<guid>https://billthefarmer.github.io/editor/using/shortcut/</guid>
<description>You may create a New file shortcut in the launcher which will open a new file in Editor.</description>
</item>

<item>
<title>Highlight Syntax</title>
<link>https://billthefarmer.github.io/editor/using/highlight-syntax/</link>
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-GB/changelogs/171.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Add new file shortcut
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 050c0c3

Please sign in to comment.