From 455bbefe30e60a535ee370e77f4affb6015b1595 Mon Sep 17 00:00:00 2001 From: Yannis4444 Date: Mon, 13 Sep 2021 23:37:24 +0200 Subject: [PATCH] Shortcuts without import questions --- README.md | 10 +++++----- orangeshare/__init__.py | 2 +- orangeshare/ui/templates/shortcuts.html | 8 ++++---- setup.py | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c5d28d2..7b43e1c 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ This means that whenever you click `share` on the device you can find these shor At the bottom of this list you can find an option to edit the shown entries. Here you can add the Orange Share shortcuts to your favorites if you want them to always be at the top. -### Content Manager +### Connection Manager This shortcut is always needed to manage the connections to the host computer running Orange Share. It is the only shortcut that needs to be run directly from the Shortcuts App or added to the home screen and run from there. @@ -56,7 +56,7 @@ It is the only shortcut that needs to be run directly from the Shortcuts App or The device is able to save multiple connections while only one can be active at a time. In order to do so, some files will be created on your iCloud (`/Shortcuts/orangeshare/`). -[Download](https://www.icloud.com/shortcuts/1b8e0f8143cb4126b1df385038a3effc) +[Download](https://www.icloud.com/shortcuts/d26fc0c5c5524070bf9d166c80fabd38) ### Open @@ -65,13 +65,13 @@ The open shortcut will open content in its respective application on the compute For URLs, it will open the website in the default browser, any other files will be opened in their default applications. To make this work, files are saved in a temporary folder. -[Download](https://www.icloud.com/shortcuts/278d32893069451e987abc965f1d3780) +[Download](https://www.icloud.com/shortcuts/83a180facb2942d1baff9c3fab669880) ### Save The save shortcut will open a save-file-dialog on the computer with which shared content can be saved anywhere on the computer. -[Download](https://www.icloud.com/shortcuts/55e67abbe30c47d6a14fa50435281be7) +[Download](https://www.icloud.com/shortcuts/bdb142c161dc43019397fb3c76ce5dc9) ### Clipboard @@ -80,7 +80,7 @@ Once copied, it can be pasted anywhere. Copying files will come soon. -[Download](https://www.icloud.com/shortcuts/1f427c8806304758b3732bacaa4b76c7) +[Download](https://www.icloud.com/shortcuts/a17a5a0da8284193bb9e1ecc9a1204c4) ## Installation diff --git a/orangeshare/__init__.py b/orangeshare/__init__.py index ecf5af4..cf5bd8e 100644 --- a/orangeshare/__init__.py +++ b/orangeshare/__init__.py @@ -4,7 +4,7 @@ A small python server that accepts requests from an apple shortcut to allow sharing all sorts of media from iOS with any desktop OS """ -__version__ = "1.4.0" +__version__ = "1.4.1" __author__ = 'Yannis Vierkoetter' import logging diff --git a/orangeshare/ui/templates/shortcuts.html b/orangeshare/ui/templates/shortcuts.html index 56cecdd..ab515bb 100644 --- a/orangeshare/ui/templates/shortcuts.html +++ b/orangeshare/ui/templates/shortcuts.html @@ -127,7 +127,7 @@

Toggle Synced Connection Settings

This includes both the active connection and saved connections.

-
+
@@ -151,7 +151,7 @@

To make this work, files are saved in a temporary folder.

-
+

@@ -170,7 +170,7 @@

The save shortcut will open a save-file-dialog on the computer with which shared content can be saved anywhere on the computer.

-
+

@@ -192,7 +192,7 @@

Copying files will come soon.

-
+

\ No newline at end of file diff --git a/setup.py b/setup.py index dde8406..68234ab 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( name='orangeshare', - version='1.4.0', + version='1.4.1', description='A small python server that accepts requests from an apple shortcut to allow sharing all sorts of media from iOS with any desktop OS', long_description=long_description, long_description_content_type='text/markdown',