1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Fixing website

This commit is contained in:
Laurent Cozic 2017-11-01 17:39:56 +00:00
parent 61a74bc7e0
commit 8b454e1e95
7 changed files with 9 additions and 5 deletions

View File

@ -128,7 +128,6 @@ const headerHtml = `
`;
const footerHtml = `
<hr/>Copyright (c) 2016-2017 Laurent Cozic
</body>
</html>
`;

View File

@ -1,6 +1,6 @@
{
"name": "joplin",
"version": "0.10.64",
"version": "0.10.65",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -18,7 +18,7 @@
],
"owner": "Laurent Cozic"
},
"version": "0.10.64",
"version": "0.10.65",
"bin": {
"joplin": "./main.js"
},

View File

@ -134,6 +134,8 @@ To initiate the synchronisation process, type `:sync`. You will be asked to foll
An Android client is available and can synchronise with the terminal client via OneDrive:
<img src="https://raw.githubusercontent.com/laurent22/joplin/master/docs/images/Phone.png">
<a href='https://play.google.com/store/apps/details?id=net.cozic.joplin&utm_source=GitHub&utm_campaign=README&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="60px" src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png'/></a>
# URLs

View File

@ -293,7 +293,10 @@ class NoteScreenComponent extends BaseScreenComponent {
async attachFile_onPress() {
const res = await this.pickDocument();
if (!res) return;
if (!res) {
reg.logger().info('Did not get any file (user cancel?)');
return;
}
const localFilePath = res.uri;

BIN
docs/images/Phone.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -236,6 +236,7 @@
<pre><code>*/30 * * * * /path/to/joplin sync
</code></pre><h1 id="android-client">Android client</h1>
<p>An Android client is available and can synchronise with the terminal client via OneDrive:</p>
<p><img src="https://raw.githubusercontent.com/laurent22/joplin/master/docs/images/Phone.png"></p>
<p><a href='https://play.google.com/store/apps/details?id=net.cozic.joplin&utm_source=GitHub&utm_campaign=README&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="60px" src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png'/></a></p>
<h1 id="urls">URLs</h1>
<p>When Ctrl+Clicking a URL, most terminals will open that URL in the default browser. However, one issue, especially with long URLs, is that they can end up like this:</p>
@ -458,6 +459,5 @@ version
</script>
<hr/>Copyright (c) 2016-2017 Laurent Cozic
</body>
</html>