diff --git a/README.md b/README.md index df6fd59..abc74ec 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.gradle b/build.gradle index 70c94d1..51b4717 100644 --- a/build.gradle +++ b/build.gradle @@ -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" } diff --git a/docs/404.html b/docs/404.html index 9a45db1..336a7ce 100644 --- a/docs/404.html +++ b/docs/404.html @@ -1,7 +1,7 @@ - + diff --git a/docs/images/Editor-shortcut.png b/docs/images/Editor-shortcut.png new file mode 100644 index 0000000..466bf93 Binary files /dev/null and b/docs/images/Editor-shortcut.png differ diff --git a/docs/images/Editor-syntax.png b/docs/images/Editor-syntax.png index 168d216..573ea29 100644 Binary files a/docs/images/Editor-syntax.png and b/docs/images/Editor-syntax.png differ diff --git a/docs/index.html b/docs/index.html index 368e4c8..1c7b7a6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,7 +1,7 @@ - + @@ -83,6 +83,8 @@

Editor<
  • Regular Expressions
  • +
  • Shortcut
  • +
  • Highlight Syntax
  • Mode Line
  • @@ -173,6 +175,7 @@

  • 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
  • @@ -420,6 +423,21 @@

    +
    + +

    + Shortcut +

    + +
    +

    Shortcut

    +

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

    + +
    +
    + +

    diff --git a/docs/index.xml b/docs/index.xml index 61a3ebb..79bb09a 100644 --- a/docs/index.xml +++ b/docs/index.xml @@ -7,14 +7,14 @@ Hugo -- gohugo.io en-gb Copyright &copy; 2021 Bill Farmer - Wed, 03 Nov 2021 21:12:12 +0000 + Wed, 02 Mar 2022 09:34:09 +0000 Features https://billthefarmer.github.io/editor/introduction/features/ Wed, 04 Mar 2020 15:40:25 +0000 https://billthefarmer.github.io/editor/introduction/features/ - 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 + 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 @@ -102,6 +102,15 @@ Default The default character set is set to UTF-8 on selecting New from the tool 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. + + Shortcut + https://billthefarmer.github.io/editor/using/shortcut/ + Wed, 02 Mar 2022 09:34:09 +0000 + + https://billthefarmer.github.io/editor/using/shortcut/ + You may create a New file shortcut in the launcher which will open a new file in Editor. + + Highlight Syntax https://billthefarmer.github.io/editor/using/highlight-syntax/ diff --git a/docs/introduction/index.xml b/docs/introduction/index.xml index 9019151..e388931 100644 --- a/docs/introduction/index.xml +++ b/docs/introduction/index.xml @@ -14,7 +14,7 @@ Wed, 04 Mar 2020 15:40:25 +0000 https://billthefarmer.github.io/editor/introduction/features/ - 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 + 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 diff --git a/docs/sitemap.xml b/docs/sitemap.xml index c8be1b4..3c19e4c 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -37,6 +37,9 @@ https://billthefarmer.github.io/editor/using/regular-expressions/ 2021-09-05T09:48:08+01:00 + + https://billthefarmer.github.io/editor/using/shortcut/ + 2022-03-02T09:34:09+00:00 https://billthefarmer.github.io/editor/using/highlight-syntax/ 2020-03-04T19:41:14+00:00 @@ -69,7 +72,7 @@ 2021-07-21T19:22:29+01:00 https://billthefarmer.github.io/editor/ - 2021-11-03T21:12:12+00:00 + 2022-03-02T09:34:09+00:00 https://billthefarmer.github.io/editor/categories/ diff --git a/docs/using/index.xml b/docs/using/index.xml index c35c014..b2d567a 100644 --- a/docs/using/index.xml +++ b/docs/using/index.xml @@ -93,6 +93,15 @@ Default The default character set is set to UTF-8 on selecting New from the tool 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. + + Shortcut + https://billthefarmer.github.io/editor/using/shortcut/ + Wed, 02 Mar 2022 09:34:09 +0000 + + https://billthefarmer.github.io/editor/using/shortcut/ + You may create a New file shortcut in the launcher which will open a new file in Editor. + + Highlight Syntax https://billthefarmer.github.io/editor/using/highlight-syntax/ diff --git a/fastlane/metadata/android/en-GB/changelogs/171.txt b/fastlane/metadata/android/en-GB/changelogs/171.txt new file mode 100644 index 0000000..c361502 --- /dev/null +++ b/fastlane/metadata/android/en-GB/changelogs/171.txt @@ -0,0 +1 @@ + * Add new file shortcut diff --git a/fastlane/metadata/android/en-GB/images/phoneScreenshots/p7.png b/fastlane/metadata/android/en-GB/images/phoneScreenshots/p7.png new file mode 100644 index 0000000..f57d537 Binary files /dev/null and b/fastlane/metadata/android/en-GB/images/phoneScreenshots/p7.png differ