Commit 9f08c313 authored by Matthew Zeng's avatar Matthew Zeng
Browse files

Rename apps, clarify file-sender and file-receiver, better docs

parent d25e9a14
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ Using this framework, you can use PyQt to develop powerful GUI programs to exten
| <img src="./screenshot/pdf_viewer.gif" width="400"> | <img src="./screenshot/camera.gif" width="400"> |
|                                                     |                                                 |

| File Transfer                                          | File Uploader                                          |
| File Sender                                            | File Receiver                                          |
| :--------:                                             | :----:                                                 |
| <img src="./screenshot/file_transfer.png" width="400"> | <img src="./screenshot/file_uploader.png" width="400"> |
|                                                        |                                                        |
@@ -81,12 +81,12 @@ There are mainly three obstacles:
| Image Viewer       | Type 'eaf-open' RET image filepath            |
| Markdown previewer | Type 'eaf-open' RET markdown filepath         |
| Org file previewer | Type 'eaf-open' RET org filepath              |
| Camera             | Type 'eaf-camera'                             |
| Demo               | Type 'eaf-demo'                               |
| File Transfer      | Type 'eaf-show-file-qrcode'                   |
|                    | Or use `dired-show-file-qrcode' in dired mode |
| File Uploader      | Type 'eaf-upload-file'                        |
| Air Share          | Type 'eaf-air-share'                          |
| Camera             | Type 'eaf-open-camera'                        |
| Demo               | Type 'eaf-open-demo'                          |
| File Sender        | Type 'eaf-file-sender-qrcode'                 |
|                    | Or use 'eaf-file-sender-qrcode-in-dired'      |
| File Receiver      | Type 'eaf-file-receiver-qrcode'               |
| Airshare           | Type 'eaf-file-transfer-airshare'             |

Please check [Key binding](./docs/KEYBINDING.md) to check keybinding of application.

+2 −2
Original line number Diff line number Diff line
@@ -342,7 +342,7 @@ class FileUploaderWidget(QWidget):
        self.file_name_font.setPointSize(24)

        self.file_name_label = QLabel(self)
        self.file_name_label.setText("Your file will uploading to\n{0}".format(url))
        self.file_name_label.setText("Your file will be uploaded to\n{0}".format(url))
        self.file_name_label.setFont(self.file_name_font)
        self.file_name_label.setAlignment(Qt.AlignCenter)
        self.file_name_label.setStyleSheet("color: #eee")
@@ -352,7 +352,7 @@ class FileUploaderWidget(QWidget):
        self.notify_font = QFont()
        self.notify_font.setPointSize(12)
        self.notify_label = QLabel(self)
        self.notify_label.setText("Scan above QR to uploading file.\nMake sure that your smartphone is connected to the same WiFi network as this computer.")
        self.notify_label.setText("Scan QR code above to upload a file from your smartphone.\nMake sure the smartphone is connected to the same WiFi network as this computer.")
        self.notify_label.setFont(self.notify_font)
        self.notify_label.setAlignment(Qt.AlignCenter)
        self.notify_label.setStyleSheet("color: #eee")
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ class FileTransferWidget(QWidget):
        self.notify_font = QFont()
        self.notify_font.setPointSize(12)
        self.notify_label = QLabel(self)
        self.notify_label.setText("Scan above QR and open link by browser to start downloading.\nMake sure that your smartphone is connected to the same WiFi network as this computer.")
        self.notify_label.setText("Scan QR code above to download this file on your smartphone.\nMake sure the smartphone is connected to the same WiFi network as this computer.")
        self.notify_label.setFont(self.notify_font)
        self.notify_label.setAlignment(Qt.AlignCenter)
        self.notify_label.setStyleSheet("color: #eee")
+0 −0

File moved.

Loading