diff --git a/LICENSE b/LICENSE index 52bd3ac0..d83a09fd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,10 +1,19 @@ -License - The MIT License (MIT) -Copyright (c) 2011-2019 Sentaroh +Copyright (c) 2011 Sentaroh -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to +the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or +substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.MD b/README.MD index 4c4aa00e..1243b555 100644 --- a/README.MD +++ b/README.MD @@ -1,16 +1,21 @@ -# SMBSync2 +### SMBSync2 +This application performs file synchronization between an Android device and a PC/NAS via wireless LAN using SMB v1/v2/v3 protocol. +- This software includes the work that is distributed in the Apache License 2.0. +- This software includes the work that is distributed in the GNU Lesser General Public License v2.1. +- This software includes the work that is distributed in the MOZILLA PUBLIC LICENSE 1.1. +- This software includes the work that is distributed in the MIT License. -This application performs file synchronization between an Android device and a PC/NAS via wireless LAN using SMB v1/v2/v3 protocol. +### Download +It is the same thing as the APK published on Google Play. +https://github.com/Sentaroh/SMBSync2/releases -- This software includes the work that is distributed in the Apache License 2.0. -- This software includes the work that is distributed in the GNU Lesser General Public License v2.1. +### Used library +- [jcifs-ng ClientLibrary](https://github.com/AgNO3/jcifs-ng) +- [jcifs-1.3.17](https://jcifs.samba.org/) +- [Zip4J 1.3.2](https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j/1.3.2) +- [juniversalchardet-1.0.3](https://code.google.com/archive/p/juniversalchardet/) +- [Metadata-extractor](https://github.com/drewnoakes/metadata-extractor) -# Download - -- Latest version : https://drive.google.com/drive/folders/1NF9HfxxtQOAh7_8zHiHchc8fPd8z9fWt?usp=sharing -- Previous version : https://drive.google.com/drive/folders/1ORjpLNsqv7Ccv6EmN4YP0qhXy_0JYtOd?usp=sharing - -# How to Build - -- Clone from Github(https://github.com/Sentaroh/SMBSync2.git) using Android Studio 3.0 or higher(VCS-> Checkout from Version Control-> GitHub). +### How to Build +- Clone from Github(https://github.com/Sentaroh/SMBSync2.git) using Android Studio 3.0 or higher(VCS-> Checkout from Version Control-> GitHub). - Build by Android Studio. \ No newline at end of file diff --git a/SMBSync2/build.gradle b/SMBSync2/build.gradle index 5d43118a..0cfbcc6b 100644 --- a/SMBSync2/build.gradle +++ b/SMBSync2/build.gradle @@ -12,8 +12,8 @@ android { targetSdkVersion 29 // - versionCode 269 - versionName "2.38" + versionCode 276 + versionName "2.45" compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -88,7 +88,7 @@ dependencies { implementation files('libs/jcifs-ng-2.1.4-20200413-02.jar') implementation files('libs/jcifs-1.3.17_patch.jar') // implementation files('libs/JcifsFile-1.0.6.jar') - implementation files('libs/JcifsFile-1.0.8.jar') + implementation files('libs/JcifsFile-1.0.9.jar') // implementation files('libs/slf4j-api-1.7.7.jar') implementation files('libs/bcprov-jdk15on-158.jar') // implementation files('libs/WrapperForSlf4j-1.0.2.jar') @@ -99,7 +99,9 @@ dependencies { implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:preference-v7:28.0.0' + implementation 'com.android.support:design:28.0.0' + implementation files('libs/metadata-extractor-2.11.0.jar') - implementation files('libs/xmpcore-5.1.3.jar') +// implementation files('libs/xmpcore-5.1.3.jar') } diff --git a/SMBSync2/libs/JcifsFile-1.0.8.jar b/SMBSync2/libs/JcifsFile-1.0.9.jar similarity index 66% rename from SMBSync2/libs/JcifsFile-1.0.8.jar rename to SMBSync2/libs/JcifsFile-1.0.9.jar index 9ba0f20f..6e689f9d 100644 Binary files a/SMBSync2/libs/JcifsFile-1.0.8.jar and b/SMBSync2/libs/JcifsFile-1.0.9.jar differ diff --git a/SMBSync2/libs/Utilities-1.0.17.aar b/SMBSync2/libs/Utilities-1.0.17.aar index 0507fc58..f89e437a 100644 Binary files a/SMBSync2/libs/Utilities-1.0.17.aar and b/SMBSync2/libs/Utilities-1.0.17.aar differ diff --git a/SMBSync2/libs/xmpcore-5.1.3.jar b/SMBSync2/libs/xmpcore-5.1.3.jar deleted file mode 100644 index dfd0f37c..00000000 Binary files a/SMBSync2/libs/xmpcore-5.1.3.jar and /dev/null differ diff --git a/SMBSync2/src/main/AndroidManifest.xml b/SMBSync2/src/main/AndroidManifest.xml index f73d204f..80421d09 100644 --- a/SMBSync2/src/main/AndroidManifest.xml +++ b/SMBSync2/src/main/AndroidManifest.xml @@ -9,9 +9,9 @@ - - - + + + diff --git a/SMBSync2/src/main/assets/LocationPermission1-EN.jpg b/SMBSync2/src/main/assets/LocationPermission1-EN.jpg deleted file mode 100644 index 70b419a9..00000000 Binary files a/SMBSync2/src/main/assets/LocationPermission1-EN.jpg and /dev/null differ diff --git a/SMBSync2/src/main/assets/LocationPermission1-JA.jpg b/SMBSync2/src/main/assets/LocationPermission1-JA.jpg deleted file mode 100644 index a95d279f..00000000 Binary files a/SMBSync2/src/main/assets/LocationPermission1-JA.jpg and /dev/null differ diff --git a/SMBSync2/src/main/assets/LocationPermission2-EN.jpg b/SMBSync2/src/main/assets/LocationPermission2-EN.jpg deleted file mode 100644 index 78962e8c..00000000 Binary files a/SMBSync2/src/main/assets/LocationPermission2-EN.jpg and /dev/null differ diff --git a/SMBSync2/src/main/assets/LocationPermission2-JA.jpg b/SMBSync2/src/main/assets/LocationPermission2-JA.jpg deleted file mode 100644 index 83bbc16b..00000000 Binary files a/SMBSync2/src/main/assets/LocationPermission2-JA.jpg and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image003.png deleted file mode 100644 index ebebbd4a..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image004.png deleted file mode 100644 index 0bba9ecc..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_EN.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_EN.htm b/SMBSync2/src/main/assets/SMBSync2_Change_EN.htm deleted file mode 100644 index 4fbea8bd..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Change_EN.htm +++ /dev/null @@ -1,2476 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

Change history

- -

 

- -

*         -2020-10-23 Ver2.37

- -

*        -Add Chinese language to help.

- -

*         -2020-10-17 Ver2.36

- -

*        -Added the option to start the -schedule immediately on the Schedule tab

- -

*        -Add Chinese translation

- -

*         -2020-09-21 Ver2.35

- -

*        -Fixed a bug that prevented the -task list from being saved in the schedule.

- -

*         -2020-09-12 Ver2.34

- -

*        -Fixed a bug where Backround -location permissions are repeatedly displayed on Android 10

- -

*         -2020-09-12 Ver2.33

- -

*        -Resolved a bug that caused -location permissions to appear repeatedly

- -

*         -2020-09-09 Ver2.32

- -

*        -Disabled the "," in the -task and schedule names.

- -

*        -Android 11 support

- -

*         -2020-06-26 Ver2.31

- -

*        -Fixed a bug in SMBv2/3 crash the -app when connecting to some SMB servers. (To connect to a server that can only -be used with SMB3.1, use SMBv2/3(2.14) to connect to Please note that SMBv2/3 -(2.12) does not allow you to connect.)

- -

*        -Fixed a bug in which crash app -when trying to import a sync task list.

- -

*         -2020-06-20 Ver2.30

- -

*        -Improve message tab.

- -

*        -Avoidance of forced termination on -some models

- -

*         -2020-06-07 Ver2.29

- -

*        -Fixed a bug that prevented the -app's settings menu from opening on Android 5.0/5.1.

- -

*        -Fixed a bug that caused no -response when editing a synchronization task.

- -

*         -2020-06-02 Ver2.28

- -

*        -Added synchronous task -notification function to external application (QUERY/REPLY).

- -

*        -Added French and Russian.

- -

*         -2020-04-22 Ver2.27

- -

*        -Prevent app crash for some models.

- -

*         -2020-04-16 Ver2.26

- -

*        -Prevent  ANR.

- -

*        -Fixed a bug that prevented SMB -host name resolution.

- -

*         -2020-04-15 Ver2.25

- -

*        -Added “jpeg” and “jpe” file -extensions to the archive.

- -

*        -Made "Conn to AP" in -WiFi option to not need lotion permissions.

- -

*        -The length of the file name will -be an error if it is longer than 255 bytes.

- -

*        -Added an option to ignore the time -difference between Daylight Saving Time and Standard Time.

- -

*        -Added jcifs-ng 2.1.4 to the SMB -protocol.

- -

*         -2019-11-28 Ver2.24

- -

*        -Prevent app crash

- -

*         -2019-09-23 Ver2.23

- -

*        -Resolves a bug that prevents -scheduled startup from overwriting charging options

- -

*         -2019-09-07 Ver2.22

- -

*        -Fixed a bug that cannot create a -directory in Archive to SMB.

- -

*        -The timestamp was used for -temporary file names when writing to SMB.

- -

*         -2019-09-04 Ver2.21

- -

*        -Adjusted the text color in Light -Theme.

- -

*         -2019-08-16 Ver2.20

- -

*        -Prevent app crash when show log -file.

- -

*         -2019-08-16 Ver2.19

- -

*        -The sample task was not created.

- -

*        -Don't save automatically when sync -task is empty.

- -

*        -Prevent forced termination by -sending history.

- -

*         -2019-08-15 Ver2.18

- -

*        -It corresponds when crashing when -writing to SDCARD.

- -

*        -Added the option to change -"Sync start only while charging" in scheduling.

- -

*        -Changed the directory where the -log is stored to an app-specific directory.

- -

*         -2019-07-09 Ver2.17

- -

*        -Prevent app crash when import of -the sync task list.

- -

*         -2019-07-08 Ver2.13-2.16

- -

*        -Prevent app crah

- -

*         -2019-07-08 Ver2.12

- -

*        -The synchronization task list is -automatically saved when the synchronization task list is changed, the schedule -is changed, and the synchronization task list is imported. However, if you -reinstall or initialize the app, you will not be able to recover your account -name or password from the previous autosave file.

- -

*         -2019-06-27 Ver2.11

- -

*        -Fixed a bug that directory can not -be created in SMB directory selection screen.

- -

*        -Fixed a bug that schedule settings -can not be restored.

- -

*         -2019-06-22 Ver2.10

- -

*        -Fixed a bug that cannot be renamed -the schedule

- -

*         -2019-06-21 Ver2.09

- -

*        -Improve schedule notation.

- -

*         -2019-06-21 Ver2.08

- -

*        -Added schedule editing and -settings tab.

- -

*        -The icon at the top of the screen -enables or disables the scheduling function.

- -

*        -Added the option to delete the -master directory when it is empty during the move.

- -

*         -2019-06-15 Ver2.07

- -

*        -Add black theme

- -

*         -2019-06-09 Ver2.06

- -

*        -The contents of the Message tab -are saved up to 5000 lines.

- -

*        -Improved message display when -synchronous start request and accepted synchronization start request were not -performed.

- -

*         -2019-05-29 Ver2.05

- -

*        -Supported when IPV6 addresses are -returned in name resolution from DNS

- -

*        -Resolves a bug that kills when -unable to get the date and time from EXIF in the archive.

- -

*         -2019-05-15 Ver2.04

- -

*        -Solved the bug that the file name -is the same but the error is caused by the difference between upper and lower -case in synchronization with SDCARD

- -

*         -2019-05-14 Ver2.03

- -

*        -Avoid NPE in SMB folder editing

- -

*         -2019-05-13 Ver2.02

- -

*        -Avoid crash in sync task editing -in Android 5.0

- -

*        -Avoid crash on SMB Server Scan

- -

*        -Change of SDCARD recognition -method

- -

*         -2019-05-11 Ver2.01

- -

*        -Added option to allow sync with -global IP address

- -

*         -2019-05-02 Ver2.00

- -

*        -Enabled to sync on networks other -than WiFi.

- -

*        -Fix a bug that shows errors on the -schedule.

- -

*        -The operation of the schedule list -(deletion, addition, renaming, editing, etc.) is immediately reflected.

- -

*         -2019-04-27 Ver1.99

- -

*        -Resolves a bug that SDCARD cannot -recognize.

- -

*         -2019-04-19 Ver1.98

- -

*        -Improved the Write permission of -SDCARD/USB media in Android 7 or higher.

- -

*         -2019-04-18 Ver1.97

- -

*        -Added option for SMB V2/3 (Please -enable “Use SMB2 Negotiation” when SMB V2/3 can not be used on SMB2.02 devices)

- -

*        -In the schedule function, when the -app does not turn on Wi-Fi, the Wi-Fi is not turned off.

- -

*         -2019-04-10 Ver1.96

- -

*        -Ver1.80 not crash when migrating -from earlier versions to the latest version.

- -

*         -2019-04-09 Ver1.95

- -

*        -SMB Server Search results enabled -to display the SMB version.

- -

*        -Improved SDCARD/USB media-related -notation.

- -

*        -The SMB protocol default when -adding the synchronization task was changed from SMBv1 to SMBv2/3.

- -

*         -2019-03-29 Ver1.94

- -

*        -Support SMB V3 protocol (SMB V2/3 -(2.12))

- -

*         -2019-03-23 Ver1.93

- -

*        -Adding and correcting error -messages

- -

*         -2019-03-16 Ver1.92

- -

*        -NPE Prevention in renaming -schedules

- -

*         -2019-03-04 Ver1.91

- -

*        -Fixed a bug that failed to break when -writing a problem or question in system information.

- -

*         -2019-03-03 Ver1.90

- -

*        -Fixed a bug that would cause an -error when a ZIP file does not exist in sync to zip.

- -

*         -2019-02-23 Ver1.89

- -

*        -A warning message is displayed -when the location service is disabled in ANDROID9.

- -

*         -2019-02-23 Ver1.88

- -

*        -ANR avoidance.

- -

*        -A warning message is displayed -when the shooting date and time cannot be retrieved with Copy/move.

- -

*         -2019-02-18 Ver1.87

- -

*        -Added jcifs-ng 2.11 (SMBv2 (2.11)) -to the SMB protocol

- -

*        -Copy/Move allows you to use -JPG/GIF/MP4/MOV shooting date in target directory name.

- -

*        -Improved SDCARD processing speed

- -

*         -2019-01-31 Ver1.86

- -

*        -ANR avoidance in file selection.

- -

*         -2019-01-26 Ver1.85

- -

*        -Fixed bug that SDCARD-TO-USB and -USB-TO-SDCARD are not processed

- -

*         -2019-01-18 Ver1.84

- -

*        -To include SMB v1 logs in the app -log

- -

*         -2019-01-14 Ver1.83

- -

*        -NPE prevention in file/directory -selection.

- -

*         -2019-01-13 Ver1.82

- -

*        -Made SDcard available for task -Export/task Import

- -

*         -2019-01-10 Ver1.81

- -

*        -ANR avoidance in file selection.

- -

*        -Fixed a problem that SDCARD can -not be used on Android 9.

- -

*         -2019-01-03 Ver1.80

- -

*        -English notation was improved.

- -

*        -Allow password authentication to -access some features by settings.

- -

*        -Hide SMB folder's account name and -password by settings.

- -

*        -Fixed a bug where the retention -period was ignored in the archive.

- -

*         -2018-11-04 Ver1.79

- -

*        -Added option to skip -directories/files where unusable characters are used.

- -

*         -2018-10-26 Ver1.78

- -

*        -Fixed bug that directory selection -of internal storage can not be done by long press

- -

*        -Added error message when -synchronizing from internal storage to SMB/SDCARD/USB media when using -characters that can not be used with file name or directory name

- -

*        -The Wi-Fi IP address can be -specified as the condition that sync can be started in the sync task. (Please -use if you do not want to enable location service to get SSID on Android 9)

- -

*         -2018-09-07 Ver1.77

- -

*        -Changed not to display archive -options in master folder

- -

*         -2018-09-04 Ver1.76

- -

*        -Changed to show options in archive -in target folder

- -

*        -Added option to use Android -standard function for handling messages on message tab(Settings-Other-Text -processing of sync messages)

- -

If you see symptoms such as no message display or -forced termination on the Sync Message tab, please enable it.

- -

*         -2018-09-01 Ver1.75

- -

*        -Changed the name from -"external SDCARD" to "SDCARD"

- -

*        -Fix minor bug

- -

*         -2018-08-30 Ver1.74

- -

*        -Resolved a bug that could corrupt -ZIP files with mirror to ZIP file

- -

*         -2018-08-30 Ver1.73

- -

*        -Add 1 to 4 minutes to the interval -schedule

- -

*        -Fix minor bug

- -

*         -2018-08-27 Ver1.72

- -

*        -Fix minor bug

- -

*         -2018-08-26 Ver1.71

- -

*        -A confirmation message is -displayed when shooting date and time can not be acquired from Exif at the time -of archiving.

- -

*        -Add the monthly schedule

- -

*         -2018-08-15 Ver1.70

- -

*        -Resolved bug that file is not -selected/excluded by file filter

- -

*         -2018-08-13 Ver1.69

- -

*        -Fixed a bug that crashes with -synchronization from Android/data/ on SDCARD.

- -

*        -Added a sync button on Sync task -list

- -

*        -An option for dealing with the -delay of synchronization during sleep in some models was added to the setting.

- -

*        -To support USB media.

- -

*         -2018-07-11 Ver1.68

- -

*        -Fixed a bug that can not be -selected by pressing and holding on the directory selection screen

- -

*         -2018-07-11 Ver1.67

- -

*        -Fixed a bug that can not be -selected by pressing long on the directory selection filter screen.

- -

*         -2018-07-04 Ver1.66

- -

*        -Resolved a bug that crashes with -capturing date and time in archive.

- -

*        -Resolved bug that SDCARD can not -be selected.

- -

*         -2018-06-28 Ver1.65

- -

*        -Delete " Do not change the file contents until the copy/move is -complete" of the synchronous option and always make " Do not change the file contents until the copy/move is -complete".

- -

*        -Improved the recognition method of -SDCARD so that UUID can use 0000-0000.

- -

*        -When the file information of -SDCARD is different from the media store, a warning message is displayed and -synchronized using the information of the file.

- -

*         -2018-06-22 Ver1.64

- -

*        -I set Coarse location permissions -only for Android 8.1 so that I will not request permission every time.

- -

*        -It corresponds to the fact that -the last update time of the file can not be changed with some models

- -

*         -2018-06-13 Ver1.63

- -

*        -Change of SDCARD recognition -method

- -

*        -Enabled SDCARD selection from the -menu

- -

*        -It was to avoid an error in sync -during sleep in Android8.1

- -

*         -2018-06-12 Ver1.62

- -

*        -Added send button to system -information.

- -

*         -2018-06-10 Ver1.61

- -

*        -Fixed a bug that crashes when -importing encrypted task list

- -

*         -2018-06-08 Ver1.60

- -

*        -Fixed a bug where notification -messages are always displayed

- -

*         -2018-06-07 Ver1.57-1.59

- -

*        -Fixed a bug that overwrites -incorrectly if you repeatedly sync to SDCARD

- -

*        -Fixed a bug that may fail to write -to SDCARD on Android 7 and higher

- -

*         -2018-06-05 Ver1.56

- -

*        -Fixed a bug that external SDCARD -could not be selected with some models.

- -

*         -2018-06-05 Ver1.55

- -

*        -Fixed loop bug when target folder -is ZIP and SDCARD selection when saving to SDCARD

- -

*         -2018-06-03 Ver1.54

- -

*        -Avoid bug that display is -disturbed on some tablets

- -

*        -Vibration and sound uninterrupted -when the end of the sync

- -

*         -2018-05-20 Ver1.53

- -

*        -The last update time of the file -written to SDCARD on Android 7.0 and later is made the same as the copy source -file

- -

*        -Fixed a bug where only the first -scheduled items on multiple schedules are executed.

- -

*         -2018-05-14 Ver1.52

- -

*        -Prevent application crash when -sync task edit.

- -

*         -2018-05-13 Ver1.50-1.51

- -

*        -Avoid the application crash when -the sync start time

- -

*         -2018-05-13 Ver1.49

- -

*        -Prevent App crash

- -

*         -2018-05-12 Ver1.47-1.48

- -

*        -Add archive to sync type.

- -

You can move photos and video files from master to -target, you can archive more than 7 days or more than 1 year since the shooting -date and time.

- -

*        -Added option to judge as -difference file only when master file size is large. (The special option -"Only when the file size of the master is large is determined as the -difference file")

- -

*        -Fixed a bug that only one run when -multiple schedules were executed at the same time. (However, you can not -schedule the same synchronization task at the same time)

- -

*         -2018-05-02 Ver1.45-1.46

- -

*        -To prevent app crash

- -

*        -Added mp4 to "Sync video -files"

- -

*        -When the file is copied to the -internal storage, it is set to the same last update time as the copy source

- -

*         -2018-04-16 Ver1.44

- -

*        -When "[" or -"]" is included in the directory name or file name, it will not -disappear when restarting the application

- -

*        -Added option to restore SMB1 -setting value to initial value in setting

- -

*         -2018-04-12 Ver1.43

- -

*        -When the last update time of the -file copied/moved to the SMB folder can not be made the same as the copy -source, a message is displayed so that it is not set as an error.

- -

*        -Change the default value of SMB1 -setting

- -

Ÿ   lmCompatibility                  -> -3

- -

Ÿ   Use extended security        -> -true

- -

*         -2018-04-10 Ver1.42

- -

*        -Fixed a bug that SDCARD directory -can not be selected

- -

*         -2018-04-09 Ver1.40-41

- -

*        -Fixed a bug that caused Access -Denied to sync to SMB server

- -

*        -Fixed a bug that application crash

- -

*         -2018-04-08 Ver1.39

- -

*        -Avoid "TreeId is NULL" -error on SMB2

- -

*        -Resolved a bug that SMB-SMB move -fails

- -

*        -Resolved a bug that crashes rarely -with SMB sync folder editing

- -

*        -It is possible to set not to create -details of synchronization history (Settings -> Sync -> Sync History)

- -

*         -2018-04-02 Ver1.38

- -

*        -A directory can be created by directory -selection from SMB server

- -

*        -Fixed a bug that anonymous login failure

- -

*         -2018-04-01 Ver1.36-37

- -

*        -Correction of SMB Protocol processing

- -

*         -2018-03-31 Ver1.35

- -

*        -Separate processing at SMB1 and -SMB2

- -

*         -2018-03-31 Ver1.34

- -

*        -Change SMB protocol to "SMB 1 -only" when creating new sync task

- -

*         -2018-03-30 Ver1.33

- -

*        -We responded to problems with SMB1 -equipment accompanying SMB2 support.

- -

*         -2018-03-28 Ver1.32

- -

*        -Fixed a bug that SMB - SDCARD/Internal -storage deletes files with mirror

- -

*         -2018-03-27 Ver1.31

- -

*        -SMB2(2.01) enabled.

- -

*         -2018-03-20 Ver1.29-1.30

- -

*        -To allow for multiple schedule

- -

*        -“Sync is started only during -charging" is added to the sync task option

- -

*        -Prevented excluded directories -from being created as empty directories

- -

*        -Improved deletion of unusable -characters by directory and file name

- -

*         -2018-02-28 Ver1.28

- -

*        -To the exclusion of higher-level -directory in the directory filters, and lower directory If you select a sub-directory -will be synchronized. (It becomes valid when checking "Use expanded -directory selection/exclusion filter" in the synchronization task)

- -

*        -Add to sync task the option to -display a warning message to the sync task at the start when you are not connected -to the SSID of the Wi-Fi access point list to start the next task.

- -

*         -2018-02-22 Ver1.27

- -

*        -Fixed a bug that will be copied -every time in synchronization from SMB to SDCARD

- -

*        -Added keyword of year/month/day to -target directory or ZIP file name. Keywords are replaced by the year, month and -date at the start of sync task.

- -

-%YEAR% the year (such as 2018 or 2019)

- -

-%MONTH% month (01 to 12)

- -

-%DAY% day (01 to 31)

- -

-%DAY-OF-YEAR% days since the beginning of the year (001 -to  365, leap year 366)

- -

*         -2018-02-16 Ver1.26

- -

*        -Added synchronization between SMB -servers.

- -

*        -Shortcut is to be created in the -Android 8.

- -

*        -0 byte files when synchronized to -an external SDCARD was not allowed to be created in test mode.

- -

*         -2016-11-07 Ver1.25

- -

*        -In synchronization with the SMB -server, eliminating the problem of an error during synchronization.

- -

*        -Change the internal processing of -external SDCARD access.

- -

*         -2016-10-24 Ver1.24

- -

*        -Using the DNS when a failed SMB -name resolution has to be the name resolution. However, the need is that the -name is specified by FQDN as such win-srv.test.domain.com.

- -

*         -2016-09-30 Ver1.23

- -

*        -To be able to set the volume of -the notification sound.

- -

*         -2016-09-26 Ver1.22

- -

*        -Resolve the bug that option is not -saved in the "To use the last update time of the file to the difference -judgment" and "To use the file size to the difference judgment"

- -

*         -2016-09-23 Ver1.21

- -

*        -Added an option to show a -notification message.

- -

*         -2016-09-01 Ver1.20

- -

*        -Resolve the bug that empty -directory is not sync with the sync to external SDCARD.

- -

*         -2016-08-21 Ver1.19

- -

*        -Allowed to prevent the overwriting -of files in the sync options.

- -

*         -2016-08-16 Ver1.18

- -

*        -Disable FastScroll in the -Directory selection screen

- -

*         -2016-08-02 Ver1.17

- -

*        -Resolve the bug that duplicated in -synchronization start from the external application

- -

*        -Reduction of the deletion time in -the mirror to the ZIP file

- -

*         -2016-06-26 Ver1.16

- -

*        -Resolve the bug that can not be -external SD card recognition

- -

*         -2016-06-26 Ver1.15

- -

*        -Added USB folder -path(/storage/emulated/UsbDriveA, /storage/emulated/UsbDriveB)

- -

*         -2016-06-25 Ver1.14

- -

*        -Resolve an empty directory is not -reflected bug when synchronized with the ZIP

- -

*         -2016-06-23 Ver1.13 -

- -

*        -Add sync, copy or move from the -internal storage to the ZIP file (internal storage or external SDCARD)

- -

*         -2016-06-17 Ver1.12 -

- -

*        -Add path /Removable/MicroSD for -SDCARD

- -

*         -2016-06-17 Ver1.11 -

- -

*        -Resolve the bug to be killed when -the application is started with the intent at the time of the screen off.

- -

*         -2016-06-13 Ver1.10 -

- -

*        -Resolve the bug of name resolution -of the SMB host name.

- -

*        -Notification messages display -optimization.

- -

*         -2016-05-29 Ver1.09 -

- -

*        -It was strictly a test to access -the same directory on the master and the target.

- -

*        -Resolve the bug to be killed in -the deletion of the WiFi access point.

- -

*         -2016-05-25 Ver1.08 -

- -

*        -Add help to the synchronization -task add and edit screen

- -

*        -Change the UI of the file selection, -1. Selection is to tap the name of the file or directory name. 2. display of -the sub-directory is to tap the left edge of the icon. 3. abolish the long tap.

- -

*        -Added an option to fix the -orientation of the screen to portrait

- -

*         -2016-05-16 Ver1.07 -

- -

*        -Change the Help file to link to -the Google Drive has a small file size.

- -

*        -Resolve the bug that can not be -added in the file and directory filter.

- -

*        -Improve the UI of the file filter

- -

*         -2016-05-07 Ver1.06 -

- -

*        -Add external SDCARD path -(/storage/MicroSD, /storage/extSdCard and /mnt/extSdCard)

- -

*        -Resolve not copied bug in -synchronization to an external SD card

- -

*         -2016-05-03 Ver1.05 -

- -

*        -It was to be able to specify a -wireless LAN access point to allow sync with the sync options.

- -

*        -Improved the user interface for -the selection of external SDCARD.

- -

*         -2016-04-16 Ver1.04 -

- -

*        -To be able to import a task list -from exported SMBSync profile.

- -

*         -2016-04-14 Ver1.03 -

- -

*        -Improve performance

- -

*        -Resolve the bug that settings -value is not restored during import task list.

- -

*         -2016-04-10 Ver1.02 -

- -

*        -Fixed a bug that not be moved a file from SDCARD.

- -

*        -Resolve the bug can not be -mirrored in the some of the directory.

- -

*         -2016-04-09 Ver1.00

- -

*         -Initial release

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_EN.html b/SMBSync2/src/main/assets/SMBSync2_Change_EN.html new file mode 100644 index 00000000..3e624cd4 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Change_EN.html @@ -0,0 +1,761 @@ + + + + +SMBSync2_Change_EN +

2020-11-24 Ver2.44

+
    +
  • Allowed to change the font size in the settings. (80%,100%,120%,160%)
  • + +
+

2020-11-21 Ver2.43

+
    +
  • added support for SMB timeout value in SMBv2/3
  • +
  • Corrected the Italian translation
  • +
  • Scrolling Tab enabled
  • + +
+

2020-11-13 Ver2.42

+
    +
  • Update task help file
  • + +
+

2020-11-12 Ver2.41

+
    +
  • Update help file
  • + +
+

2020-11-03 Ver2.39

+
    +
  • Location permissions are no longer used to comply with the Google Play Privacy Policy. (Access point lists are not available as an option for synchronization tasks.)
  • +
  • Add Italian translation
  • + +
+

2020-10-28 Ver2.38

+
    +
  • Update privacy policy
  • + +
+

2020-10-23 Ver2.37

+
    +
  • Add Chinese language to help.
  • + +
+

2020-10-17 Ver2.36

+
    +
  • Added the option to start the schedule immediately on the Schedule tab
  • +
  • Add Chinese translation
  • + +
+

2020-09-21 Ver2.35

+
    +
  • Fixed a bug that prevented the task list from being saved in the schedule.
  • + +
+

2020-09-12 Ver2.34

+
    +
  • Fixed a bug where Backround location permissions are repeatedly displayed on Android 10
  • + +
+

2020-09-12 Ver2.33

+
    +
  • Resolved a bug that caused location permissions to appear repeatedly
  • + +
+

2020-09-09 Ver2.32

+
    +
  • Disabled the "," in the task and schedule names.
  • +
  • Android 11 support
  • + +
+

2020-06-26 Ver2.31

+
    +
  • Fixed a bug in SMBv2/3 crash the app when connecting to some SMB servers. (To connect to a server that can only be used with SMB3.1, use SMBv2/3(2.14) to connect to Please note that SMBv2/3 (2.12) does not allow you to connect.)
  • +
  • Fixed a bug in which crash app when trying to import a sync task list.
  • + +
+

2020-06-20 Ver2.30

+
    +
  • Improve message tab.
  • +
  • Avoidance of forced termination on some models
  • + +
+

2020-06-07 Ver2.29

+
    +
  • Fixed a bug that prevented the app's settings menu from opening on Android 5.0/5.1.
  • +
  • Fixed a bug that caused no response when editing a synchronization task.
  • + +
+

2020-06-02 Ver2.28

+
    +
  • Added synchronous task notification function to external application (QUERY/REPLY).
  • +
  • Added French and Russian.
  • + +
+

2020-04-22 Ver2.27

+
    +
  • Prevent app crash for some models.
  • + +
+

2020-04-16 Ver2.26

+
    +
  • Prevent ANR.
  • +
  • Fixed a bug that prevented SMB host name resolution.
  • + +
+

2020-04-15 Ver2.25

+
    +
  • Added 窶徊peg窶 and 窶徊pe窶 file extensions to the archive.
  • +
  • Made "Conn to AP" in WiFi option to not need lotion permissions.
  • +
  • The length of the file name will be an error if it is longer than 255 bytes.
  • +
  • Added an option to ignore the time difference between Daylight Saving Time and Standard Time.
  • +
  • Added jcifs-ng 2.1.4 to the SMB protocol.
  • + +
+

2019-11-28 Ver2.24

+
    +
  • Prevent app crash
  • + +
+

2019-09-23 Ver2.23

+
    +
  • Resolves a bug that prevents scheduled startup from overwriting charging options
  • + +
+

2019-09-07 Ver2.22

+
    +
  • Fixed a bug that cannot create a directory in Archive to SMB.
  • +
  • The timestamp was used for temporary file names when writing to SMB.
  • + +
+

2019-09-04 Ver2.21

+
    +
  • Adjusted the text color in Light Theme.
  • + +
+

2019-08-16 Ver2.20

+
    +
  • Prevent app crash when show log file.
  • + +
+

2019-08-16 Ver2.19

+
    +
  • The sample task was not created.
  • +
  • Don't save automatically when sync task is empty.
  • +
  • Prevent forced termination by sending history.
  • + +
+

2019-08-15 Ver2.18

+
    +
  • It corresponds when crashing when writing to SDCARD.
  • +
  • Added the option to change "Sync start only while charging" in scheduling.
  • +
  • Changed the directory where the log is stored to an app-specific directory.
  • + +
+

2019-07-09 Ver2.17

+
    +
  • Prevent app crash when import of the sync task list.
  • + +
+

2019-07-08 Ver2.13-2.16

+
    +
  • Prevent app crah
  • + +
+

2019-07-08 Ver2.12

+
    +
  • The synchronization task list is automatically saved when the synchronization task list is changed, the schedule is changed, and the synchronization task list is imported. However, if you reinstall or initialize the app, you will not be able to recover your account name or password from the previous autosave file.
  • + +
+

2019-06-27 Ver2.11

+
    +
  • Fixed a bug that directory can not be created in SMB directory selection screen.
  • +
  • Fixed a bug that schedule settings can not be restored.
  • + +
+

2019-06-22 Ver2.10

+
    +
  • Fixed a bug that cannot be renamed the schedule
  • + +
+

2019-06-21 Ver2.09

+
    +
  • Improve schedule notation.
  • + +
+

2019-06-21 Ver2.08

+
    +
  • Added schedule editing and settings tab.
  • +
  • The icon at the top of the screen enables or disables the scheduling function.
  • +
  • Added the option to delete the master directory when it is empty during the move.
  • + +
+

2019-06-15 Ver2.07

+
    +
  • Add black theme
  • + +
+

2019-06-09 Ver2.06

+
    +
  • The contents of the Message tab are saved up to 5000 lines.
  • +
  • Improved message display when synchronous start request and accepted synchronization start request were not performed.
  • + +
+

2019-05-29 Ver2.05

+
    +
  • Supported when IPV6 addresses are returned in name resolution from DNS
  • +
  • Resolves a bug that kills when unable to get the date and time from EXIF in the archive.
  • + +
+

2019-05-15 Ver2.04

+
    +
  • Solved the bug that the file name is the same but the error is caused by the difference between upper and lower case in synchronization with SDCARD
  • + +
+

2019-05-14 Ver2.03

+
    +
  • Avoid NPE in SMB folder editing
  • + +
+

2019-05-13 Ver2.02

+
    +
  • Avoid crash in sync task editing in Android 5.0
  • +
  • Avoid crash on SMB Server Scan
  • +
  • Change of SDCARD recognition method
  • + +
+

2019-05-11 Ver2.01

+
    +
  • Added option to allow sync with global IP address
  • + +
+

2019-05-02 Ver2.00

+
    +
  • Enabled to sync on networks other than WiFi.
  • +
  • Fix a bug that shows errors on the schedule.
  • +
  • The operation of the schedule list (deletion, addition, renaming, editing, etc.) is immediately reflected.
  • + +
+

2019-04-27 Ver1.99

+
    +
  • Resolves a bug that SDCARD cannot recognize.
  • + +
+

2019-04-19 Ver1.98

+
    +
  • Improved the Write permission of SDCARD/USB media in Android 7 or higher.
  • + +
+

2019-04-18 Ver1.97

+
    +
  • Added option for SMB V2/3 (Please enable 窶弑se SMB2 Negotiation窶 when SMB V2/3 can not be used on SMB2.02 devices)
  • +
  • In the schedule function, when the app does not turn on Wi-Fi, the Wi-Fi is not turned off.
  • + +
+

2019-04-10 Ver1.96

+
    +
  • Ver1.80 not crash when migrating from earlier versions to the latest version.
  • + +
+

2019-04-09 Ver1.95

+
    +
  • SMB Server Search results enabled to display the SMB version.
  • +
  • Improved SDCARD/USB media-related notation.
  • +
  • The SMB protocol default when adding the synchronization task was changed from SMBv1 to SMBv2/3.
  • + +
+

2019-03-29 Ver1.94

+
    +
  • Support SMB V3 protocol (SMB V2/3 (2.12))
  • + +
+

2019-03-23 Ver1.93

+
    +
  • Adding and correcting error messages
  • + +
+

2019-03-16 Ver1.92

+
    +
  • NPE Prevention in renaming schedules
  • + +
+

2019-03-04 Ver1.91

+
    +
  • Fixed a bug that failed to break when writing a problem or question in system information.
  • + +
+

2019-03-03 Ver1.90

+
    +
  • Fixed a bug that would cause an error when a ZIP file does not exist in sync to zip.
  • + +
+

2019-02-23 Ver1.89

+
    +
  • A warning message is displayed when the location service is disabled in ANDROID9.
  • + +
+

2019-02-23 Ver1.88

+
    +
  • ANR avoidance.
  • +
  • A warning message is displayed when the shooting date and time cannot be retrieved with Copy/move.
  • + +
+

2019-02-18 Ver1.87

+
    +
  • Added jcifs-ng 2.11 (SMBv2 (2.11)) to the SMB protocol
  • +
  • Copy/Move allows you to use JPG/GIF/MP4/MOV shooting date in target directory name.
  • +
  • Improved SDCARD processing speed
  • + +
+

2019-01-31 Ver1.86

+
    +
  • ANR avoidance in file selection.
  • + +
+

2019-01-26 Ver1.85

+
    +
  • Fixed bug that SDCARD-TO-USB and USB-TO-SDCARD are not processed
  • + +
+

2019-01-18 Ver1.84

+
    +
  • To include SMB v1 logs in the app log
  • + +
+

2019-01-14 Ver1.83

+
    +
  • NPE prevention in file/directory selection.
  • + +
+

2019-01-13 Ver1.82

+
    +
  • Made SDcard available for task Export/task Import
  • + +
+

2019-01-10 Ver1.81

+
    +
  • ANR avoidance in file selection.
  • +
  • Fixed a problem that SDCARD can not be used on Android 9.
  • + +
+

2019-01-03 Ver1.80

+
    +
  • English notation was improved.
  • +
  • Allow password authentication to access some features by settings.
  • +
  • Hide SMB folder's account name and password by settings.
  • +
  • Fixed a bug where the retention period was ignored in the archive.
  • + +
+

2018-11-04 Ver1.79

+
    +
  • Added option to skip directories/files where unusable characters are used.
  • + +
+

2018-10-26 Ver1.78

+
    +
  • Fixed bug that directory selection of internal storage can not be done by long press
  • +
  • Added error message when synchronizing from internal storage to SMB/SDCARD/USB media when using characters that can not be used with file name or directory name
  • +
  • The Wi-Fi IP address can be specified as the condition that sync can be started in the sync task. (Please use if you do not want to enable location service to get SSID on Android 9)
  • + +
+

2018-09-07 Ver1.77

+
    +
  • Changed not to display archive options in master folder
  • + +
+

2018-09-04 Ver1.76

+
    +
  • Changed to show options in archive in target folder
  • +
  • Added option to use Android standard function for handling messages on message tab(Settings-Other-Text processing of sync messages) +If you see symptoms such as no message display or forced termination on the Sync Message tab, please enable it.
  • + +
+

2018-09-01 Ver1.75

+
    +
  • Changed the name from "external SDCARD" to "SDCARD"
  • +
  • Fix minor bug
  • + +
+

2018-08-30 Ver1.74

+
    +
  • Resolved a bug that could corrupt ZIP files with mirror to ZIP file
  • + +
+

2018-08-30 Ver1.73

+
    +
  • Add 1 to 4 minutes to the interval schedule
  • +
  • Fix minor bug
  • + +
+

2018-08-27 Ver1.72

+
    +
  • Fix minor bug
  • + +
+

2018-08-26 Ver1.71

+
    +
  • A confirmation message is displayed when shooting date and time can not be acquired from Exif at the time of archiving.
  • +
  • Add the monthly schedule
  • + +
+

2018-08-15 Ver1.70

+
    +
  • Resolved bug that file is not selected/excluded by file filter
  • + +
+

2018-08-13 Ver1.69

+
    +
  • Fixed a bug that crashes with synchronization from Android/data/ on SDCARD.
  • +
  • Added a sync button on Sync task list
  • +
  • An option for dealing with the delay of synchronization during sleep in some models was added to the setting.
  • +
  • To support USB media.
  • + +
+

2018-07-11 Ver1.68

+
    +
  • Fixed a bug that can not be selected by pressing and holding on the directory selection screen
  • + +
+

2018-07-11 Ver1.67

+
    +
  • Fixed a bug that can not be selected by pressing long on the directory selection filter screen.
  • + +
+

2018-07-04 Ver1.66

+
    +
  • Resolved a bug that crashes with capturing date and time in archive.
  • +
  • Resolved bug that SDCARD can not be selected.
  • + +
+

2018-06-28縲Ver1.65

+
    +
  • Delete " Do not change the file contents until the copy/move is complete" of the synchronous option and always make " Do not change the file contents until the copy/move is complete".
  • +
  • Improved the recognition method of SDCARD so that UUID can use 0000-0000.
  • +
  • When the file information of SDCARD is different from the media store, a warning message is displayed and synchronized using the information of the file.
  • + +
+

2018-06-22縲Ver1.64

+
    +
  • I set Coarse location permissions only for Android 8.1 so that I will not request permission every time.
  • +
  • It corresponds to the fact that the last update time of the file can not be changed with some models
  • + +
+

2018-06-13縲Ver1.63

+
    +
  • Change of SDCARD recognition method
  • +
  • Enabled SDCARD selection from the menu
  • +
  • It was to avoid an error in sync during sleep in Android8.1
  • + +
+

2018-06-12縲Ver1.62

+
    +
  • Added send button to system information.
  • + +
+

2018-06-10縲Ver1.61

+
    +
  • Fixed a bug that crashes when importing encrypted task list
  • + +
+

2018-06-08縲Ver1.60

+
    +
  • Fixed a bug where notification messages are always displayed
  • + +
+

2018-06-07縲Ver1.57-1.59

+
    +
  • Fixed a bug that overwrites incorrectly if you repeatedly sync to SDCARD
  • +
  • Fixed a bug that may fail to write to SDCARD on Android 7 and higher
  • + +
+

2018-06-05縲Ver1.56

+
    +
  • Fixed a bug that external SDCARD could not be selected with some models.
  • + +
+

2018-06-05縲Ver1.55

+
    +
  • Fixed loop bug when target folder is ZIP and SDCARD selection when saving to SDCARD
  • + +
+

2018-06-03縲Ver1.54

+
    +
  • Avoid bug that display is disturbed on some tablets
  • +
  • Vibration and sound uninterrupted when the end of the sync
  • + +
+

2018-05-20縲Ver1.53

+
    +
  • The last update time of the file written to SDCARD on Android 7.0 and later is made the same as the copy source file
  • +
  • Fixed a bug where only the first scheduled items on multiple schedules are executed.
  • + +
+

2018-05-14縲Ver1.52

+
    +
  • Prevent application crash when sync task edit.
  • + +
+

2018-05-13縲Ver1.50-1.51

+
    +
  • Avoid the application crash when the sync start time
  • + +
+

2018-05-13縲Ver1.49

+
    +
  • Prevent App crash
  • + +
+

2018-05-12縲Ver1.47-1.48

+
    +
  • Add archive to sync type. +You can move photos and video files from master to target, you can archive more than 7 days or more than 1 year since the shooting date and time.
  • +
  • Added option to judge as difference file only when master file size is large. (The special option "Only when the file size of the master is large is determined as the difference file")
  • +
  • Fixed a bug that only one run when multiple schedules were executed at the same time. (However, you can not schedule the same synchronization task at the same time)
  • + +
+

2018-05-02縲Ver1.45-1.46

+
    +
  • To prevent app crash
  • +
  • Added mp4 to "Sync video files"
  • +
  • When the file is copied to the internal storage, it is set to the same last update time as the copy source
  • + +
+

2018-04-16縲Ver1.44

+
    +
  • When "[" or "]" is included in the directory name or file name, it will not disappear when restarting the application
  • +
  • Added option to restore SMB1 setting value to initial value in setting
  • + +
+

2018-04-12縲Ver1.43

+
    +
  • When the last update time of the file copied/moved to the SMB folder can not be made the same as the copy source, a message is displayed so that it is not set as an error.
  • +
  • Change the default value of SMB1 setting +ぁ lmCompatibility -> 3 +ぁ Use extended security -> true
  • + +
+

2018-04-10縲Ver1.42

+
    +
  • Fixed a bug that SDCARD directory can not be selected
  • + +
+

2018-04-09縲Ver1.40-41

+
    +
  • Fixed a bug that caused Access Denied to sync to SMB server
  • +
  • Fixed a bug that application crash
  • + +
+

2018-04-08縲Ver1.39

+
    +
  • Avoid "TreeId is NULL" error on SMB2
  • +
  • Resolved a bug that SMB-SMB move fails
  • +
  • Resolved a bug that crashes rarely with SMB sync folder editing
  • +
  • It is possible to set not to create details of synchronization history (Settings -> Sync -> Sync History)
  • + +
+

2018-04-02縲Ver1.38

+
    +
  • A directory can be created by directory selection from SMB server
  • +
  • Fixed a bug that anonymous login failure
  • + +
+

2018-04-01縲Ver1.36-37

+
    +
  • Correction of SMB Protocol processing
  • + +
+

2018-03-31縲Ver1.35

+
    +
  • Separate processing at SMB1 and SMB2
  • + +
+

2018-03-31縲Ver1.34

+
    +
  • Change SMB protocol to "SMB 1 only" when creating new sync task
  • + +
+

2018-03-30縲Ver1.33

+
    +
  • We responded to problems with SMB1 equipment accompanying SMB2 support.
  • + +
+

2018-03-28縲Ver1.32

+
    +
  • Fixed a bug that SMB - SDCARD/Internal storage deletes files with mirror
  • + +
+

2018-03-27縲Ver1.31

+
    +
  • SMB2(2.01) enabled.
  • + +
+

2018-03-20縲Ver1.29-1.30

+
    +
  • To allow for multiple schedule
  • +
  • 窶彜ync is started only during charging" is added to the sync task option
  • +
  • Prevented excluded directories from being created as empty directories
  • +
  • Improved deletion of unusable characters by directory and file name
  • + +
+

2018-02-28縲Ver1.28

+
    +
  • To the exclusion of higher-level directory in the directory filters, and lower directory If you select a sub-directory will be synchronized. (It becomes valid when checking "Use expanded directory selection/exclusion filter" in the synchronization task)
  • +
  • Add to sync task the option to display a warning message to the sync task at the start when you are not connected to the SSID of the Wi-Fi access point list to start the next task.
  • + +
+

2018-02-22縲Ver1.27

+
    +
  • Fixed a bug that will be copied every time in synchronization from SMB to SDCARD
  • +
  • Added keyword of year/month/day to target directory or ZIP file name. Keywords are replaced by the year, month and date at the start of sync task. +-%YEAR% the year (such as 2018 or 2019) +-%MONTH% month (01 to 12) +-%DAY% day (01 to 31) +-%DAY-OF-YEAR% days since the beginning of the year (001 to 縲365, leap year 366)
  • + +
+

2018-02-16縲Ver1.26

+
    +
  • Added synchronization between SMB servers.
  • +
  • Shortcut is to be created in the Android 8.
  • +
  • 0 byte files when synchronized to an external SDCARD was not allowed to be created in test mode.
  • + +
+

2016-11-07縲Ver1.25

+
    +
  • In synchronization with the SMB server, eliminating the problem of an error during synchronization.
  • +
  • Change the internal processing of external SDCARD access.
  • + +
+

2016-10-24縲Ver1.24

+
    +
  • Using the DNS when a failed SMB name resolution has to be the name resolution. However, the need is that the name is specified by FQDN as such win-srv.test.domain.com.
  • + +
+

2016-09-30縲Ver1.23

+
    +
  • To be able to set the volume of the notification sound.
  • + +
+

2016-09-26縲Ver1.22

+
    +
  • Resolve the bug that option is not saved in the "To use the last update time of the file to the difference judgment" and "To use the file size to the difference judgment"
  • + +
+

2016-09-23縲Ver1.21

+
    +
  • Added an option to show a notification message.
  • + +
+

2016-09-01縲Ver1.20

+
    +
  • Resolve the bug that empty directory is not sync with the sync to external SDCARD.
  • + +
+

2016-08-21縲Ver1.19

+
    +
  • Allowed to prevent the overwriting of files in the sync options.
  • + +
+

2016-08-16縲Ver1.18

+
    +
  • Disable FastScroll in the Directory selection screen
  • + +
+

2016-08-02縲Ver1.17

+
    +
  • Resolve the bug that duplicated in synchronization start from the external application
  • +
  • Reduction of the deletion time in the mirror to the ZIP file
  • + +
+

2016-06-26縲Ver1.16

+
    +
  • Resolve the bug that can not be external SD card recognition
  • + +
+

2016-06-26縲Ver1.15

+
    +
  • Added USB folder path(/storage/emulated/UsbDriveA, /storage/emulated/UsbDriveB)
  • + +
+

2016-06-25縲Ver1.14

+
    +
  • Resolve an empty directory is not reflected bug when synchronized with the ZIP
  • + +
+

2016-06-23縲Ver1.13

+
    +
  • Add sync, copy or move from the internal storage to the ZIP file (internal storage or external SDCARD)
  • + +
+

2016-06-17縲Ver1.12

+
    +
  • Add path /Removable/MicroSD for SDCARD
  • + +
+

2016-06-17縲Ver1.11

+
    +
  • Resolve the bug to be killed when the application is started with the intent at the time of the screen off.
  • + +
+

2016-06-13縲Ver1.10

+
    +
  • Resolve the bug of name resolution of the SMB host name.
  • +
  • Notification messages display optimization.
  • + +
+

2016-05-29縲Ver1.09

+
    +
  • It was strictly a test to access the same directory on the master and the target.
  • +
  • Resolve the bug to be killed in the deletion of the WiFi access point.
  • + +
+

2016-05-25縲Ver1.08

+
    +
  • Add help to the synchronization task add and edit screen
  • +
  • Change the UI of the file selection, 1. Selection is to tap the name of the file or directory name. 2. display of the sub-directory is to tap the left edge of the icon. 3. abolish the long tap.
  • +
  • Added an option to fix the orientation of the screen to portrait
  • + +
+

2016-05-16縲Ver1.07

+
    +
  • Change the Help file to link to the Google Drive has a small file size.
  • +
  • Resolve the bug that can not be added in the file and directory filter.
  • +
  • Improve the UI of the file filter
  • + +
+

2016-05-07縲Ver1.06

+
    +
  • Add external SDCARD path (/storage/MicroSD, /storage/extSdCard and /mnt/extSdCard)
  • +
  • Resolve not copied bug in synchronization to an external SD card
  • + +
+

2016-05-03縲Ver1.05

+
    +
  • It was to be able to specify a wireless LAN access point to allow sync with the sync options.
  • +
  • Improved the user interface for the selection of external SDCARD.
  • + +
+

2016-04-16縲Ver1.04

+
    +
  • To be able to import a task list from exported SMBSync profile.
  • + +
+

2016-04-14縲Ver1.03

+
    +
  • Improve performance
  • +
  • Resolve the bug that settings value is not restored during import task list.
  • + +
+

2016-04-10縲Ver1.02

+
    +
  • Fixed a bug that not be moved a file from SDCARD.
  • +
  • Resolve the bug can not be mirrored in the some of the directory.
  • + +
+

2016-04-09 Ver1.00

+
    +
  • Initial release
  • + +
+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image003.png deleted file mode 100644 index ebebbd4a..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image004.png deleted file mode 100644 index d8ac9317..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image005.png b/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image005.png deleted file mode 100644 index 0bba9ecc..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Change_JA.files/image005.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.htm b/SMBSync2/src/main/assets/SMBSync2_Change_JA.htm deleted file mode 100644 index 54aab2f8..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Change_JA.htm +++ /dev/null @@ -1,2482 +0,0 @@ - - - - - -SMBSync2 change log - - - - - - -
- -

更新履歴

- -

 

- -

*         -2020-10-23 Ver2.37

- -

*        -ヘルプに中国語を追加

- -

*         -2020-10-17 Ver2.36

- -

*        -スケジュールタブでスケジュールを直ちに開始するオプションを追加

- -

*        -中国語を追加

- -

*         -2020-09-21 Ver2.35

- -

*        -スケジュールでタスクリストが保存できないバグを解決

- -

*         -2020-09-12 Ver2.34

- -

*        -バックグラウンドロケーション許可が繰り返し表示されるバグを解決

- -

*         -2020-09-12 Ver2.33

- -

*        -ロケーション許可が繰り返し表示されるバグを解決

- -

*         -2020-09-09 Ver2.32

- -

*        -タスク名とスケジュール名で「,」を使用できなくした

- -

*        -Android11対応

- -

*         -2020-06-26 Ver2.31

- -

*        -SMBv2/3(2.12)で一部のSMBサーバーへの接続でアプリが強制終了するバグを解決(SMB3.1のみ使用可能なサーバーへの接続はSMBv2/3(2.14)を使用してください。SMBv2/3(2.12)では接続できません。)

- -

*        -同期タスクリストを取り込もうとすると強制終了するバグを解決

- -

*         -2020-06-20 Ver2.30

- -

*        -メッセージ表示の改善

- -

*        -一部機種での強制終了の回避

- -

*         -2020-06-07 Ver2.29

- -

*        -Android 5.0/5.1でアプリの設定メニューが開けないバグを解決

- -

*        -同期タスク編集時に無応答になるバグを解決

- -

*         -2020-06-02 Ver2.28

- -

*        -外部アプリへの同期タスク通知機能を追加(QUERY/REPLY)

- -

*        -フランス語とロシア語を追加

- -

*         -2020-04-22 Ver2.27

- -

*        -一部機種の強制終了回避

- -

*         -2020-04-16 Ver2.26

- -

*        -ANR回避

- -

*        -SMBホスト名の解決ができないバグを解決

- -

*         -2020-04-15 Ver2.25

- -

*        -アーカイブの拡張子にjpeg,jpeを追加

- -

*        -WiFiオプションで「APに接続されている時」をローション権限不要にした

- -

*        -ファイル名の長さが255バイト以上はエラーにするようにした

- -

*        -夏時間と標準時の時差を無視するオプションを追加した

- -

*        -jcifs-ng 2.1.4SMBプロトコルに追加した

- -

*         -2019-11-28 Ver2.24

- -

*        -強制終了を回避するようにした

- -

*         -2019-09-23 Ver2.23

- -

*        -スケジュール起動で充電オプションが上書きできないバグを解決

- -

*         -2019-09-07 Ver2.22

- -

*        -SMBへのArchiveでディレクトリが作成できないバグを解決

- -

*        -SMBへの書き込みで一時ファイル名にタイムスタンプを使用するようにした

- -

*         -2019-09-04 Ver2.21

- -

*        -Light Themeでの文字色を調整した

- -

*         -2019-08-16 Ver2.20

- -

*        -ログファイル表示での強制終了しないようにした

- -

*         -2019-08-16 Ver2.19

- -

*        -サンプルタスクを作成しないようにした

- -

*        -同期タスクが空の場合は自動保存しないようにした

- -

*        -履歴の送信で強制終了しないようにした

- -

*         -2019-08-15 Ver2.18

- -

*        -SDCARDへの書き込み時に強制終了する時に対応

- -

*        -スケジュール設定で「充電中のみ同期開始」を変更するオプションを追加

- -

*        -ログを保存するディレクトリーをアプリ固有ディレクトリーに変更

- -

*         -2019-07-09 Ver2.17

- -

*        -同期タスクリストの取込み時に強制終了しないようにした

- -

*         -2019-07-08 Ver2.13-2.16

- -

*        -アプリケーションの強制終了を回避

- -

*         -2019-07-08 Ver2.12

- -

*        -同期タスクリストとスケジュールの変更および同期タスクリストの取込みを行った時に同期タスクリストを自動保存するようにした。ただし、アプリの再インストールや初期化を行った場合は、以前の自動保存ファイルからアカウント名やパスワードは回復できません。

- -

*         -2019-06-27 Ver2.11

- -

*        -SMBディレクトリ選択画面でディレクトリが作成できないバグを解決

- -

*        -スケジュール設定が復元できないバグを解決

- -

*         -2019-06-22 Ver2.10

- -

*        -スケジュールの改名ができないバグを解決

- -

*         -2019-06-21 Ver2.09

- -

*        -スケジュールの表記修正

- -

*         -2019-06-21 Ver2.08

- -

*        -スケジュール編集・設定タブを追加した。

- -

*        -画面上部のアイコンでスケジュール機能の有効・無効を切り替えるようにした

- -

*        -移動の時にマスターディレクトリーが空になったら削除するオプションを追加

- -

*         -2019-06-15 Ver2.07

- -

*        -ブラックテーマを追加

- -

*         -2019-06-09 Ver2.06

- -

*        -メッセージタブの内容を最大5000行まで保存するようにした

- -

*        -同期開始要求と受け付けられた同期開始要求が実行されなかった場合のメッセージ表示を改善した

- -

*         -2019-05-29 Ver2.05

- -

*        -DNSからの名前解決でIPV6アドレスが戻された場合に対応

- -

*        -アーカイブでEXIFから日時を取得できないときに強制終了するバグを解決。

- -

*         -2019-05-15 Ver2.04

- -

*        -SDCARDへの同期でファイル名が同じだが大文字・小文字の違いでエラーになるバグを解決

- -

*         -2019-05-14 Ver2.03

- -

*        -SMBフォルダー編集でのNPE回避

- -

*         -2019-05-13 Ver2.02

- -

*        -Android5.0に於いて同期タスク編集での強制終了を回避

- -

*        -SMBサーバースキャンでの強制終了を回避

- -

*        -SDCARD認識方法の変更

- -

*         -2019-05-11 Ver2.01

- -

*        -グローバルIPアドレスでの同期を許可するオプションを追加

- -

*         -2019-05-02 Ver2.00

- -

*        -WiFi以外のネットワークでも同期できるようにした

- -

*        -スケジュールでエラーが表示されるバグを解決

- -

*        -スケジュールリストでの操作(削除・追加・改名・編集等)を即座に反映するようにした。

- -

*         -2019-04-27 Ver1.99

- -

*        -SDCARDが認識できないバグを解決

- -

*         -2019-04-19 Ver1.98

- -

*        -Android 7以上でSDCARD/USBメディアの書き込み許可を改善

- -

*         -2019-04-18 Ver1.97

- -

*        -SMB V2/3用のオプションを追加(SMB2.02機器でSMB V2/3が使用できない時は「Use SMB2 Negotiation」を有効にしてください)

- -

*        -スケジュールで同期でWi-Fiをオンにしない時にWi-Fiをオフにしないようにした。

- -

*         -2019-04-10 Ver1.96

- -

*        -Ver1.80以前から最新バージョンに移行したときに強制終了しないようにした。

- -

*         -2019-04-09 Ver1.95

- -

*        -SMBサーバー検索結果に対応SMBバージョンを表示するようにした

- -

*        -SDCARD/USBメディア関連の表記を改善

- -

*        -同期タスク追加時のSMBプロトコルの省略時値SMBv1からSMBv2/3に変更

- -

*         -2019-03-29 Ver1.94

- -

*        -SMB V3対応(SMB V2/3(2.12))

- -

*         -2019-03-23 Ver1.93

- -

*        -エラーメッセージの追加・修正

- -

*         -2019-03-16 Ver1.92

- -

*        -スケジュールの改名におけるNPE防止

- -

*         -2019-03-04 Ver1.91

- -

*        -システム情報で問題・質問を記述する時に改行できないバグを解決

- -

*         -2019-03-03 Ver1.90

- -

*        -ZIPへの同期でZIPファイルが存在しない時にエラーにならないようにした

- -

*         -2019-02-23 Ver1.89

- -

*        -Android9でロケーションサービスを無効にしているときに警告メッセージを表示するようにした

- -

*         -2019-02-23 Ver1.88

- -

*        -ANR回避

- -

*        -Copy/Moveで撮影日時が取得できないときに警告メッセージを表示するようにした

- -

*         -2019-02-18 Ver1.87

- -

*        -SMBプロトコルにJCIFS-NG 2.11(SMBv2(2.11))を追加

- -

*        -Copy/Moveでターゲットディレクトリー名にjpg/gif/mp4/movの撮影日時を使用できるようにした

- -

*        -SDCARDへの同期処理速度の改善

- -

*         -2019-01-31 Ver1.86

- -

*        -ファイル選択でのANR回避

- -

*         -2019-01-26 Ver1.85

- -

*        -SDCARD-TO-USBUSB-TO-SDCARDが処理されないバグを解決

- -

*         -2019-01-18 Ver1.84

- -

*        -SMB v1のログをアプリログに統合

- -

*         -2019-01-14 Ver1.83

- -

*        -ファイル/ディレクトリー選択でのNPE防止

- -

*         -2019-01-13 Ver1.82

- -

*        -タスク書き出し/タスク取り込みでSDCARDを使用できるようにした

- -

*         -2019-01-10 Ver1.81

- -

*        -ファイル選択でのANR回避

- -

*        -Android9SDCARDが使用できない不具合を解消

- -

*         -2019-01-03 Ver1.80

- -

*        -英語の表記を改善

- -

*        -オプションで一部機能へのアクセスにパスワード認証できるようにした

- -

*        -オプションでSMBフォルダーのアカウント名とパスワードを非表示できるようにした

- -

*        -アーカイブで保持期間が無視されるバグを解決

- -

*         -2018-11-04 Ver1.79

- -

*        -使用できない文字が使用されているディレクトリー/ファイルをスキップするオプションを追加。

- -

*         -2018-10-26 Ver1.78

- -

*        -内部ストレージのディレクトリー選択が長押しでできない不具合を解消

- -

*        -内部ストレージからSMB/SDCARD/USBメディアに同期するときにファイル名またはディレクトリー名で使用できない文字を使用している時はエラーメッセージを表示するようにした

- -

*        -同期タスクで同期が開始できる条件にWi-FiIPアドレスを指定できるようにした。(Android9SSIDを取得するためにロケーションを有効にしたくない場合に使用してください)

- -

*         -2018-09-07 Ver1.77

- -

*        -アーカイブオプションをマスターフォルダーに表示しないように変更

- -

*         -2018-09-04 Ver1.76

- -

*        -アーカイブオプションをターゲットフォルダーに表示するように変更

- -

*        -メッセージタブでのメッセージの処理にAndroid標準機能を使用するオプションを追加(設定-その他-同期メッセージのテキスト処理)

- -

同期メッセージタブでメッセージの表示がされない、強制終了するなどの現象が出た場合は有効にしてみてください。

- -

*         -2018-09-01 Ver1.75

- -

*        -名称を「外部SDCARD」から「SDCARD」に変更

- -

*        -細かな不具合の解消

- -

*         -2018-08-30 Ver1.74

- -

*        -ZIPファイルへのミラーでZIPファイルが壊れる場合があるバグを解決

- -

*         -2018-08-30 Ver1.73

- -

*        -インターバルスケジュールに1〜4分を追加

- -

*        -細かな不具合の解消

- -

*         -2018-08-27 Ver1.72

- -

*        -細かな不具合の解消

- -

*         -2018-08-26 Ver1.71

- -

*        -アーカイブ時に撮影日時がExifから取得できない時に確認メッセージを表示するようにした。

- -

*        -スケジュールに月次を追加

- -

*         -2018-08-15 Ver1.70

- -

*        -ファイルフィルターでファイルが選択・除外されないバグを解決

- -

*         -2018-08-13 Ver1.69

- -

*        -SDCARD上のAndroid/data/~からの同期でクラッシュするバグを解決

- -

*        -同期タスクリストに同期ボタンを追加

- -

*        -一部機種に於けるスリープ中の同期の遅延に対応するためのオプションを設定に追加

- -

*        -USBメディアを使用可能にした

- -

*         -2018-07-11 Ver1.68

- -

*        -ディレクトリー選択画面で長押しで選択できないバグを解決

- -

*         -2018-07-11 Ver1.67

- -

*        -ディレクトリー選択フィルター画面で長押しで選択できないバグを解決

- -

*         -2018-07-04 Ver1.66

- -

*        -アーカイブでの撮影日時取得でクラッシュするバグを解決

- -

*        -SDCARDが選択できないバグを解決

- -

*         -2018-06-28 Ver1.65

- -

*        -同期オプションの「コピー終了まで内容を変更しない」を削除し常に「コピー終了まで内容を変更しない」にした。

- -

*        -SDCARDの認識方法を改善しUUID0000-0000を使用できるようにした。

- -

*        -SDCARD上のメディアファイル(.jpg, .mp4など)の情報がファイルと同期されていない場合は警告メッセージを表示しファイルの情報を使用し同期するようにした。

- -

*         -2018-06-22 Ver1.64

- -

*        -低精度ロケーション許可をAndroid8.1だけにし、許可要求を毎回行わないようにした

- -

*        -一部機種でファイルの最終更新時刻が変更できない事に対応

- -

*         -2018-06-13 Ver1.63

- -

*        -SDCARD認識方法の変更

- -

*        -メニューからSDCARD選択ができるようにした

- -

*        -Android8.1でスリープ中の同期でエラーにならないようにした

- -

*         -2018-06-12 Ver1.62

- -

*        -システム情報に送信ボタンを追加

- -

*         -2018-06-10 Ver1.61

- -

*        -暗号化されたタスクリストを取り込む時に強制終了となるバグを解決

- -

*         -2018-06-08 Ver1.60

- -

*        -通知メッセージが常に表示されてしまうバグを解決

- -

*         -2018-06-07 Ver1.57-1.59

- -

*        -SDCARDへの同期を連続して繰り返すと誤って上書きするバグを解決

- -

*        -Android7以上でSDCARDへの書き込みに失敗することがあるバグを解決

- -

*         -2018-06-05 Ver1.56

- -

*        -一部機種で外部SDCARDが選択できないバグを解決

- -

*         -2018-06-05 Ver1.55

- -

*        -ターゲットフォルダーがZIPSDCARDに保存時にSDCARD選択を行うとループするバグを解決

- -

*         -2018-06-03 Ver1.54

- -

*        -一部のタブレットで表示が乱れる現象の回避

- -

*        -同期終了時の通知音と振動が途切れないようにした

- -

*         -2018-05-20 Ver1.53

- -

*        -Android 7.0以降でSDCARDに書き込んだファイルの最終更新時間をコピー元のファイルと同じにするようにした

- -

*        -複数スケジュールで最初にスケジュールされた物しか実行されないバグを解決

- -

*         -2018-05-14 Ver1.52

- -

*        -同期タスク編集時のアプリの強制終了を回避

- -

*         -2018-05-13 Ver1.50-1.51

- -

*        -同期開始時にアプリの強制終了を回避

- -

*         -2018-05-13 Ver1.49

- -

*        -アプリの強制終了回避

- -

*         -2018-05-12 Ver1.47-1.48

- -

*        -同期タイプにアーカイブを追加。

- -

写真やビデオファイルをマスターからターゲットに移動するための機能、撮影日時から7日以上や1年以上経過などアーカイブできます。

- -

*        -マスターファイルのサイズが大きい時だけ差分ファイルとして判定するオプションを追加。(ファイル特殊なオプションに「マスターのファイルサイズが大きい時だけ差分ファイルとして判定する」)

- -

*        -同じ時間に複数のスケジュールが実行された時に1つしか実行されないバグを解決。(ただし、同じ時間に同じ同期タスクをスケジュールすることはできません)

- -

*         -2018-05-02 Ver1.45-1.46

- -

*        -強制終了することがあるバグに対応

- -

*        -「ビデオファイルを同期する」にmp4を追加

- -

*        -内部ストレージにファイルをコピーした時にコピー元と同じ最終更新時間にするようにした。

- -

*         -2018-04-16 Ver1.44

- -

*        -ディレクトリー名やファイル名に”[“”]”が入っていると、アプリの再起動時に消えないようにした

- -

*        -設定でSMB1設定値を初期値に復元するオプションを追加

- -

*         -2018-04-12 Ver1.43

- -

*        -SMBフォルダーにコピー・移動したファイルの最終更新時刻をコピー元と同じにできない時はメッセージを表示しエラーとしないようにした。

- -

*        -SMB1設定の省略時値を変更

- -

Ø  lmCompatibility                  -> -3

- -

Ø  Use extended security        -> -true

- -

*         -2018-04-10 Ver1.42

- -

*        -SDCARDディレクトリーが選択できないバグを解決

- -

*         -2018-04-09 Ver1.40-41

- -

*        -SMBサーバーへの同期でAccess Deniedが発生するバグを解決

- -

*        -アプリが強制終了するバグを解決

- -

*         -2018-04-08 Ver1.39

- -

*        -SMB2での”TreeId is NULL”エラーの回避

- -

*        -SMB-SMBでの移動が失敗するバグを解決

- -

*        -SMB同期フォルダー編集で稀にクラッシュする現象に対応

- -

*        -同期履歴の詳細を作成しないように設定できるようにした(設定−>同期−>同期履歴)

- -

*         -2018-04-02 Ver1.38

- -

*        -SMBサーバーからのディレクトリー選択でディレクトリーを作成できるようにした。

- -

*        -匿名ログインで失敗しないように修正

- -

*         -2018-04-01 Ver1.36-37

- -

*        -SMB Protocol処理の訂正

- -

*         -2018-03-31 Ver1.35

- -

*        -SMB1SMB2での処理を分離

- -

*         -2018-03-31 Ver1.34

- -

*        -同期タスクの新規作成時にSMBプロトコルを「SMB1のみ」に変更

- -

*         -2018-03-30 Ver1.33

- -

*        -SMB2対応に伴うSMB1機器での不具合に対応

- -

*         -2018-03-28 Ver1.32

- -

*        -SMB-SDCARD/内部ストレージでミラーでファイルが削除されるバグを修正

- -

*         -2018-03-27 Ver1.31

- -

*        -SMB2(2.01)を使用可能にした

- -

*         -2018-03-20 Ver1.29-1.30

- -

*        -複数スケジュールを可能にした

- -

*        -同期タスクオプションに「充電中のみ同期を開始する」を追加

- -

*        -除外したディレクトリーが空ディレクトリーとして作成されないようにした

- -

*        -ディレクトリーとファイル名で使用できない文字を削除するようにした

- -

*         -2018-02-28 Ver1.28

- -

*        -ディレクトリーフィルターで上位ディレクトリーを除外し下位ディレクトリーを選択した場合は下位ディレクトリーの選択を有効にした。(同期タスクで「拡張されたディレクトリー選択/除外フィルタを使用する」をチェックした時に有効となります)

- -

*        -同期タスク開始時にWiFiアクセスポイントリストのSSIDに接続していない時に警告メッセージを表示し次のタスクを開始するオプションを同期タスクに追加。

- -

*         -2018-02-22 Ver1.27

- -

*        -SMBからSDCARDへの同期で毎回コピーされる不具合を解消

- -

*        -ターゲットディレクトリまたはZIPファイル名に同期タスク開始時の年月日を追加できるようにした。

- -

-%YEAR% 西暦(20182019など)

- -

-%MONTH% (01から12まで)

- -

-%DAY% (01から31まで)

- -

-%DAY-OF-YEAR% 年初からの日数(001-365まで、うるう年は366)

- -

*         -2018-02-16 Ver1.26

- -

*        -SMBサーバー間での同期を追加。

- -

*        -Android 8でショートカットが作成できるようにした。

- -

*        -テストモードで外部SDCARDに同期する時に0バイトのファイルが作成されないようにした。

- -

*         -2016-11-07 Ver1.25

- -

*        -SMBサーバーとの同期において、同期中にエラーとなる不具合を解消。

- -

*        -外部SDCARDへのアクセス方法を変更。

- -

*         -2016-10-24 Ver1.24

- -

*        -SMB名前解決ができなかった時にDNSを使用し名前解決をするようにした。ただし、名前はwin-srv.test.domain.com等のようにFQDNで指定することが必要。

- -

*         -2016-09-30 Ver1.23

- -

*        -通知音の音量を設定できるようにした。

- -

*         -2016-09-26 Ver1.22

- -

*        -「差分判定にファイルの最終更新時間を使用する」と「差分判定にファイルサイズを使用する」のオプションが保存されないバグを解決

- -

*         -2016-09-23 Ver1.21

- -

*        -通知メッセージを表示するオプションを追加

- -

*         -2016-09-01 Ver1.20

- -

*        -外部SDCARDへの同期で空ディレクトリが同期されないバグを解決

- -

*         -2016-08-21 Ver1.19

- -

*        -同期オプションでファイルの上書きを防止可能にした

- -

*         -2016-08-16 Ver1.18

- -

*        -Directory選択画面でFastScrollを無効にした

- -

*         -2016-08-02 Ver1.17

- -

*        -外部アプリからの同期開始で重複してしまうバグを解決

- -

*        -ZIPファイルへのミラーで削除時間の短縮

- -

*         -2016-06-26 Ver1.16

- -

*        -外部SDCARDを認識できないバグを解決

- -

*         -2016-06-26 Ver1.15

- -

*        -USBフォルダーに/storage/emulated/UsbDriveA /storage/emulated/UsbDriveBを追加

- -

*         -2016-06-25 Ver1.14

- -

*        -ZIPに同期した場合に空ディレクトリが反映されないバグを解決

- -

*         -2016-06-23 Ver1.13

- -

*        -内部ストレージからZIPファイル(内部ストレージまたは外部SDCARD)に同期・コピー・移動を追加

- -

*         -2016-06-17 Ver1.12 -

- -

*        -/Removable/MicroSDを外部SDCARDのパスに追加

- -

*         -2016-06-17 Ver1.11 -

- -

*        -スクリーンオフ時にインテントで起動された時に強制終了するバグを解決

- -

*         -2016-06-13 Ver1.10 -

- -

*        -SMBホスト名の名前解決のバグ解決

- -

*        -Notificationメッセージ表示の最適化

- -

*         -2016-05-29 Ver1.09 -

- -

*        -マスターとターゲットの組み合わせ検査を厳格化

- -

*        -WiFiアクセスポイントの削除で強制終了するバグを解決

- -

*         -2016-05-25 Ver1.08 -

- -

*        -同期タスク追加・編集画面にヘルプを追加

- -

*        -ファイル選択のUIを変更、1.選択はファイル名やディレクトリ名をタップする。2.サブディレクトリの表示は左端のアイコンをタップする。3.長押しを廃止。

- -

*        -画面の向きをポートレイトに固定するオプションを追加

- -

*         -2016-05-16 Ver1.07 -

- -

*        -ヘルプファイルをGoogle Driveへのリンクに変更しファイルサイズを小さくした。

- -

*        -ファイル・ディレクトリーフィルターの追加ができないバグを解決

- -

*        -ファイルフィルターのUIを改善

- -

*         -2016-05-07 Ver1.06 -

- -

*        -外部SDCARDPATH/storage/MicroSD, /storage/extSdCard/mnt/extSdCardを追加

- -

*        -外部SDCARDへの同期でコピーされないバグを解決

- -

*         -2016-05-03 Ver1.05 -

- -

*        -同期オプションに同期を許可する無線LANアクセスポイントを指定できるようにした

- -

*        -外部SDCARDの選択に関するユーザーインターフェースを改善した

- -

*         -2016-04-16 Ver1.04 -

- -

*        -タスクリストの取り込みからSMBSyncで書き出したプロファイル取り込みができるようにした。

- -

*         -2016-04-14 Ver1.03 -

- -

*        -パフォーマンス改善

- -

*        -タスクの取り込みで設定値が取り込めないバグを解決

- -

*         -2016-04-10 Ver1.02 -

- -

*        -SDCARDからファイルが移動されないバグを解決

- -

*        -一部のディレクトリでミラーができないバグを解決

- -

*         -2016-04-09 Ver1.00 -

- -

*        -最初の公開

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Change_JA.html b/SMBSync2/src/main/assets/SMBSync2_Change_JA.html new file mode 100644 index 00000000..dc85747d --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Change_JA.html @@ -0,0 +1,767 @@ + + + + +SMBSync2_Change_JA +

2020-11-24 Ver2.44

+
    +
  • 險ュ螳壹〒繝輔か繝ウ繝医し繧、繧コ繧貞、画峩縺ァ縺阪k繧医≧縺ォ縺励◆縲(80%,100%,120%,160%)
  • + +
+

2020-11-21 Ver2.43

+
    +
  • SMBv2/3縺ォ縺ヲSMB繧ソ繧、繝繧「繧ヲ繝亥、繧帝←逕ィ縺吶k繧医≧縺ォ縺励◆
  • +
  • 繧、繧ソ繝ェ繧「隱槭ョ鄙サ險ウ繧剃ソョ豁」
  • +
  • Tab繧偵せ繧ッ繝ュ繝シ繝ォ蜿ッ閭ス縺ォ縺励◆
  • + +
+

2020-11-13 Ver2.42

+
    +
  • 蜷梧悄繧ソ繧ケ繧ッ縺ョ繝倥Ν繝励ヵ繧。繧、繝ォ譖エ譁ー
  • + +
+

2020-11-12 Ver2.41

+
    +
  • 繝倥Ν繝励ヵ繧。繧、繝ォ縺ョ譖エ譁ー
  • + +
+

2020-11-05 Ver2.40

+
    +
  • 繝倥Ν繝励ヵ繧。繧、繝ォ縺ョ譖エ譁ー
  • + +
+

2020-11-03 Ver2.39

+
    +
  • GooglePlay繝励Λ繧、繝舌す繝シ繝昴Μ繧キ繝シ貅匁侠縺ョ縺溘a縺ォ繝ュ繧ア繝シ繧キ繝ァ繝ウ讓ゥ髯舌r蛻ゥ逕ィ縺励↑縺繧医≧縺ォ縺励◆縲(繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医Μ繧ケ繝医ッ菴ソ逕ィ縺ァ縺阪∪縺帙s)
  • +
  • 繧、繧ソ繝ェ繧「隱槭r霑ス蜉
  • + +
+

2020-10-28 Ver2.38

+
    +
  • 繝励Λ繧、繝舌す繝シ繝昴Μ繧キ繝シ縺ョ譖エ譁ー
  • + +
+

2020-10-23 Ver2.37

+
    +
  • 繝倥Ν繝励↓荳ュ蝗ス隱槭r霑ス蜉
  • + +
+

2020-10-17 Ver2.36

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ繧ソ繝悶〒繧ケ繧ア繧ク繝・繝シ繝ォ繧堤峩縺。縺ォ髢句ァ九☆繧九が繝励す繝ァ繝ウ繧定ソス蜉
  • +
  • 荳ュ蝗ス隱槭r霑ス蜉
  • + +
+

2020-09-21 Ver2.35

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ァ繧ソ繧ケ繧ッ繝ェ繧ケ繝医′菫晏ュ倥〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2020-09-12 Ver2.34

+
    +
  • 繝舌ャ繧ッ繧ー繝ゥ繧ヲ繝ウ繝峨Ο繧ア繝シ繧キ繝ァ繝ウ險ア蜿ッ縺檎ケー繧願ソ斐@陦ィ遉コ縺輔l繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2020-09-12 Ver2.33

+
    +
  • 繝ュ繧ア繝シ繧キ繝ァ繝ウ險ア蜿ッ縺檎ケー繧願ソ斐@陦ィ遉コ縺輔l繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2020-09-09 Ver2.32

+
    +
  • 繧ソ繧ケ繧ッ蜷阪→繧ケ繧ア繧ク繝・繝シ繝ォ蜷阪〒縲,縲阪r菴ソ逕ィ縺ァ縺阪↑縺上@縺
  • +
  • Android11蟇セ蠢
  • + +
+

2020-06-26 Ver2.31

+
    +
  • SMBv2/3(2.12)縺ァ荳驛ィ縺ョSMB繧オ繝シ繝舌シ縺ク縺ョ謗・邯壹〒繧「繝励Μ縺悟シキ蛻カ邨ゆコ縺吶k繝舌げ繧定ァ」豎コ(SMB3.1縺ョ縺ソ菴ソ逕ィ蜿ッ閭ス縺ェ繧オ繝シ繝舌シ縺ク縺ョ謗・邯壹ッSMBv2/3(2.14)繧剃スソ逕ィ縺励※縺上□縺輔>縲4MBv2/3(2.12)縺ァ縺ッ謗・邯壹〒縺阪∪縺帙s縲)
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医r蜿悶j霎シ繧ゅ≧縺ィ縺吶k縺ィ蠑キ蛻カ邨ゆコ縺吶k繝舌げ繧定ァ」豎コ
  • + +
+

2020-06-20 Ver2.30

+
    +
  • 繝。繝繧サ繝シ繧ク陦ィ遉コ縺ョ謾ケ蝟
  • +
  • 荳驛ィ讖溽ィョ縺ァ縺ョ蠑キ蛻カ邨ゆコ縺ョ蝗樣∩
  • + +
+

2020-06-07 Ver2.29

+
    +
  • Android 5.0/5.1縺ァ繧「繝励Μ縺ョ險ュ螳壹Γ繝九Η繝シ縺碁幕縺代↑縺繝舌げ繧定ァ」豎コ
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ邱ィ髮譎ゅ↓辟。蠢懃ュ斐↓縺ェ繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2020-06-02 Ver2.28

+
    +
  • 螟夜Κ繧「繝励Μ縺ク縺ョ蜷梧悄繧ソ繧ケ繧ッ騾夂衍讖溯ス繧定ソス蜉(QUERY/REPLY)
  • +
  • 繝輔Λ繝ウ繧ケ隱槭→繝ュ繧キ繧「隱槭r霑ス蜉
  • + +
+

2020-04-22 Ver2.27

+
    +
  • 荳驛ィ讖溽ィョ縺ョ蠑キ蛻カ邨ゆコ蝗樣∩
  • + +
+

2020-04-16 Ver2.26

+
    +
  • ANR蝗樣∩
  • +
  • SMB繝帙せ繝亥錐縺ョ隗」豎コ縺後〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2020-04-15 Ver2.25

+
    +
  • 繧「繝シ繧ォ繧、繝悶ョ諡。蠑オ蟄舌↓jpeg,jpe繧定ソス蜉
  • +
  • WiFi繧ェ繝励す繝ァ繝ウ縺ァ縲窟P縺ォ謗・邯壹&繧後※縺繧区凾縲阪r繝ュ繝シ繧キ繝ァ繝ウ讓ゥ髯蝉ク崎ヲ√↓縺励◆
  • +
  • 繝輔ぃ繧、繝ォ蜷阪ョ髟キ縺輔′255繝舌う繝井サ・荳翫ッ繧ィ繝ゥ繝シ縺ォ縺吶k繧医≧縺ォ縺励◆
  • +
  • 螟乗凾髢薙→讓呎コ匁凾縺ョ譎ょキョ繧堤┌隕悶☆繧九が繝励す繝ァ繝ウ繧定ソス蜉縺励◆
  • +
  • jcifs-ng 2.1.4繧担MB繝励Ο繝医さ繝ォ縺ォ霑ス蜉縺励◆
  • + +
+

2019-11-28 Ver2.24

+
    +
  • 蠑キ蛻カ邨ゆコ繧貞屓驕ソ縺吶k繧医≧縺ォ縺励◆
  • + +
+

2019-09-23 Ver2.23

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ襍キ蜍輔〒蜈髮サ繧ェ繝励す繝ァ繝ウ縺御ク頑嶌縺阪〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2019-09-07 Ver2.22

+
    +
  • SMB縺ク縺ョArchive縺ァ繝繧」繝ャ繧ッ繝医Μ縺御ス懈舌〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • +
  • SMB縺ク縺ョ譖ク縺崎セシ縺ソ縺ァ荳譎ゅヵ繧。繧、繝ォ蜷阪↓繧ソ繧、繝繧ケ繧ソ繝ウ繝励r菴ソ逕ィ縺吶k繧医≧縺ォ縺励◆
  • + +
+

2019-09-04 Ver2.21

+
    +
  • Light Theme縺ァ縺ョ譁蟄苓牡繧定ェソ謨エ縺励◆
  • + +
+

2019-08-16 Ver2.20

+
    +
  • 繝ュ繧ー繝輔ぃ繧、繝ォ陦ィ遉コ縺ァ蠑キ蛻カ邨ゆコ縺励↑縺繧医≧縺ォ縺励◆
  • + +
+

2019-08-16 Ver2.19

+
    +
  • 繧オ繝ウ繝励Ν繧ソ繧ケ繧ッ繧剃ス懈舌@縺ェ縺繧医≧縺ォ縺励◆
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ縺檎ゥコ縺ョ蝣エ蜷医ッ閾ェ蜍穂ソ晏ュ倥@縺ェ縺繧医≧縺ォ縺励◆
  • +
  • 螻・豁エ縺ョ騾∽ソ。縺ァ蠑キ蛻カ邨ゆコ縺励↑縺繧医≧縺ォ縺励◆
  • + +
+

2019-08-15 Ver2.18

+
    +
  • SDCARD縺ク縺ョ譖ク縺崎セシ縺ソ譎ゅ↓蠑キ蛻カ邨ゆコ縺吶k譎ゅ↓蟇セ蠢
  • +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ險ュ螳壹〒縲悟髮サ荳ュ縺ョ縺ソ蜷梧悄髢句ァ九阪r螟画峩縺吶k繧ェ繝励す繝ァ繝ウ繧定ソス蜉
  • +
  • 繝ュ繧ー繧剃ソ晏ュ倥☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ繧偵い繝励Μ蝗コ譛峨ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ螟画峩
  • + +
+

2019-07-09 Ver2.17

+
    +
  • 蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医ョ蜿冶セシ縺ソ譎ゅ↓蠑キ蛻カ邨ゆコ縺励↑縺繧医≧縺ォ縺励◆
  • + +
+

2019-07-08 Ver2.13-2.16

+
    +
  • 繧「繝励Μ繧ア繝シ繧キ繝ァ繝ウ縺ョ蠑キ蛻カ邨ゆコ繧貞屓驕ソ
  • + +
+

2019-07-08 Ver2.12

+
    +
  • 蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医→繧ケ繧ア繧ク繝・繝シ繝ォ縺ョ螟画峩縺翫h縺ウ蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医ョ蜿冶セシ縺ソ繧定。後▲縺滓凾縺ォ蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医r閾ェ蜍穂ソ晏ュ倥☆繧九h縺縺ォ縺励◆縲ゅ◆縺縺励√い繝励Μ縺ョ蜀阪う繝ウ繧ケ繝医シ繝ォ繧蛻晄悄蛹悶r陦後▲縺溷エ蜷医ッ縲∽サ・蜑阪ョ閾ェ蜍穂ソ晏ュ倥ヵ繧。繧、繝ォ縺九i繧「繧ォ繧ヲ繝ウ繝亥錐繧繝代せ繝ッ繝シ繝峨ッ蝗槫セゥ縺ァ縺阪∪縺帙s縲
  • + +
+

2019-06-27 Ver2.11

+
    +
  • SMB繝繧」繝ャ繧ッ繝医Μ驕ク謚樒判髱「縺ァ繝繧」繝ャ繧ッ繝医Μ縺御ス懈舌〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ險ュ螳壹′蠕ゥ蜈縺ァ縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2019-06-22 Ver2.10

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ョ謾ケ蜷阪′縺ァ縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2019-06-21 Ver2.09

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ョ陦ィ險倅ソョ豁」
  • + +
+

2019-06-21 Ver2.08

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ邱ィ髮繝サ險ュ螳壹ち繝悶r霑ス蜉縺励◆縲
  • +
  • 逕サ髱「荳企Κ縺ョ繧「繧、繧ウ繝ウ縺ァ繧ケ繧ア繧ク繝・繝シ繝ォ讖溯ス縺ョ譛牙柑繝サ辟。蜉ケ繧貞繧頑崛縺医k繧医≧縺ォ縺励◆
  • +
  • 遘サ蜍輔ョ譎ゅ↓繝槭せ繧ソ繝シ繝繧」繝ャ繧ッ繝医Μ繝シ縺檎ゥコ縺ォ縺ェ縺」縺溘i蜑企勁縺吶k繧ェ繝励す繝ァ繝ウ繧定ソス蜉
  • + +
+

2019-06-15 Ver2.07

+
    +
  • 繝悶Λ繝繧ッ繝繝シ繝槭r霑ス蜉
  • + +
+

2019-06-09 Ver2.06

+
    +
  • 繝。繝繧サ繝シ繧ク繧ソ繝悶ョ蜀螳ケ繧呈怙螟ァ5000陦後∪縺ァ菫晏ュ倥☆繧九h縺縺ォ縺励◆
  • +
  • 蜷梧悄髢句ァ玖ヲ∵アゅ→蜿励¢莉倥¢繧峨l縺溷酔譛滄幕蟋玖ヲ∵アゅ′螳溯。後&繧後↑縺九▲縺溷エ蜷医ョ繝。繝繧サ繝シ繧ク陦ィ遉コ繧呈隼蝟縺励◆
  • + +
+

2019-05-29 Ver2.05

+
    +
  • DNS縺九i縺ョ蜷榊燕隗」豎コ縺ァIPV6繧「繝峨Ξ繧ケ縺梧綾縺輔l縺溷エ蜷医↓蟇セ蠢
  • +
  • 繧「繝シ繧ォ繧、繝悶〒EXIF縺九i譌・譎ゅr蜿門セ励〒縺阪↑縺縺ィ縺阪↓蠑キ蛻カ邨ゆコ縺吶k繝舌げ繧定ァ」豎コ縲
  • + +
+

2019-05-15 Ver2.04

+
    +
  • SDCARD縺ク縺ョ蜷梧悄縺ァ繝輔ぃ繧、繝ォ蜷阪′蜷後§縺縺悟、ァ譁蟄励サ蟆乗枚蟄励ョ驕輔>縺ァ繧ィ繝ゥ繝シ縺ォ縺ェ繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2019-05-14 Ver2.03

+
    +
  • SMB繝輔か繝ォ繝繝シ邱ィ髮縺ァ縺ョNPE蝗樣∩
  • + +
+

2019-05-13 Ver2.02

+
    +
  • Android5.0縺ォ譁シ縺縺ヲ蜷梧悄繧ソ繧ケ繧ッ邱ィ髮縺ァ縺ョ蠑キ蛻カ邨ゆコ繧貞屓驕ソ
  • +
  • SMB繧オ繝シ繝舌シ繧ケ繧ュ繝」繝ウ縺ァ縺ョ蠑キ蛻カ邨ゆコ繧貞屓驕ソ
  • +
  • SDCARD隱崎ュ俶婿豕輔ョ螟画峩
  • + +
+

2019-05-11 Ver2.01

+
    +
  • 繧ー繝ュ繝シ繝舌Νシゥシー繧「繝峨Ξ繧ケ縺ァ縺ョ蜷梧悄繧定ィア蜿ッ縺吶k繧ェ繝励す繝ァ繝ウ繧定ソス蜉
  • + +
+

2019-05-02 Ver2.00

+
    +
  • WiFi莉・螟悶ョ繝阪ャ繝医Ρ繝シ繧ッ縺ァ繧ょ酔譛溘〒縺阪k繧医≧縺ォ縺励◆
  • +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ァ繧ィ繝ゥ繝シ縺瑚。ィ遉コ縺輔l繧九ヰ繧ー繧定ァ」豎コ
  • +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ繝ェ繧ケ繝医〒縺ョ謫堺ス(蜑企勁繝サ霑ス蜉繝サ謾ケ蜷阪サ邱ィ髮遲)繧貞叉蠎ァ縺ォ蜿肴丐縺吶k繧医≧縺ォ縺励◆縲
  • + +
+

2019-04-27 Ver1.99

+
    +
  • SDCARD縺瑚ェ崎ュ倥〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2019-04-19 Ver1.98

+
    +
  • Android 7莉・荳翫〒SDCARD/USB繝。繝繧」繧「縺ョ譖ク縺崎セシ縺ソ險ア蜿ッ繧呈隼蝟
  • + +
+

2019-04-18 Ver1.97

+
    +
  • SMB V2/3逕ィ縺ョ繧ェ繝励す繝ァ繝ウ繧定ソス蜉(SMB2.02讖溷勣縺ァSMB V2/3縺御スソ逕ィ縺ァ縺阪↑縺譎ゅッ縲袈se SMB2 Negotiation縲阪r譛牙柑縺ォ縺励※縺上□縺輔>)
  • +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ァ蜷梧悄縺ァWi-Fi繧偵が繝ウ縺ォ縺励↑縺譎ゅ↓Wi-Fi繧偵が繝輔↓縺励↑縺繧医≧縺ォ縺励◆縲
  • + +
+

2019-04-10 Ver1.96

+
    +
  • Ver1.80莉・蜑阪°繧画怙譁ー繝舌シ繧ク繝ァ繝ウ縺ォ遘サ陦後@縺溘→縺阪↓蠑キ蛻カ邨ゆコ縺励↑縺繧医≧縺ォ縺励◆縲
  • + +
+

2019-04-09 Ver1.95

+
    +
  • SMB繧オ繝シ繝舌シ讀懃エ「邨先棡縺ォ蟇セ蠢彜MB繝舌シ繧ク繝ァ繝ウ繧定。ィ遉コ縺吶k繧医≧縺ォ縺励◆
  • +
  • SDCARD/USB繝。繝繧」繧「髢「騾」縺ョ陦ィ險倥r謾ケ蝟
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ霑ス蜉譎ゅョSMB繝励Ο繝医さ繝ォ縺ョ逵∫払譎ょ、SMBv1縺九iSMBv2/3縺ォ螟画峩
  • + +
+

2019-03-29 Ver1.94

+
    +
  • SMB V3蟇セ蠢(SMB V2/3(2.12))
  • + +
+

2019-03-23 Ver1.93

+
    +
  • 繧ィ繝ゥ繝シ繝。繝繧サ繝シ繧ク縺ョ霑ス蜉繝サ菫ョ豁」
  • + +
+

2019-03-16 Ver1.92

+
    +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ョ謾ケ蜷阪↓縺翫¢繧起PE髦イ豁「
  • + +
+

2019-03-04 Ver1.91

+
    +
  • 繧キ繧ケ繝繝諠蝣ア縺ァ蝠城。後サ雉ェ蝠上r險倩ソー縺吶k譎ゅ↓謾ケ陦後〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2019-03-03 Ver1.90

+
    +
  • ZIP縺ク縺ョ蜷梧悄縺ァZIP繝輔ぃ繧、繝ォ縺悟ュ伜惠縺励↑縺譎ゅ↓繧ィ繝ゥ繝シ縺ォ縺ェ繧峨↑縺繧医≧縺ォ縺励◆
  • + +
+

2019-02-23 Ver1.89

+
    +
  • Android9縺ァ繝ュ繧ア繝シ繧キ繝ァ繝ウ繧オ繝シ繝薙せ繧堤┌蜉ケ縺ォ縺励※縺繧九→縺阪↓隴ヲ蜻翫Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k繧医≧縺ォ縺励◆
  • + +
+

2019-02-23 Ver1.88

+
    +
  • ANR蝗樣∩
  • +
  • Copy/Move縺ァ謦ョ蠖ア譌・譎ゅ′蜿門セ励〒縺阪↑縺縺ィ縺阪↓隴ヲ蜻翫Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k繧医≧縺ォ縺励◆
  • + +
+

2019-02-18 Ver1.87

+
    +
  • SMB繝励Ο繝医さ繝ォ縺ォJCIFS-NG 2.11(SMBv2(2.11))繧定ソス蜉
  • +
  • Copy/Move縺ァ繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪↓jpg/gif/mp4/mov縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺ァ縺阪k繧医≧縺ォ縺励◆
  • +
  • SDCARD縺ク縺ョ蜷梧悄蜃ヲ逅騾溷コヲ縺ョ謾ケ蝟
  • + +
+

2019-01-31 Ver1.86

+
    +
  • 繝輔ぃ繧、繝ォ驕ク謚槭〒縺ョANR蝗樣∩
  • + +
+

2019-01-26 Ver1.85

+
    +
  • SDCARD-TO-USB縺ィUSB-TO-SDCARD縺悟ヲ逅縺輔l縺ェ縺繝舌げ繧定ァ」豎コ
  • + +
+

2019-01-18 Ver1.84

+
    +
  • SMB v1縺ョ繝ュ繧ー繧偵い繝励Μ繝ュ繧ー縺ォ邨ア蜷
  • + +
+

2019-01-14 Ver1.83

+
    +
  • 繝輔ぃ繧、繝ォ/繝繧」繝ャ繧ッ繝医Μ繝シ驕ク謚槭〒縺ョNPE髦イ豁「
  • + +
+

2019-01-13 Ver1.82

+
    +
  • 繧ソ繧ケ繧ッ譖ク縺榊コ縺/繧ソ繧ケ繧ッ蜿悶j霎シ縺ソ縺ァSDCARD繧剃スソ逕ィ縺ァ縺阪k繧医≧縺ォ縺励◆
  • + +
+

2019-01-10 Ver1.81

+
    +
  • 繝輔ぃ繧、繝ォ驕ク謚槭〒縺ョANR蝗樣∩
  • +
  • Android9縺ァSDCARD縺御スソ逕ィ縺ァ縺阪↑縺荳榊キ蜷医r隗」豸
  • + +
+

2019-01-03 Ver1.80

+
    +
  • 闍ア隱槭ョ陦ィ險倥r謾ケ蝟
  • +
  • 繧ェ繝励す繝ァ繝ウ縺ァ荳驛ィ讖溯ス縺ク縺ョ繧「繧ッ繧サ繧ケ縺ォ繝代せ繝ッ繝シ繝芽ェ崎ィシ縺ァ縺阪k繧医≧縺ォ縺励◆
  • +
  • 繧ェ繝励す繝ァ繝ウ縺ァSMB繝輔か繝ォ繝繝シ縺ョ繧「繧ォ繧ヲ繝ウ繝亥錐縺ィ繝代せ繝ッ繝シ繝峨r髱櫁。ィ遉コ縺ァ縺阪k繧医≧縺ォ縺励◆
  • +
  • 繧「繝シ繧ォ繧、繝悶〒菫晄戟譛滄俣縺檎┌隕悶&繧後k繝舌げ繧定ァ」豎コ
  • + +
+

2018-11-04 Ver1.79

+
    +
  • 菴ソ逕ィ縺ァ縺阪↑縺譁蟄励′菴ソ逕ィ縺輔l縺ヲ縺繧九ョ繧」繝ャ繧ッ繝医Μ繝シ/繝輔ぃ繧、繝ォ繧偵せ繧ュ繝繝励☆繧九が繝励す繝ァ繝ウ繧定ソス蜉縲
  • + +
+

2018-10-26 Ver1.78

+
    +
  • 蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ驕ク謚槭′髟キ謚シ縺励〒縺ァ縺阪↑縺荳榊キ蜷医r隗」豸
  • +
  • 蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺九iSMB/SDCARD/USB繝。繝繧」繧「縺ォ蜷梧悄縺吶k縺ィ縺阪↓繝輔ぃ繧、繝ォ蜷阪∪縺溘ッ繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪〒菴ソ逕ィ縺ァ縺阪↑縺譁蟄励r菴ソ逕ィ縺励※縺繧区凾縺ッ繧ィ繝ゥ繝シ繝。繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k繧医≧縺ォ縺励◆
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ縺ァ蜷梧悄縺碁幕蟋九〒縺阪k譚。莉カ縺ォWi-Fi縺ョIP繧「繝峨Ξ繧ケ繧呈欠螳壹〒縺阪k繧医≧縺ォ縺励◆縲(Android9縺ァSSID繧貞叙蠕励☆繧九◆繧√↓繝ュ繧ア繝シ繧キ繝ァ繝ウ繧呈怏蜉ケ縺ォ縺励◆縺上↑縺蝣エ蜷医↓菴ソ逕ィ縺励※縺上□縺輔>)
  • + +
+

2018-09-07 Ver1.77

+
    +
  • 繧「繝シ繧ォ繧、繝悶が繝励す繝ァ繝ウ繧偵槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ォ陦ィ遉コ縺励↑縺繧医≧縺ォ螟画峩
  • + +
+

2018-09-04 Ver1.76

+
    +
  • 繧「繝シ繧ォ繧、繝悶が繝励す繝ァ繝ウ繧偵ち繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ォ陦ィ遉コ縺吶k繧医≧縺ォ螟画峩
  • +
  • 繝。繝繧サ繝シ繧ク繧ソ繝悶〒縺ョ繝。繝繧サ繝シ繧ク縺ョ蜃ヲ逅縺ォAndroid讓呎コ匁ゥ溯ス繧剃スソ逕ィ縺吶k繧ェ繝励す繝ァ繝ウ繧定ソス蜉シ郁ィュ螳-縺昴ョ莉-蜷梧悄繝。繝繧サ繝シ繧ク縺ョ繝繧ュ繧ケ繝亥ヲ逅シ +蜷梧悄繝。繝繧サ繝シ繧ク繧ソ繝悶〒繝。繝繧サ繝シ繧ク縺ョ陦ィ遉コ縺後&繧後↑縺縲∝シキ蛻カ邨ゆコ縺吶k縺ェ縺ゥ縺ョ迴セ雎。縺悟コ縺溷エ蜷医ッ譛牙柑縺ォ縺励※縺ソ縺ヲ縺上□縺輔>縲
  • + +
+

2018-09-01 Ver1.75

+
    +
  • 蜷咲ァー繧偵悟、夜ΚSDCARD縲阪°繧峨郡DCARD縲阪↓螟画峩
  • +
  • 邏ー縺九↑荳榊キ蜷医ョ隗」豸
  • + +
+

2018-08-30 Ver1.74

+
    +
  • ZIP繝輔ぃ繧、繝ォ縺ク縺ョ繝溘Λ繝シ縺ァZIP繝輔ぃ繧、繝ォ縺悟」翫l繧句エ蜷医′縺ゅk繝舌げ繧定ァ」豎コ
  • + +
+

2018-08-30 Ver1.73

+
    +
  • 繧、繝ウ繧ソ繝シ繝舌Ν繧ケ繧ア繧ク繝・繝シ繝ォ縺ォシ托ス橸シ泌繧定ソス蜉
  • +
  • 邏ー縺九↑荳榊キ蜷医ョ隗」豸
  • + +
+

2018-08-27 Ver1.72

+
    +
  • 邏ー縺九↑荳榊キ蜷医ョ隗」豸
  • + +
+

2018-08-26 Ver1.71

+
    +
  • 繧「繝シ繧ォ繧、繝匁凾縺ォ謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k繧医≧縺ォ縺励◆縲
  • +
  • 繧ケ繧ア繧ク繝・繝シ繝ォ縺ォ譛域ャ。繧定ソス蜉
  • + +
+

2018-08-15 Ver1.70

+
    +
  • 繝輔ぃ繧、繝ォ繝輔ぅ繝ォ繧ソ繝シ縺ァ繝輔ぃ繧、繝ォ縺碁∈謚槭サ髯、螟悶&繧後↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-08-13 Ver1.69

+
    +
  • SDCARD荳翫ョAndroid/data/~縺九i縺ョ蜷梧悄縺ァ繧ッ繝ゥ繝繧キ繝・縺吶k繝舌げ繧定ァ」豎コ
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医↓蜷梧悄繝懊ち繝ウ繧定ソス蜉
  • +
  • 荳驛ィ讖溽ィョ縺ォ譁シ縺代k繧ケ繝ェ繝シ繝嶺クュ縺ョ蜷梧悄縺ョ驕蟒カ縺ォ蟇セ蠢懊☆繧九◆繧√ョ繧ェ繝励す繝ァ繝ウ繧定ィュ螳壹↓霑ス蜉
  • +
  • USB繝。繝繧」繧「繧剃スソ逕ィ蜿ッ閭ス縺ォ縺励◆
  • + +
+

2018-07-11 Ver1.68

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ驕ク謚樒判髱「縺ァ髟キ謚シ縺励〒驕ク謚槭〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-07-11 Ver1.67

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ驕ク謚槭ヵ繧」繝ォ繧ソ繝シ逕サ髱「縺ァ髟キ謚シ縺励〒驕ク謚槭〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-07-04 Ver1.66

+
    +
  • 繧「繝シ繧ォ繧、繝悶〒縺ョ謦ョ蠖ア譌・譎ょ叙蠕励〒繧ッ繝ゥ繝繧キ繝・縺吶k繝舌げ繧定ァ」豎コ
  • +
  • SDCARD縺碁∈謚槭〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-06-28縲Ver1.65

+
    +
  • 蜷梧悄繧ェ繝励す繝ァ繝ウ縺ョ縲後さ繝斐シ邨ゆコ縺セ縺ァ蜀螳ケ繧貞、画峩縺励↑縺縲阪r蜑企勁縺怜クク縺ォ縲後さ繝斐シ邨ゆコ縺セ縺ァ蜀螳ケ繧貞、画峩縺励↑縺縲阪↓縺励◆縲
  • +
  • SDCARD縺ョ隱崎ュ俶婿豕輔r謾ケ蝟縺誘UID縺0000-0000繧剃スソ逕ィ縺ァ縺阪k繧医≧縺ォ縺励◆縲
  • +
  • SDCARD荳翫ョ繝。繝繧」繧「繝輔ぃ繧、繝ォ(.jpg, .mp4縺ェ縺ゥ)縺ョ諠蝣ア縺後ヵ繧。繧、繝ォ縺ィ蜷梧悄縺輔l縺ヲ縺縺ェ縺蝣エ蜷医ッ隴ヲ蜻翫Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺励ヵ繧。繧、繝ォ縺ョ諠蝣ア繧剃スソ逕ィ縺怜酔譛溘☆繧九h縺縺ォ縺励◆縲
  • + +
+

2018-06-22縲Ver1.64

+
    +
  • 菴守イセ蠎ヲ繝ュ繧ア繝シ繧キ繝ァ繝ウ險ア蜿ッ繧但ndroid8.1縺縺代↓縺励∬ィア蜿ッ隕∵アゅr豈主屓陦後o縺ェ縺繧医≧縺ォ縺励◆
  • +
  • 荳驛ィ讖溽ィョ縺ァ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾縺悟、画峩縺ァ縺阪↑縺莠九↓蟇セ蠢
  • + +
+

2018-06-13縲Ver1.63

+
    +
  • SDCARD隱崎ュ俶婿豕輔ョ螟画峩
  • +
  • 繝。繝九Η繝シ縺九iSDCARD驕ク謚槭′縺ァ縺阪k繧医≧縺ォ縺励◆
  • +
  • Android8.1縺ァ繧ケ繝ェ繝シ繝嶺クュ縺ョ蜷梧悄縺ァ繧ィ繝ゥ繝シ縺ォ縺ェ繧峨↑縺繧医≧縺ォ縺励◆
  • + +
+

2018-06-12縲Ver1.62

+
    +
  • 繧キ繧ケ繝繝諠蝣ア縺ォ騾∽ソ。繝懊ち繝ウ繧定ソス蜉
  • + +
+

2018-06-10縲Ver1.61

+
    +
  • 證怜捷蛹悶&繧後◆繧ソ繧ケ繧ッ繝ェ繧ケ繝医r蜿悶j霎シ繧譎ゅ↓蠑キ蛻カ邨ゆコ縺ィ縺ェ繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2018-06-08縲Ver1.60

+
    +
  • 騾夂衍繝。繝繧サ繝シ繧ク縺悟クク縺ォ陦ィ遉コ縺輔l縺ヲ縺励∪縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-06-07縲Ver1.57-1.59

+
    +
  • SDCARD縺ク縺ョ蜷梧悄繧帝」邯壹@縺ヲ郢ー繧願ソ斐☆縺ィ隱、縺」縺ヲ荳頑嶌縺阪☆繧九ヰ繧ー繧定ァ」豎コ
  • +
  • Android7莉・荳翫〒SDCARD縺ク縺ョ譖ク縺崎セシ縺ソ縺ォ螟ア謨励☆繧九%縺ィ縺後≠繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2018-06-05縲Ver1.56

+
    +
  • 荳驛ィ讖溽ィョ縺ァ螟夜ΚSDCARD縺碁∈謚槭〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-06-05縲Ver1.55

+
    +
  • 繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺兄IP縺ァSDCARD縺ォ菫晏ュ俶凾縺ォSDCARD驕ク謚槭r陦後≧縺ィ繝ォ繝シ繝励☆繧九ヰ繧ー繧定ァ」豎コ
  • + +
+

2018-06-03縲Ver1.54

+
    +
  • 荳驛ィ縺ョ繧ソ繝悶Ξ繝繝医〒陦ィ遉コ縺御ケア繧後k迴セ雎。縺ョ蝗樣∩
  • +
  • 蜷梧悄邨ゆコ譎ゅョ騾夂衍髻ウ縺ィ謖ッ蜍輔′騾泌繧後↑縺繧医≧縺ォ縺励◆
  • + +
+

2018-05-20縲Ver1.53

+
    +
  • Android 7.0莉・髯阪〒SDCARD縺ォ譖ク縺崎セシ繧薙□繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎る俣繧偵さ繝斐シ蜈縺ョ繝輔ぃ繧、繝ォ縺ィ蜷後§縺ォ縺吶k繧医≧縺ォ縺励◆
  • +
  • 隍謨ー繧ケ繧ア繧ク繝・繝シ繝ォ縺ァ譛蛻昴↓繧ケ繧ア繧ク繝・繝シ繝ォ縺輔l縺溽黄縺励°螳溯。後&繧後↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-05-14縲Ver1.52

+
    +
  • 蜷梧悄繧ソ繧ケ繧ッ邱ィ髮譎ゅョ繧「繝励Μ縺ョ蠑キ蛻カ邨ゆコ繧貞屓驕ソ
  • + +
+

2018-05-13縲Ver1.50-1.51

+
    +
  • 蜷梧悄髢句ァ区凾縺ォ繧「繝励Μ縺ョ蠑キ蛻カ邨ゆコ繧貞屓驕ソ
  • + +
+

2018-05-13縲Ver1.49

+
    +
  • 繧「繝励Μ縺ョ蠑キ蛻カ邨ゆコ蝗樣∩
  • + +
+

2018-05-12縲Ver1.47-1.48

+
    +
  • 蜷梧悄繧ソ繧、繝励↓繧「繝シ繧ォ繧、繝悶r霑ス蜉縲 +蜀咏悄繧繝薙ョ繧ェ繝輔ぃ繧、繝ォ繧偵槭せ繧ソ繝シ縺九i繧ソ繝シ繧イ繝繝医↓遘サ蜍輔☆繧九◆繧√ョ讖溯ス縲∵聴蠖ア譌・譎ゅ°繧7譌・莉・荳翫d1蟷エ莉・荳顔オ碁℃縺ェ縺ゥ繧「繝シ繧ォ繧、繝悶〒縺阪∪縺吶
  • +
  • 繝槭せ繧ソ繝シ繝輔ぃ繧、繝ォ縺ョ繧オ繧、繧コ縺悟、ァ縺阪>譎ゅ□縺大キョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧九が繝励す繝ァ繝ウ繧定ソス蜉縲ゑシ医ヵ繧。繧、繝ォ迚ケ谿翫↑繧ェ繝励す繝ァ繝ウ縺ォ縲後槭せ繧ソ繝シ縺ョ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺悟、ァ縺阪>譎ゅ□縺大キョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧九搾シ
  • +
  • 蜷後§譎る俣縺ォ隍謨ー縺ョ繧ケ繧ア繧ク繝・繝シ繝ォ縺悟ョ溯。後&繧後◆譎ゅ↓1縺、縺励°螳溯。後&繧後↑縺繝舌げ繧定ァ」豎コ縲ゑシ医◆縺縺励∝酔縺俶凾髢薙↓蜷後§蜷梧悄繧ソ繧ケ繧ッ繧偵せ繧ア繧ク繝・繝シ繝ォ縺吶k縺薙→縺ッ縺ァ縺阪∪縺帙sシ
  • + +
+

2018-05-02縲Ver1.45-1.46

+
    +
  • 蠑キ蛻カ邨ゆコ縺吶k縺薙→縺後≠繧九ヰ繧ー縺ォ蟇セ蠢
  • +
  • 縲後ン繝繧ェ繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧九阪↓mp4繧定ソス蜉
  • +
  • 蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ォ繝輔ぃ繧、繝ォ繧偵さ繝斐シ縺励◆譎ゅ↓繧ウ繝斐シ蜈縺ィ蜷後§譛邨よ峩譁ー譎る俣縺ォ縺吶k繧医≧縺ォ縺励◆縲
  • + +
+

2018-04-16縲Ver1.44

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪d繝輔ぃ繧、繝ォ蜷阪↓窶拏窶懊d窶拆窶昴′蜈・縺」縺ヲ縺繧九→縲√い繝励Μ縺ョ蜀崎オキ蜍墓凾縺ォ豸医∴縺ェ縺繧医≧縺ォ縺励◆
  • +
  • 險ュ螳壹〒SMB1險ュ螳壼、繧貞晄悄蛟、縺ォ蠕ゥ蜈縺吶k繧ェ繝励す繝ァ繝ウ繧定ソス蜉
  • + +
+

2018-04-12縲Ver1.43

+
    +
  • SMB繝輔か繝ォ繝繝シ縺ォ繧ウ繝斐シ繝サ遘サ蜍輔@縺溘ヵ繧。繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧偵さ繝斐シ蜈縺ィ蜷後§縺ォ縺ァ縺阪↑縺譎ゅッ繝。繝繧サ繝シ繧ク繧定。ィ遉コ縺励お繝ゥ繝シ縺ィ縺励↑縺繧医≧縺ォ縺励◆縲
  • +
  • SMB1險ュ螳壹ョ逵∫払譎ょ、繧貞、画峩 + lmCompatibility- -> 3 + Use extended security- -> true
  • + +
+

2018-04-10縲Ver1.42

+
    +
  • SDCARD繝繧」繝ャ繧ッ繝医Μ繝シ縺碁∈謚槭〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2018-04-09縲Ver1.40-41

+
    +
  • SMB繧オ繝シ繝舌シ縺ク縺ョ蜷梧悄縺ァAccess Denied縺檎匱逕溘☆繧九ヰ繧ー繧定ァ」豎コ
  • +
  • 繧「繝励Μ縺悟シキ蛻カ邨ゆコ縺吶k繝舌げ繧定ァ」豎コ
  • + +
+

2018-04-08縲Ver1.39

+
    +
  • SMB2縺ァ縺ョ窶抖reeId is NULL窶昴お繝ゥ繝シ縺ョ蝗樣∩
  • +
  • SMB-SMB縺ァ縺ョ遘サ蜍輔′螟ア謨励☆繧九ヰ繧ー繧定ァ」豎コ
  • +
  • SMB蜷梧悄繝輔か繝ォ繝繝シ邱ィ髮縺ァ遞縺ォ繧ッ繝ゥ繝繧キ繝・縺吶k迴セ雎。縺ォ蟇セ蠢
  • +
  • 蜷梧悄螻・豁エ縺ョ隧ウ邏ー繧剃ス懈舌@縺ェ縺繧医≧縺ォ險ュ螳壹〒縺阪k繧医≧縺ォ縺励◆(險ュ螳夲シ搾シ槫酔譛滂シ搾シ槫酔譛溷ア・豁エ)
  • + +
+

2018-04-02縲Ver1.38

+
    +
  • SMB繧オ繝シ繝舌シ縺九i縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ驕ク謚槭〒繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌〒縺阪k繧医≧縺ォ縺励◆縲
  • +
  • 蛹ソ蜷阪Ο繧ー繧、繝ウ縺ァ螟ア謨励@縺ェ縺繧医≧縺ォ菫ョ豁」
  • + +
+

2018-04-01縲Ver1.36-37

+
    +
  • SMB Protocol蜃ヲ逅縺ョ險よュ」
  • + +
+

2018-03-31縲Ver1.35

+
    +
  • SMB1縺ィSMB2縺ァ縺ョ蜃ヲ逅繧貞髮「
  • + +
+

2018-03-31縲Ver1.34

+
    +
  • 蜷梧悄繧ソ繧ケ繧ッ縺ョ譁ー隕丈ス懈先凾縺ォSMB繝励Ο繝医さ繝ォ繧偵郡MB1縺ョ縺ソ縲阪↓螟画峩
  • + +
+

2018-03-30縲Ver1.33

+
    +
  • SMB2蟇セ蠢懊↓莨エ縺SMB1讖溷勣縺ァ縺ョ荳榊キ蜷医↓蟇セ蠢
  • + +
+

2018-03-28縲Ver1.32

+
    +
  • SMB-SDCARD/蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ァ繝溘Λ繝シ縺ァ繝輔ぃ繧、繝ォ縺悟炎髯、縺輔l繧九ヰ繧ー繧剃ソョ豁」
  • + +
+

2018-03-27縲Ver1.31

+
    +
  • SMB2(2.01)繧剃スソ逕ィ蜿ッ閭ス縺ォ縺励◆
  • + +
+

2018-03-20縲Ver1.29-1.30

+
    +
  • 隍謨ー繧ケ繧ア繧ク繝・繝シ繝ォ繧貞庄閭ス縺ォ縺励◆
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ繧ェ繝励す繝ァ繝ウ縺ォ縲悟髮サ荳ュ縺ョ縺ソ蜷梧悄繧帝幕蟋九☆繧九阪r霑ス蜉
  • +
  • 髯、螟悶@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺檎ゥコ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ縺励※菴懈舌&繧後↑縺繧医≧縺ォ縺励◆
  • +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪〒菴ソ逕ィ縺ァ縺阪↑縺譁蟄励r蜑企勁縺吶k繧医≧縺ォ縺励◆
  • + +
+

2018-02-28縲Ver1.28

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ縺ァ荳贋ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ繧帝勁螟悶@荳倶ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ繧帝∈謚槭@縺溷エ蜷医ッ荳倶ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ驕ク謚槭r譛牙柑縺ォ縺励◆縲ゑシ亥酔譛溘ち繧ケ繧ッ縺ァ縲梧僑蠑オ縺輔l縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ驕ク謚/髯、螟悶ヵ繧」繝ォ繧ソ繧剃スソ逕ィ縺吶k縲阪r繝√ぉ繝繧ッ縺励◆譎ゅ↓譛牙柑縺ィ縺ェ繧翫∪縺呻シ
  • +
  • 蜷梧悄繧ソ繧ケ繧ッ髢句ァ区凾縺ォWiFi繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医Μ繧ケ繝医ョSSID縺ォ謗・邯壹@縺ヲ縺縺ェ縺譎ゅ↓隴ヲ蜻翫Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺玲ャ。縺ョ繧ソ繧ケ繧ッ繧帝幕蟋九☆繧九が繝励す繝ァ繝ウ繧貞酔譛溘ち繧ケ繧ッ縺ォ霑ス蜉縲
  • + +
+

2018-02-22縲Ver1.27

+
    +
  • SMB縺九iSDCARD縺ク縺ョ蜷梧悄縺ァ豈主屓繧ウ繝斐シ縺輔l繧倶ク榊キ蜷医r隗」豸
  • +
  • 繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺セ縺溘ッZIP繝輔ぃ繧、繝ォ蜷阪↓蜷梧悄繧ソ繧ケ繧ッ髢句ァ区凾縺ョ蟷エ譛域律繧定ソス蜉縺ァ縺阪k繧医≧縺ォ縺励◆縲 +-%YEAR% 隘ソ證ヲ(2018繧2019縺ェ縺ゥ) +-%MONTH% 譛(01縺九i12縺セ縺ァ) +-%DAY% 譌・(01縺九i31縺セ縺ァ) +-%DAY-OF-YEAR% 蟷エ蛻昴°繧峨ョ譌・謨ー(001-365縺セ縺ァ縲√≧繧九≧蟷エ縺ッ366)
  • + +
+

2018-02-16縲Ver1.26

+
    +
  • SMB繧オ繝シ繝舌シ髢薙〒縺ョ蜷梧悄繧定ソス蜉縲
  • +
  • Android 8縺ァ繧キ繝ァ繝シ繝医き繝繝医′菴懈舌〒縺阪k繧医≧縺ォ縺励◆縲
  • +
  • 繝繧ケ繝医Δ繝シ繝峨〒螟夜ΚSDCARD縺ォ蜷梧悄縺吶k譎ゅ↓0繝舌う繝医ョ繝輔ぃ繧、繝ォ縺御ス懈舌&繧後↑縺繧医≧縺ォ縺励◆縲
  • + +
+

2016-11-07縲Ver1.25

+
    +
  • SMB繧オ繝シ繝舌シ縺ィ縺ョ蜷梧悄縺ォ縺翫>縺ヲ縲∝酔譛滉クュ縺ォ繧ィ繝ゥ繝シ縺ィ縺ェ繧倶ク榊キ蜷医r隗」豸医
  • +
  • 螟夜ΚSDCARD縺ク縺ョ繧「繧ッ繧サ繧ケ譁ケ豕輔r螟画峩縲
  • + +
+

2016-10-24縲Ver1.24

+
    +
  • SMB蜷榊燕隗」豎コ縺後〒縺阪↑縺九▲縺滓凾縺ォDNS繧剃スソ逕ィ縺怜錐蜑崎ァ」豎コ繧偵☆繧九h縺縺ォ縺励◆縲ゅ◆縺縺励∝錐蜑阪ッwin-srv.test.domain.com遲峨ョ繧医≧縺ォFQDN縺ァ謖螳壹☆繧九%縺ィ縺悟ソ隕√
  • + +
+

2016-09-30縲Ver1.23

+
    +
  • 騾夂衍髻ウ縺ョ髻ウ驥上r險ュ螳壹〒縺阪k繧医≧縺ォ縺励◆縲
  • + +
+

2016-09-26縲Ver1.22

+
    +
  • 縲悟キョ蛻蛻、螳壹↓繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎る俣繧剃スソ逕ィ縺吶k縲阪→縲悟キョ蛻蛻、螳壹↓繝輔ぃ繧、繝ォ繧オ繧、繧コ繧剃スソ逕ィ縺吶k縲阪ョ繧ェ繝励す繝ァ繝ウ縺御ソ晏ュ倥&繧後↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-09-23縲Ver1.21

+
    +
  • 騾夂衍繝。繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k繧ェ繝励す繝ァ繝ウ繧定ソス蜉
  • + +
+

2016-09-01縲Ver1.20

+
    +
  • 螟夜ΚSDCARD縺ク縺ョ蜷梧悄縺ァ遨コ繝繧」繝ャ繧ッ繝医Μ縺悟酔譛溘&繧後↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-08-21縲Ver1.19

+
    +
  • 蜷梧悄繧ェ繝励す繝ァ繝ウ縺ァ繝輔ぃ繧、繝ォ縺ョ荳頑嶌縺阪r髦イ豁「蜿ッ閭ス縺ォ縺励◆
  • + +
+

2016-08-16縲Ver1.18

+
    +
  • Directory驕ク謚樒判髱「縺ァFastScroll繧堤┌蜉ケ縺ォ縺励◆
  • + +
+

2016-08-02縲Ver1.17

+
    +
  • 螟夜Κ繧「繝励Μ縺九i縺ョ蜷梧悄髢句ァ九〒驥崎、縺励※縺励∪縺繝舌げ繧定ァ」豎コ
  • +
  • ZIP繝輔ぃ繧、繝ォ縺ク縺ョ繝溘Λ繝シ縺ァ蜑企勁譎る俣縺ョ遏ュ邵ョ
  • + +
+

2016-06-26縲Ver1.16

+
    +
  • 螟夜ΚSDCARD繧定ェ崎ュ倥〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-06-26縲Ver1.15

+
    +
  • USB繝輔か繝ォ繝繝シ縺ォ/storage/emulated/UsbDriveA 縺ィ /storage/emulated/UsbDriveB繧定ソス蜉
  • + +
+

2016-06-25縲Ver1.14

+
    +
  • ZIP縺ォ蜷梧悄縺励◆蝣エ蜷医↓遨コ繝繧」繝ャ繧ッ繝医Μ縺悟渚譏縺輔l縺ェ縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-06-23縲Ver1.13

+
    +
  • 蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺九iZIP繝輔ぃ繧、繝ォシ亥驛ィ繧ケ繝医Ξ繝シ繧ク縺セ縺溘ッ螟夜ΚSDCARDシ峨↓蜷梧悄繝サ繧ウ繝斐シ繝サ遘サ蜍輔r霑ス蜉
  • + +
+

2016-06-17縲Ver1.12

+
    +
  • /Removable/MicroSD繧貞、夜ΚSDCARD縺ョ繝代せ縺ォ霑ス蜉
  • + +
+

2016-06-17縲Ver1.11

+
    +
  • 繧ケ繧ッ繝ェ繝シ繝ウ繧ェ繝墓凾縺ォ繧、繝ウ繝繝ウ繝医〒襍キ蜍輔&繧後◆譎ゅ↓蠑キ蛻カ邨ゆコ縺吶k繝舌げ繧定ァ」豎コ
  • + +
+

2016-06-13縲Ver1.10

+
    +
  • SMB繝帙せ繝亥錐縺ョ蜷榊燕隗」豎コ縺ョ繝舌げ隗」豎コ
  • +
  • Notification繝。繝繧サ繝シ繧ク陦ィ遉コ縺ョ譛驕ゥ蛹
  • + +
+

2016-05-29縲Ver1.09

+
    +
  • 繝槭せ繧ソ繝シ縺ィ繧ソ繝シ繧イ繝繝医ョ邨縺ソ蜷医o縺帶、懈渊繧貞宍譬シ蛹
  • +
  • WiFi繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医ョ蜑企勁縺ァ蠑キ蛻カ邨ゆコ縺吶k繝舌げ繧定ァ」豎コ
  • + +
+

2016-05-25縲Ver1.08

+
    +
  • 蜷梧悄繧ソ繧ケ繧ッ霑ス蜉繝サ邱ィ髮逕サ髱「縺ォ繝倥Ν繝励r霑ス蜉
  • +
  • 繝輔ぃ繧、繝ォ驕ク謚槭ョUI繧貞、画峩縲1.驕ク謚槭ッ繝輔ぃ繧、繝ォ蜷阪d繝繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励☆繧九2.繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ縺ョ陦ィ遉コ縺ッ蟾ヲ遶ッ縺ョ繧「繧、繧ウ繝ウ繧偵ち繝繝励☆繧九3.髟キ謚シ縺励r蟒豁「縲
  • +
  • 逕サ髱「縺ョ蜷代″繧偵昴シ繝医Ξ繧、繝医↓蝗コ螳壹☆繧九が繝励す繝ァ繝ウ繧定ソス蜉
  • + +
+

2016-05-16縲Ver1.07

+
    +
  • 繝倥Ν繝励ヵ繧。繧、繝ォ繧竪oogle Drive縺ク縺ョ繝ェ繝ウ繧ッ縺ォ螟画峩縺励ヵ繧。繧、繝ォ繧オ繧、繧コ繧貞ー上&縺上@縺溘
  • +
  • 繝輔ぃ繧、繝ォ繝サ繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ縺ョ霑ス蜉縺後〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • +
  • 繝輔ぃ繧、繝ォ繝輔ぅ繝ォ繧ソ繝シ縺ョUI繧呈隼蝟
  • + +
+

2016-05-07縲Ver1.06

+
    +
  • 螟夜ΚSDCARD縺ョPATH縺ォ/storage/MicroSD, /storage/extSdCard縺ィ/mnt/extSdCard繧定ソス蜉
  • +
  • 螟夜ΚSDCARD縺ク縺ョ蜷梧悄縺ァ繧ウ繝斐シ縺輔l縺ェ縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-05-03縲Ver1.05

+
    +
  • 蜷梧悄繧ェ繝励す繝ァ繝ウ縺ォ蜷梧悄繧定ィア蜿ッ縺吶k辟。邱哭AN繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医r謖螳壹〒縺阪k繧医≧縺ォ縺励◆
  • +
  • 螟夜ΚSDCARD縺ョ驕ク謚槭↓髢「縺吶k繝ヲ繝シ繧カ繝シ繧、繝ウ繧ソ繝シ繝輔ぉ繝シ繧ケ繧呈隼蝟縺励◆
  • + +
+

2016-04-16縲Ver1.04

+
    +
  • 繧ソ繧ケ繧ッ繝ェ繧ケ繝医ョ蜿悶j霎シ縺ソ縺九iSMBSync縺ァ譖ク縺榊コ縺励◆繝励Ο繝輔ぃ繧、繝ォ蜿悶j霎シ縺ソ縺後〒縺阪k繧医≧縺ォ縺励◆縲
  • + +
+

2016-04-14縲Ver1.03

+
    +
  • 繝代ヵ繧ゥ繝シ繝槭Φ繧ケ謾ケ蝟
  • +
  • 繧ソ繧ケ繧ッ縺ョ蜿悶j霎シ縺ソ縺ァ險ュ螳壼、縺悟叙繧願セシ繧√↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-04-10縲Ver1.02

+
    +
  • SDCARD縺九i繝輔ぃ繧、繝ォ縺檎ァサ蜍輔&繧後↑縺繝舌げ繧定ァ」豎コ
  • +
  • 荳驛ィ縺ョ繝繧」繝ャ繧ッ繝医Μ縺ァ繝溘Λ繝シ縺後〒縺阪↑縺繝舌げ繧定ァ」豎コ
  • + +
+

2016-04-09縲Ver1.00

+
    +
  • 譛蛻昴ョ蜈ャ髢
  • + +
+

 

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image003.png deleted file mode 100644 index ebebbd4a..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image004.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image005.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image005.png deleted file mode 100644 index 6b3a1752..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image005.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image006.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image006.png deleted file mode 100644 index 0777662c..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image006.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image007.png b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image007.png deleted file mode 100644 index 5d11b903..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.files/image007.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.htm b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.htm deleted file mode 100644 index c50c2be7..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.htm +++ /dev/null @@ -1,562 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

Table of Contents

- -

1.Functions. 1

- -

2.FAQs. 2

- -

3.Library. 2

- -

4.Documents. 3

- -

 

- -

1.Functions

- -

SMBSync2 is a tool for synchronizing files via wireless -LAN using SMB1,SMB2 or SMB3 protocol between the internal storage of Android -terminal, SDCARD and PC/NAS. Synchronization is a one-way from the master to -the target. Mirror, Move, Copy and Archive modes are supported. Many storage -combinations are supported (Internal storage, SDCARD, OTG-USB, SMB, ZIP)

- -

Sync can be automatically started by external applications -(Tasker, AutoMagic etc) or SMBSync2 schedule.

- -

 

- -

Sync occurs between two folder pairs called the Master -(source folder) and the Target (destination folder). It is a one direction -Sync, from the Master to the Target.

- -

 

- -

The supported Sync modes are:

- -

 

- -

*         -Mirror

- -

The -target folder is kept as an exact copy of the master. If a file is different -between the master and the target, the file on the master overwrites the file -on the target. Folder and files not present on the target are copied from the -master. Files and folders that do not exist on the master are also deleted from -the target. Only modified files (by size and/or -date/time) are updated on the target.

- -

 

- -

 

- -

*         -Move

- -

If -a file is different between the master and the target, the file on the master -overwrites the file on the target. Once copied to the target, files and folders -are deleted from the master (like move command).

- -

Only -modified files (by size and/or date/time) are copied to the target. Identical -files, based on the selected compare criteria, are deleted from the master -without being copied. Files and folders on the target, not present on the master, -are obviously preserved.

- -

 

- -

*         -Copy

- -

Same as Move, but files are not deleted from the master -after being copied.

- -

If a file is -different between the master and the target, the file on the master overwrites -the file on the target. Once copied to the target, files and folders are kept -on the master (like a copy command).

- -

Only -modified files (by size and/or date/time) are copied to the target. Identical -files, based on the selected compare criteria, are ignored and not copied again.

- -

 

- -

*         -Archive

- -

Archive -photos and videos by Moving them from the master to the target folder. Specific -medias criteria can be specified for archiving: shooting date/time, date and -time of last archive execution (such as 7 days or earlier or 30 days or earlier).

- -

ZIP -cannot be specified as a target for Archive operations.

- -

 

- -

Compare criteria:

- -

Files are considered different based on these criteria:

- -

1.      File/folder -name exists only on master or target, not on both sides

- -

2.      Files -have different sizes

- -

3.      Files -have a different time stamp (last modification date and time)

- -

 

- -

In Advanced -Options, many compare settings can be adjusted: time tolerance interval can be -set to ignore difference if less than 1, 3, 5 or 10 sec for compatibility with -FAT/exFAT medias. Ignore Daylight Saving time is supported. Option to not -overwrite target file if it is newer than the master or if it is larger in -size…

- -

When target is -on Internal Storage or on the SD Card, most Android systems do not permit -setting the last modified time of the target file to match the time of the -source file. When target is SMB (PC/NAS), or OTG-USB storage, this is usually -not an issue. SMSync2 detects if the time/date can be set on the target to -match the source file. If not, the last update time of the file is recorded in -the application database files. It is then used to compare the files and check -if they differ by time. In that case, if you try to synchronize the -master/target pair with a third-party application or if SMBSync2 data files are -erased, the source files will be copied again to the target. You can set the -option to “Not overwrite destination file if it is newer than the master” in -addition to comparing by size to overcome this issue.

- -

2.FAQs

- -

Please refer to the PDF link below.

- -

https://drive.google.com/file/d/1a8CTRu9xoCD74Qn0YZxzry-LHxQ8j7dE/view?usp=sharing

- -

3.Library

- -

*         -jcifs-ng ClientLibrary

- -

*         -jcifs-1.3.17

- -

*         -Zip4J -1.3.2

- -

*         -Xmpcore-5.1.3

- -

*         -Metadata-extractor

- -

 

- -

4.Documents

- -

Link to Google :

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.html b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.html new file mode 100644 index 00000000..14356431 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Desc_EN_Short.html @@ -0,0 +1,56 @@ + + + + +SMBSync2_Desc_EN_Short +

1.Functions

+

SMBSync2 is a tool for synchronizing files via wireless LAN using SMB1,SMB2 or SMB3 protocol between the internal storage of Android terminal, SDCARD and PC/NAS. Synchronization is a one-way from the master to the target. Mirror, Move, Copy and Archive modes are supported. Many storage combinations are supported (Internal storage, SDCARD, OTG-USB, SMB, ZIP) +Sync can be automatically started by external applications (Tasker, AutoMagic etc) or SMBSync2 schedule. +Sync occurs between two folder pairs called the Master (source folder) and the Target (destination folder). It is a one direction Sync, from the Master to the Target.

+

The supported Sync modes are:

+
    +
  • Mirror

    +

    The target folder is kept as an exact copy of the master. If a file is different between the master and the target, the file on the master overwrites the file on the target. Folder and files not present on the target are copied from the master. Files and folders that do not exist on the master are also deleted from the target. Only modified files (by size and/or date/time) are updated on the target.

    +
  • +
  • Move

    +

    If a file is different between the master and the target, the file on the master overwrites the file on the target. Once copied to the target, files and folders are deleted from the master (like move command). +Only modified files (by size and/or date/time) are copied to the target. Identical files, based on the selected compare criteria, are deleted from the master without being copied. Files and folders on the target, not present on the master, are obviously preserved.

    +
  • +
  • Copy

    +

    Same as Move, but files are not deleted from the master after being copied. +If a file is different between the master and the target, the file on the master overwrites the file on the target. Once copied to the target, files and folders are kept on the master (like a copy command). +Only modified files (by size and/or date/time) are copied to the target. Identical files, based on the selected compare criteria, are ignored and not copied again.

    +
  • +
  • Archive

    +

    Archive photos and videos by Moving them from the master to the target folder. Specific medias criteria can be specified for archiving: shooting date/time, date and time of last archive execution (such as 7 days or earlier or 30 days or earlier). +ZIP cannot be specified as a target for Archive operations.

    +
  • + +
+

Compare criteria: +Files are considered different based on these criteria:

+
    +
  1. File/folder name exists only on master or target, not on both sides
  2. +
  3. Files have different sizes
  4. +
  5. Files have a different time stamp (last modification date and time)
  6. + +
+

In Advanced Options, many compare settings can be adjusted: time tolerance interval can be set to ignore difference if less than 1, 3, 5 or 10 sec for compatibility with FAT/exFAT medias. Ignore Daylight Saving time is supported. Option to not overwrite target file if it is newer than the master or if it is larger in size窶ヲ +When target is on Internal Storage or on the SD Card, most Android systems do not permit setting the last modified time of the target file to match the time of the source file. When target is SMB (PC/NAS), or OTG-USB storage, this is usually not an issue. SMSync2 detects if the time/date can be set on the target to match the source file. If not, the last update time of the file is recorded in the application database files. It is then used to compare the files and check if they differ by time. In that case, if you try to synchronize the master/target pair with a third-party application or if SMBSync2 data files are erased, the source files will be copied again to the target. You can set the option to 窶廸ot overwrite destination file if it is newer than the master窶 in addition to comparing by size to overcome this issue.

+

2.FAQs

+

Please refer to the PDF link below.
https://drive.google.com/file/d/1a8CTRu9xoCD74Qn0YZxzry-LHxQ8j7dE/view?usp=sharing

+

3.Library

+ +

4.Documents

+

Please refer to the PDF link below.
https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

 

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.htm b/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.htm deleted file mode 100644 index 78950a2f..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.htm +++ /dev/null @@ -1,577 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

Table des -matières

- -

1.Functions. 1

- -

2.FAQs. 3

- -

3. -Bibliothèque externe. 3

- -

4.Documents. 3

- -

 

- -

1.Functions

- -

SMBSync2 est un outil permettant de synchroniser des -fichiers via un réseau local sans fil en utilisant le protocole SMB1, SMB2 ou -SMB3 entre le stockage interne du terminal Android, SDCARD et PC/NAS. La -synchronisation est un aller simple du maître à la cible. Les modes miroir, -déplacement, copie et archivage sont pris en charge. De nombreuses combinaisons -de stockage sont supportées (stockage interne, SDCARD, OTG-USB, SMB, ZIP)

- -

La synchronisation peut être lancée automatiquement par -des applications externes (Tasker, AutoMagic, etc.) ou par le programme -SMBSync2.

- -

 

- -

La synchronisation s'effectue entre deux paires de -dossiers appelés le Master (dossier source) et le Target (dossier de -destination). Il s'agit d'une synchronisation unidirectionnelle, du maître à la -cible.

- -

 

- -

Les modes de synchronisation pris en charge sont les -suivants:

- -

 

- -

*         -Miroir

- -

Le -dossier cible est conservé comme une copie exacte du dossier principal. Si un -fichier est différent entre le dossier principal et le dossier cible, le -fichier principal écrase le fichier cible. Les dossiers et fichiers non -présents sur la cible sont copiés à partir du master. Les fichiers et dossiers -qui n'existent pas sur le master sont également supprimés de la cible. Seuls -les fichiers modifiés (par la taille et/ou la date/heure) sont mis à jour dans -la cible.

- -

 

- -

*         -Déplacement

- -

Si un fichier est -différent entre le maître et la cible, le fichier sur le maître écrase le -fichier sur la cible. Une fois copiés sur la cible, les fichiers et les -dossiers sont supprimés du master (comme la commande move).

- -

Seuls -les fichiers modifiés (par la taille et/ou la date/heure) sont copiés dans la -cible. Les fichiers identiques, sur la base des critères de comparaison -sélectionnés, sont supprimés du fichier maître sans être copiés. Les fichiers -et dossiers de la cible, non présents sur le master, sont évidemment préservés.

- -

 

- -

*         -Copie

- -

Même -chose que pour Move, mais les fichiers ne sont pas supprimés du master après -avoir été copiés.

- -

Si -un fichier est différent entre le master et la cible, le fichier du master -écrase le fichier de la cible. Une fois copiés sur la cible, les fichiers et -les dossiers sont conservés sur le master (comme une commande de copie).

- -

Seuls -les fichiers modifiés (par la taille et/ou la date/heure) sont copiés vers la -cible. Les fichiers identiques, sur la base des critères de comparaison -sélectionnés, sont ignorés et ne sont pas copiés à nouveau.

- -

 

- -

*         -Archives

- -

Archivez -des photos et des vidéos en les déplaçant du dossier principal au dossier -cible. Des critères spécifiques aux médias peuvent être spécifiés pour -l'archivage : date/heure de tournage, date et heure de la dernière exécution de -l'archive (par exemple 7 jours ou plus tôt ou 30 jours ou plus tôt).

- -

Le -ZIP ne peut pas être spécifié comme cible pour les opérations d'archivage.

- -

 

- -

Comparer les critères :

- -

Les dossiers sont considérés comme différents sur la -base de ces critères:

- -

1.      Le -nom du fichier/dossier n'existe que sur le maître ou la cible, et non sur les -deux côtés

- -

2.      Les -fichiers ont des tailles différentes

- -

3.      Les -fichiers ont un horodatage différent (date et heure de la dernière -modification)

- -

 

- -

Dans les options avancées, de nombreux paramètres de -comparaison peuvent être ajustés : l'intervalle de tolérance temporelle peut -être réglé pour ignorer la différence si elle est inférieure à 1, 3, 5 ou 10 -secondes pour la compatibilité avec les médias FAT/exFAT. Ignorer l'heure d'été -est pris en charge. Possibilité de ne pas écraser le fichier cible s'il est -plus récent que le fichier maître ou s'il est plus volumineux...

- -

Lorsque la cible se trouve sur le stockage interne ou sur la -carte SD, la plupart des systèmes Android ne permettent pas de régler l'heure -de la dernière modification du fichier cible pour qu'elle corresponde à l'heure -du fichier source. Lorsque la cible est une SMB (PC/NAS), ou un stockage -OTG-USB, cela ne pose généralement pas de problème. SMSync2 détecte si -l'heure/la date peut être réglée sur la cible pour correspondre au fichier -source. Si ce n'est pas le cas, la dernière heure de mise à jour du fichier est -enregistrée dans les fichiers de la base de données de l'application. Elle est -ensuite utilisée pour comparer les fichiers et vérifier s'ils diffèrent dans le -temps. Dans ce cas, si vous essayez de synchroniser la paire maître/cible avec -une application tierce ou si les fichiers de données SMBSync2 sont effacés, les -fichiers sources seront à nouveau copiés sur la cible. Vous pouvez régler -l'option "Ne pas écraser le fichier de destination s'il est plus récent -que le maître" en plus de la comparaison par taille pour surmonter ce problème.

- -

2.FAQs

- -

Veuillez vous référer au lien PDF ci-dessous.

- -

https://drive.google.com/file/d/1QPz_VN8Hur0cfvzF35SP-dt9_QTkv-ZA/view?usp=sharing

- -

3. Bibliothèque -externe

- -

*         -jcifs-ng -ClientLibrary

- -

*         -jcifs-1.3.17

- -

*         -Zip4J -1.3.2

- -

*         -Xmpcore-5.1.3

- -

*         -Metadata-extractor

- -

 

- -

4.Documents

- -

Lien vers -Google:

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.html b/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.html new file mode 100644 index 00000000..30429cc4 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Desc_FR_Short.html @@ -0,0 +1,55 @@ + + + + +SMBSync2_Desc_FR_Short +

1.Functions

+

SMBSync2 est un outil permettant de synchroniser des fichiers via un rテゥseau local sans fil en utilisant le protocole SMB1, SMB2 ou SMB3 entre le stockage interne du terminal Android, SDCARD et PC/NAS. La synchronisation est un aller simple du maテョtre テ la cible. Les modes miroir, dテゥplacement, copie et archivage sont pris en charge. De nombreuses combinaisons de stockage sont supportテゥes (stockage interne, SDCARD, OTG-USB, SMB, ZIP)

+

La synchronisation peut テェtre lancテゥe automatiquement par des applications externes (Tasker, AutoMagic, etc.) ou par le programme SMBSync2.

+

La synchronisation s'effectue entre deux paires de dossiers appelテゥs le Master (dossier source) et le Target (dossier de destination). Il s'agit d'une synchronisation unidirectionnelle, du maテョtre テ la cible.

+

Les modes de synchronisation pris en charge sont les suivants:

+
    +
  • Miroir

    +

    Le dossier cible est conservテゥ comme une copie exacte du dossier principal. Si un fichier est diffテゥrent entre le dossier principal et le dossier cible, le fichier principal テゥcrase le fichier cible. Les dossiers et fichiers non prテゥsents sur la cible sont copiテゥs テ partir du master. Les fichiers et dossiers qui n'existent pas sur le master sont テゥgalement supprimテゥs de la cible. Seuls les fichiers modifiテゥs (par la taille et/ou la date/heure) sont mis テ jour dans la cible.

    +
  • +
  • Dテゥplacement

    +

    Si un fichier est diffテゥrent entre le maテョtre et la cible, le fichier sur le maテョtre テゥcrase le fichier sur la cible. Une fois copiテゥs sur la cible, les fichiers et les dossiers sont supprimテゥs du master (comme la commande move). +Seuls les fichiers modifiテゥs (par la taille et/ou la date/heure) sont copiテゥs dans la cible. Les fichiers identiques, sur la base des critティres de comparaison sテゥlectionnテゥs, sont supprimテゥs du fichier maテョtre sans テェtre copiテゥs. Les fichiers et dossiers de la cible, non prテゥsents sur le master, sont テゥvidemment prテゥservテゥs.

    +
  • +
  • Copie

    +

    Mテェme chose que pour Move, mais les fichiers ne sont pas supprimテゥs du master aprティs avoir テゥtテゥ copiテゥs. +Si un fichier est diffテゥrent entre le master et la cible, le fichier du master テゥcrase le fichier de la cible. Une fois copiテゥs sur la cible, les fichiers et les dossiers sont conservテゥs sur le master (comme une commande de copie). +Seuls les fichiers modifiテゥs (par la taille et/ou la date/heure) sont copiテゥs vers la cible. Les fichiers identiques, sur la base des critティres de comparaison sテゥlectionnテゥs, sont ignorテゥs et ne sont pas copiテゥs テ nouveau.

    +
  • +
  • Archives

    +

    Archivez des photos et des vidテゥos en les dテゥplaテァant du dossier principal au dossier cible. Des critティres spテゥcifiques aux mテゥdias peuvent テェtre spテゥcifiテゥs pour l'archivage : date/heure de tournage, date et heure de la derniティre exテゥcution de l'archive (par exemple 7 jours ou plus tテエt ou 30 jours ou plus tテエt). +Le ZIP ne peut pas テェtre spテゥcifiテゥ comme cible pour les opテゥrations d'archivage.

    +
  • + +
+

Comparer les critティres :

+

Les dossiers sont considテゥrテゥs comme diffテゥrents sur la base de ces critティres:

+
    +
  1. Le nom du fichier/dossier n'existe que sur le maテョtre ou la cible, et non sur les deux cテエtテゥs
  2. +
  3. Les fichiers ont des tailles diffテゥrentes
  4. +
  5. Les fichiers ont un horodatage diffテゥrent (date et heure de la derniティre modification)
  6. + +
+

Dans les options avancテゥes, de nombreux paramティtres de comparaison peuvent テェtre ajustテゥs : l'intervalle de tolテゥrance temporelle peut テェtre rテゥglテゥ pour ignorer la diffテゥrence si elle est infテゥrieure テ 1, 3, 5 ou 10 secondes pour la compatibilitテゥ avec les mテゥdias FAT/exFAT. Ignorer l'heure d'テゥtテゥ est pris en charge. Possibilitテゥ de ne pas テゥcraser le fichier cible s'il est plus rテゥcent que le fichier maテョtre ou s'il est plus volumineux...

+

Lorsque la cible se trouve sur le stockage interne ou sur la carte SD, la plupart des systティmes Android ne permettent pas de rテゥgler l'heure de la derniティre modification du fichier cible pour qu'elle corresponde テ l'heure du fichier source. Lorsque la cible est une SMB (PC/NAS), ou un stockage OTG-USB, cela ne pose gテゥnテゥralement pas de problティme. SMSync2 dテゥtecte si l'heure/la date peut テェtre rテゥglテゥe sur la cible pour correspondre au fichier source. Si ce n'est pas le cas, la derniティre heure de mise テ jour du fichier est enregistrテゥe dans les fichiers de la base de donnテゥes de l'application. Elle est ensuite utilisテゥe pour comparer les fichiers et vテゥrifier s'ils diffティrent dans le temps. Dans ce cas, si vous essayez de synchroniser la paire maテョtre/cible avec une application tierce ou si les fichiers de donnテゥes SMBSync2 sont effacテゥs, les fichiers sources seront テ nouveau copiテゥs sur la cible. Vous pouvez rテゥgler l'option "Ne pas テゥcraser le fichier de destination s'il est plus rテゥcent que le maテョtre" en plus de la comparaison par taille pour surmonter ce problティme.

+

2.FAQs

+

Veuillez vous rテゥfテゥrer au lien PDF ci-dessous.
https://drive.google.com/file/d/1QPz_VN8Hur0cfvzF35SP-dt9_QTkv-ZA/view?usp=sharing

+

3. Bibliothティque externe

+ +

4.Documents

+

Veuillez vous rテゥfテゥrer au lien PDF ci-dessous.
https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_IT_Short.html b/SMBSync2/src/main/assets/SMBSync2_Desc_IT_Short.html new file mode 100644 index 00000000..c855b0bb --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Desc_IT_Short.html @@ -0,0 +1,54 @@ + + + + +SMBSync2_Desc_IT_Short +

1. Funzioni

+

SMBSync2 ティ uno strumento per la sincronizzazione di file via LAN wireless utilizzando il protocollo SMB1, SMB2 o SMB3 tra la memoria interna del terminale Android, SDCARD e PC/NAS. La sincronizzazione ティ a senso unico dal master all'obiettivo. Sono supportate le modalitテ Mirror, Sposta, Copia e Archivia. Sono supportate molte combinazioni di archiviazione (archiviazione interna, SDCARD, OTG-USB, SMB, ZIP)La sincronizzazione puテイ essere avviata automaticamente da applicazioni esterne (Tasker, AutoMagic ecc.) o dal pianificatore SMBSync2. +La sincronizzazione avviene tra due coppie di cartelle chiamate Master (cartella sorgente) e Target (cartella di destinazione). Si tratta di una sincronizzazione in una sola direzione, dal Master al Target. +Le modalitテ di sincronizzazione supportate sono:

+
    +
  • Mirror

    +

    La cartella di destinazione viene conservata come copia esatta del master. Se un file ティ diverso tra il master e la destinazione, il file sul master sovrascrive il file sulla destinazione. La cartella e i file non presenti sulla destinazione vengono copiati dal master. Anche i file e le cartelle non presenti sul master vengono cancellati dal master. Solo i file modificati (per dimensione e/o data/ora) vengono aggiornati sulla destinazione.

    +
  • +
  • Sposta

    +

    Se un file ティ diverso tra il master e il target, il file sul master sovrascrive il file sul target. Una volta copiati nella destinazione, i file e le cartelle vengono cancellati dal master (come il comando sposta). +Solo i file modificati (per dimensione e/o data/ora) vengono copiati nella destinazione. I file identici, in base ai criteri di confronto selezionati, vengono cancellati dal master senza essere copiati. I file e le cartelle sul target, non presenti sul master, vengono ovviamente conservati.

    +
  • +
  • Copia

    +

    Come per permeti, ma i file non vengono cancellati dal master dopo essere stati copiati. +Se un file ティ diverso tra il master e la destinazione, il file sul master sovrascrive il file sulla destinazione. Una volta copiati nella destinazione, i file e le cartelle vengono mantenuti sul master (come un comando di copia). +Solo i file modificati (per dimensione e/o data/ora) vengono copiati sulla destinazione. I file identici, in base ai criteri di confronto selezionati, vengono ignorati e non vengono piテケ copiati.

    +
  • +
  • Archivia

    +

    Archiviare foto e video spostandoli dal master alla cartella di destinazione. Per l'archiviazione possono essere specificati criteri specifici: data/ora di scatto, data e ora dell'ultima esecuzione dell'archivio (ad esempio 7 giorni o prima o 30 giorni o prima). +ZIP non puテイ essere specificato come target per le operazioni di archivio.

    +
  • + +
+

Criteri di comparazione: +I file sono considerati diversi in base a questi criteri:

+
    +
  1. Il nome del file/cartella esiste solo sul master o sul target, non su entrambi i lati
  2. +
  3. I file hanno dimensioni diverse
  4. +
  5. I file hanno un orario diverso (data e ora dell'ultima modifica)
  6. + +
+

Nelle Opzioni Avanzate ティ possibile regolare molte impostazioni di confronto: l'intervallo di tolleranza temporale puテイ essere impostato per ignorare la differenza se inferiore a 1, 3, 5 o 10 sec per la compatibilitテ con i media FAT/exFAT. Ignora l'ora legale ティ supportata. Opzione per non sovrascrivere il file di destinazione se ティ piテケ nuovo del master o se ティ di dimensioni maggiori...

+

Quando il target si trova nella memoria interna o sulla scheda SD, la maggior parte dei sistemi Android non consente di impostare l'ultimo orario modificato del file di destinazione in modo che corrisponda all'orario del file di origine. Quando il target ティ SMB (PC/NAS), o memoria OTG-USB, di solito questo non ティ un problema. SMSync2 rileva se l'ora/data puテイ essere impostata sulla destinazione per corrispondere al file di origine. In caso contrario, l'ultimo tempo di aggiornamento del file viene registrato nei file del database dell'applicazione. Viene quindi utilizzato per confrontare i file e verificare se differiscono per tempo. In tal caso, se si tenta di sincronizzare la coppia master/target con un'applicazione di terze parti o se i file di dati SMBSync2 vengono cancellati, i file di origine vengono copiati nuovamente sul target. テ possibile impostare l'opzione "Non sovrascrivere il file di destinazione se ティ piテケ recente del master", oltre al confronto per dimensioni per superare questo problema.

+

2.FAQs

+

Si prega di fare riferimento al link PDF qui sotto.
https://drive.google.com/file/d/1a8CTRu9xoCD74Qn0YZxzry-LHxQ8j7dE/view?usp=sharing

+

3. Libreria

+ +

4. Documenti

+

Si prega di fare riferimento al link PDF qui sotto.
https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.htm b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.htm deleted file mode 100644 index 8ef98fe2..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.htm +++ /dev/null @@ -1,477 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

目次

- -

1.機能... 1

- -

2.FAQ.. 2

- -

3.使用ライブラリー... 2

- -

4.詳細情報... 2

- -

 

- -

1.機能

- -

SMBSync2Android端末の内部ストレージ、SDCARDPC/NASの間でSMB1, SMB2またはSMB3プロトコルを使用し無線LAN経由でファイルの同期を行うためのツールです。同期はマスターからターゲットへの一方向で、ミラー、移動、コピー、アーカイブが使用できます。(内部ストレージ、SDCARDSMBZIPの組み合わせが可能です)

- -

SMBSync2のスケジュール機能または外部アプリケーション(TaskerAutoMagicなど)により定期的に同期を開始する事が可能です。

- -

 

- -

*       -ミラー

- -

マスター側のディレクトリーとファイルをターゲット側に差分コピー(*1)し、コピー終了後にマスター側に存在しないターゲット側のファイルとディレクトリーを削除する。

- -

*       -移動

- -

マスター側のディレクトリーとファイルをターゲット側に差分コピーし、コピー終了後にマスター側のファイルを削除する。(ただし、マスターとターゲットに同名でファイルサイズと更新日時が同じファイルはコピーせずマスター側のファイルを削除)

- -

*       -コピー

- -

マスター側のディレクトリーに含まれるファイルをターゲット側に差分コピーする。

- -

*       -アーカイブ

- -

マスター側のディレクトリーに含まれる写真とビデオをアーカイブ実行日時より撮影日時が7日以前や30日以前などの条件でターゲットに移動する。(ただし、ターゲットにZIPは使用できません)

- -

 

- -

1:    下記の3条件のうちいずれかが成立した場合に差分ファイルと判定し、コピーや移動を行います。また、同期タスクのオプションでファイルサイズと最終更新時間を無視することができます。

- -

@    ファイルが存在しない

- -

A    ファイルサイズが違う

- -

B    ファイルの最終更新日時が3秒以上違う(秒数は同期タスクのオプションにより変更可能)

- -

2.FAQ

- -

下記リンクのPDFを参照ください。

- -

https://drive.google.com/file/d/1bld5J43139dflVwgNBJLlL3BTLAu199N/view?usp=sharing

- -

3.使用ライブラリー

- -

*        -jcifs-ng ClientLibrary

- -

*        -jcifs-ng -ClientLibrary

- -

*        -jcifs-1.3.17

- -

*        -Zip4J -1.3.2

- -

*        -Xmpcore-5.1.3

- -

*        -Metadata-extractor

- -

4.詳細情報

- -

Googleドライブへのリンク:

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.html b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.html new file mode 100644 index 00000000..139c1858 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Desc_JA_Short.html @@ -0,0 +1,38 @@ + + + + +SMBSync2_Desc_JA_Short +

1.讖溯ス

+

SMBSync2縺ッAndroid遶ッ譛ォ縺ョ蜀驛ィ繧ケ繝医Ξ繝シ繧ク縲ヾDCARD縺ィPC/NAS縺ョ髢薙〒SMB1, SMB2縺セ縺溘ッSMB3繝励Ο繝医さ繝ォ繧剃スソ逕ィ縺礼┌邱哭AN邨檎罰縺ァ繝輔ぃ繧、繝ォ縺ョ蜷梧悄繧定。後≧縺溘a縺ョ繝繝シ繝ォ縺ァ縺吶ょ酔譛溘ッ繝槭せ繧ソ繝シ縺九i繧ソ繝シ繧イ繝繝医∈縺ョ荳譁ケ蜷代〒縲√Α繝ゥ繝シ縲∫ァサ蜍輔√さ繝斐シ縲√い繝シ繧ォ繧、繝悶′菴ソ逕ィ縺ァ縺阪∪縺吶ゑシ亥驛ィ繧ケ繝医Ξ繝シ繧ク縲ヾDCARD縲ヾMB縲〇IP縺ョ邨縺ソ蜷医o縺帙′蜿ッ閭ス縺ァ縺呻シ +SMBSync2縺ョ繧ケ繧ア繧ク繝・繝シ繝ォ讖溯ス縺セ縺溘ッ螟夜Κ繧「繝励Μ繧ア繝シ繧キ繝ァ繝ウシTasker繧БutoMagic縺ェ縺ゥシ峨↓繧医j螳壽悄逧縺ォ蜷梧悄繧帝幕蟋九☆繧倶コ九′蜿ッ閭ス縺ァ縺吶

+
    +
  • 繝溘Λ繝シ
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ(*1)縺励√さ繝斐シ邨ゆコ蠕後↓繝槭せ繧ソ繝シ蛛エ縺ォ蟄伜惠縺励↑縺繧ソ繝シ繧イ繝繝亥エ縺ョ繝輔ぃ繧、繝ォ縺ィ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞炎髯、縺吶k縲
  • +
  • 遘サ蜍
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ縺励√さ繝斐シ邨ゆコ蠕後↓繝槭せ繧ソ繝シ蛛エ縺ョ繝輔ぃ繧、繝ォ繧貞炎髯、縺吶k縲ゑシ医◆縺縺励√槭せ繧ソ繝シ縺ィ繧ソ繝シ繧イ繝繝医↓蜷悟錐縺ァ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ィ譖エ譁ー譌・譎ゅ′蜷後§繝輔ぃ繧、繝ォ縺ッ繧ウ繝斐シ縺帙★繝槭せ繧ソ繝シ蛛エ縺ョ繝輔ぃ繧、繝ォ繧貞炎髯、シ
  • +
  • 繧ウ繝斐シ
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ縺吶k縲
  • +
  • 繧「繝シ繧ォ繧、繝
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k蜀咏悄縺ィ繝薙ョ繧ェ繧偵い繝シ繧ォ繧、繝門ョ溯。梧律譎ゅh繧頑聴蠖ア譌・譎ゅ′シ玲律莉・蜑阪d30譌・莉・蜑阪↑縺ゥ縺ョ譚。莉カ縺ァ繧ソ繝シ繧イ繝繝医↓遘サ蜍輔☆繧九ゑシ医◆縺縺励√ち繝シ繧イ繝繝医↓ZIP縺ッ菴ソ逕ィ縺ァ縺阪∪縺帙sシ
  • + +
+

豕ィ1: 荳玖ィ倥ョシ捺擅莉カ縺ョ縺縺。縺縺壹l縺九′謌千ォ九@縺溷エ蜷医↓蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ蛻、螳壹@縲√さ繝斐シ繧遘サ蜍輔r陦後>縺セ縺吶ゅ∪縺溘∝酔譛溘ち繧ケ繧ッ縺ョ繧ェ繝励す繝ァ繝ウ縺ァ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ィ譛邨よ峩譁ー譎る俣繧堤┌隕悶☆繧九%縺ィ縺後〒縺阪∪縺吶

+
    +
  1. 繝輔ぃ繧、繝ォ縺悟ュ伜惠縺励↑縺
  2. +
  3. 繝輔ぃ繧、繝ォ繧オ繧、繧コ縺碁&縺
  4. +
  5. 繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譌・譎ゅ′3遘剃サ・荳企&縺(遘呈焚縺ッ蜷梧悄繧ソ繧ケ繧ッ縺ョ繧ェ繝励す繝ァ繝ウ縺ォ繧医j螟画峩蜿ッ閭ス)
  6. + +
+

2.FAQ

+

荳玖ィ倥Μ繝ウ繧ッ縺ョPDF繧貞盾辣ァ縺上□縺輔>縲
https://drive.google.com/file/d/1bld5J43139dflVwgNBJLlL3BTLAu199N/view?usp=sharing

+

3.菴ソ逕ィ繝ゥ繧、繝悶Λ繝ェ繝シ

+ +

4.隧ウ邏ー諠蝣ア

+

荳玖ィ倥Μ繝ウ繧ッ縺ョPDF繧貞盾辣ァ縺上□縺輔>縲
https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.htm b/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.htm deleted file mode 100644 index a1d0e998..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.htm +++ /dev/null @@ -1,471 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

Содержание

- -

1. Особенности. 1

- -

2. Часто -задаваемые вопросы.. 2

- -

3. Внешняя -библиотека. 2

- -

4. Больше -информации.. 2

- -

 

- -

1. -Особенности.

- -

SMBSync2 - это инструмент для -синхронизации файлов между внутренним хранилищем Android-устройства, SDCARD и -PC/NAS по беспроводной локальной сети с использованием протокола SMB1, SMB2 или -SMB3. Синхронизация является односторонней от мастера к цели и может быть -зеркалирована, перемещена, скопирована и заархивирована. (Возможна комбинация -внутреннего хранилища, SDCARD, SMB и ZIP).

- -

Периодически запускать -синхронизацию можно функцией планирования SMBSync2 или внешним приложением -(Tasker, AutoMagic и т.д.).

- -

 

- -

*       -Миллер.

- -

Каталог и -файлы на основной стороне будут скопированы на целевую сторону (*1), а файлы и -каталоги на целевой стороне, которые не существуют на основной стороне, будут -удалены после завершения копирования.

- -

*       -движение

- -

Каталог и -файл на ведущей стороне копируются на целевую сторону, а файл на ведущей -стороне удаляется по окончании копирования. (Однако, если файл имеет то же имя, -что и ведущий и целевой, размер файла и дата обновления одинаковы, то ведущий -файл удаляется, а не копируется.

- -

*       -копия

- -

Файлы в -главном каталоге копируются в целевую директорию.

- -

*       архив

- -

Фотографии и видео в основном каталоге будут перемещены к -цели, если дата съемки 7 дней или на 30 дней раньше, чем была выполнена запись -в архив. (Но ты не можешь использовать молнию на цели.)

- -

 

- -

Примечание 1: При выполнении -любого из следующих трех условий файл оценивается как файл разницы и копируется -или перемещается. Вы также можете игнорировать размер файла и время последнего -обновления в опциях задачи синхронизации.

- -

*      -Файл не существует.

- -

*      -Размер файла отличается.

- -

*      -Дата последнего обновления файла отличается более чем на 3 -секунды (количество секунд может быть изменено с помощью опции задачи -синхронизации)

- -

2. Часто задаваемые вопросы

- -

https://drive.google.com/file/d/1a8CTRu9xoCD74Qn0YZxzry-LHxQ8j7dE/view?usp=sharing

- -

3. -Внешняя библиотека

- -

*        -jcifs-ng ClientLibrary

- -

*        -jcifs-1.3.17

- -

*        -Zip4J -1.3.2

- -

*        -Xmpcore-5.1.3

- -

*        -Metadata-extractor

- -

4. -Больше информации

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.html b/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.html new file mode 100644 index 00000000..3d8a17f3 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Desc_RU_Short.html @@ -0,0 +1,46 @@ + + + + +SMBSync2_Desc_RU_Short +

1. ミ樮ミセミアミオミスミスミセムムひク.

+

SMBSync2 - ム采ひセ ミクミスムムびムσシミオミスム ミエミサム ムミクミスムムミセミスミクミキミームミクミク ムミーミケミサミセミイ ミシミオミカミエム ミイミスムτびミオミスミスミクミシ ムムミーミスミクミサミクム禍オミシ Android-ムτムびミセミケムムひイミー, SDCARD ミク PC/NAS ミソミセ ミアミオムミソムミセミイミセミエミスミセミケ ミサミセミコミーミサム糊スミセミケ ムミオムひク ム ミクムミソミセミサム糊キミセミイミーミスミクミオミシ ミソムミセムひセミコミセミサミー SMB1, SMB2 ミクミサミク SMB3. ミ。ミクミスムムミセミスミクミキミームミクム ム紹イミサム紹オムびム ミセミエミスミセムムひセムミセミスミスミオミケ ミセム ミシミームムひオムミー ミコ ムミオミサミク ミク ミシミセミカミオム ミアム錦び ミキミオムミコミーミサミクムミセミイミーミスミー, ミソミオムミオミシミオム禍オミスミー, ムミコミセミソミクムミセミイミーミスミー ミク ミキミーミームムミクミイミクムミセミイミーミスミー. (ミ漬セミキミシミセミカミスミー ミコミセミシミアミクミスミームミクム ミイミスムτびミオミスミスミオミウミセ ムムミーミスミクミサミクム禍ー, SDCARD, SMB ミク ZIP). +ミ渙オムミクミセミエミクムミオムミコミク ミキミーミソムτミコミームび ムミクミスムムミセミスミクミキミームミクム ミシミセミカミスミセ ムムσスミコムミクミオミケ ミソミサミーミスミクムミセミイミーミスミクム SMBSync2 ミクミサミク ミイミスミオム威スミクミシ ミソムミクミサミセミカミオミスミクミオミシ (Tasker, AutoMagic ミク ム.ミエ.).

+
    +
  • ミ慴クミサミサミオム.

    +

    ミ墟ームひーミサミセミウ ミク ムミーミケミサム ミスミー ミセムミスミセミイミスミセミケ ムムひセムミセミスミオ ミアムσエムτ ムミコミセミソミクムミセミイミーミスム ミスミー ムミオミサミオミイムτ ムムひセムミセミスム (*1), ミー ムミーミケミサム ミク ミコミームひーミサミセミウミク ミスミー ムミオミサミオミイミセミケ ムムひセムミセミスミオ, ミコミセムひセムム巾オ ミスミオ ムムτ禍オムムひイムτ紗 ミスミー ミセムミスミセミイミスミセミケ ムムひセムミセミスミオ, ミアムσエムτ ムσエミーミサミオミスム ミソミセムミサミオ ミキミーミイミオムム威オミスミクム ミコミセミソミクムミセミイミーミスミクム.

    +
  • +
  • ミエミイミクミカミオミスミクミオ

    +

    ミ墟ームひーミサミセミウ ミク ムミーミケミサ ミスミー ミイミオミエムτ禍オミケ ムムひセムミセミスミオ ミコミセミソミクムムτ紗びム ミスミー ムミオミサミオミイムτ ムムひセムミセミスム, ミー ムミーミケミサ ミスミー ミイミオミエムτ禍オミケ ムムひセムミセミスミオ ムσエミーミサム紹オムびム ミソミセ ミセミコミセミスムミーミスミクミク ミコミセミソミクムミセミイミーミスミクム. (ミ榧エミスミーミコミセ, ミオムミサミク ムミーミケミサ ミクミシミオミオム ムひセ ミカミオ ミクミシム, ムムひセ ミク ミイミオミエムτ禍クミケ ミク ムミオミサミオミイミセミケ, ムミーミキミシミオム ムミーミケミサミー ミク ミエミームひー ミセミアミスミセミイミサミオミスミクム ミセミエミクミスミーミコミセミイム, ムひセ ミイミオミエムτ禍クミケ ムミーミケミサ ムσエミーミサム紹オムびム, ミー ミスミオ ミコミセミソミクムムσオムびム.

    +
  • +
  • ミコミセミソミクム

    +

    ミ、ミーミケミサム ミイ ミウミサミーミイミスミセミシ ミコミームひーミサミセミウミオ ミコミセミソミクムムτ紗びム ミイ ムミオミサミオミイムτ ミエミクムミオミコムひセムミクム.

    +
  • +
  • ミームムミクミイ

    +

    ミ、ミセムひセミウムミームミクミク ミク ミイミクミエミオミセ ミイ ミセムミスミセミイミスミセミシ ミコミームひーミサミセミウミオ ミアムσエムτ ミソミオムミオミシミオム禍オミスム ミコ ムミオミサミク, ミオムミサミク ミエミームひー ムム諌オミシミコミク 7 ミエミスミオミケ ミクミサミク ミスミー 30 ミエミスミオミケ ムミーミスム袴威オ, ムミオミシ ミアム巾サミー ミイム巾ソミセミサミスミオミスミー ミキミーミソミクムム ミイ ミームムミクミイ. (ミ斷セ ムび ミスミオ ミシミセミカミオム尉 ミクムミソミセミサム糊キミセミイミームび ミシミセミサミスミクム ミスミー ムミオミサミク.)

    +
  • + +
+

ミ湲ミクミシミオムミーミスミクミオ 1: ミ湲ミク ミイム巾ソミセミサミスミオミスミクミク ミサム社アミセミウミセ ミクミキ ムミサミオミエムτ紗禍クム ムびミオム ムτミサミセミイミクミケ ムミーミケミサ ミセムミオミスミクミイミーミオムびム ミコミーミコ ムミーミケミサ ムミーミキミスミクムム ミク ミコミセミソミクムムσオムびム ミクミサミク ミソミオムミオミシミオム禍ーミオムびム. ミ柘 ムひーミコミカミオ ミシミセミカミオムひオ ミクミウミスミセムミクムミセミイミームび ムミーミキミシミオム ムミーミケミサミー ミク ミイムミオミシム ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ミイ ミセミソムミクム肖 ミキミーミエミームミク ムミクミスムムミセミスミクミキミームミクミク.

+
    +
  1. ミ、ミーミケミサ ミスミオ ムムτ禍オムムひイムσオム.
  2. +
  3. ミミーミキミシミオム ムミーミケミサミー ミセムひサミクムミーミオムびム.
  4. +
  5. ミ頒ームひー ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ムミーミケミサミー ミセムひサミクムミーミオムびム ミアミセミサミオミオ ムミオミシ ミスミー 3 ムミオミコムσスミエム (ミコミセミサミクムミオムムひイミセ ムミオミコムσスミエ ミシミセミカミオム ミアム錦び ミクミキミシミオミスミオミスミセ ム ミソミセミシミセム禾袴 ミセミソムミクミク ミキミーミエミームミク ムミクミスムムミセミスミクミキミームミクミク)
  6. + +
+

2. ミァミームムひセ ミキミーミエミーミイミーミオミシム巾オ ミイミセミソムミセムム

+

ミ。ミシ. ムムム巾サミコム ミイ ムミセムミシミームひオ PDF ミスミクミカミオ.
https://drive.google.com/file/d/1a8CTRu9xoCD74Qn0YZxzry-LHxQ8j7dE/view?usp=sharing

+

3. ミ漬スミオム威スム肖 ミアミクミアミサミクミセムひオミコミー

+ +

4. ミ岱セミサム袴威オ ミクミスムミセムミシミームミクミク

+

ミ。ミシ. ムムム巾サミコム ミイ ムミセムミシミームひオ PDF ミスミクミカミオ.
https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.htm b/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.htm deleted file mode 100644 index bf4ce5d6..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.htm +++ /dev/null @@ -1,568 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

目次

- -

1.功能... 1

- -

2.问问题... 2

- -

3.正在使用的图书馆... 2

- -

4.详细信息... 2

- -

 

- -

1.功能

- -

SMBSync2是一款通线局域网使用SMB1SMB2SMB3协议Android设备内部存SDCARDPC/NAS间进行文件同步的工具。 同步从主站到目站是向的,可以像、移、复制和存档。 (内部存SDCARDSMBZIP合也是可以的。)

- -

定期同步可以由SMBSync2度功能或外部用程序(如TaskerAutoMagic)启

- -

 

- -

*            -

- -

将主站的目和文件*1)到目,复制完成后,从目侧删除主站不存在的文件和目

- -

*            -

- -

将主控端目和文件差复制到目端,除主控端被复制到目端的文件。 但是,如果主文件和目文件的名称、文件大小和修改日期相同,主文件会被除,而不会被复制。

- -

*             -复制

- -

差分将主目中的文件复制到目中。

- -

*             -封存

- -

如果主目中的照片和视频是在行存档前7天或30天之前拍的,将其移到目中。 但是,你不能使用ZIP来瞄准。

- -

 

- -

*1 足以下三个条件中的任何一个文件将被判定差异文件,并将被复制或移 但是,文件大小和最后修改时间可以被同步任选项忽略。

- -

§  文件不存在。

- -

§  不同的文件大小。

- -

§  最后修改的日期和时间相差3秒以上(秒数可以通同步任中的选项更改)。

- -

2.问问题

- -

参考下面的PDF接。

- -

https://drive.google.com/file/d/1bld5J43139dflVwgNBJLlL3BTLAu199N/view?usp=sharing

- -

3.正在使用的图书馆

- -

*        -jcifs-ng ClientLibrary

- -

*        -jcifs-ng -ClientLibrary

- -

*        -jcifs-1.3.17

- -

*        -Zip4J -1.3.2

- -

*        -Xmpcore-5.1.3

- -

*        -Metadata-extractor

- -

4.详细信息

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.html b/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.html new file mode 100644 index 00000000..b29cef4c --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Desc_ZH_Short.html @@ -0,0 +1,47 @@ + + + + +SMBSync2_Desc_ZH_Short +

1.蜉溯ス

+

SMBSync2譏ッ荳谺セ騾夊ソ譌郤ソ螻蝓溽ス台スソ逕ィSMB1縲ヾMB2謌亡MB3蜊剰ョョ蝨ィAndroid隶セ螟蜀驛ィ蟄伜お縲ヾDCARD蜥訓C/NAS荵矩龍霑幄。梧枚莉カ蜷梧ュ・逧蟾・蜈キ縲 蜷梧ュ・莉惹クサ遶吝芦逶ョ譬遶呎弍蜊募髄逧シ悟庄莉・霑幄。碁復蜒上∫ァサ蜉ィ縲∝、榊宛蜥悟ュ俶。」縲 (蜀驛ィ蟄伜お縲ヾDCARD縲ヾMB蜥兄IP逧扈蜷井ケ滓弍蜿ッ莉・逧縲) +螳壽悄蜷梧ュ・蜿ッ莉・逕アSMBSync2逧隹蠎ヲ蜉溯ス謌門、夜Κ蠎皮畑遞句コ擾シ亥ヲ5asker謌泡utoMagicシ牙星蜉ィ縲

+
    +
  • 髟懷ワ

    +

    蟆荳サ遶吩セァ逧逶ョ蠖募柱譁莉カ蟾ョ鬚晄狭雍晢シ*1シ牙芦逶ョ譬遶吩セァシ悟、榊宛螳梧仙錘シ御サ守岼譬遶吩セァ蛻髯、荳サ遶吩セァ荳榊ュ伜惠逧譁莉カ蜥檎岼蠖輔

    +
  • +
  • 遘サ蜉ィ

    +

    蟆荳サ謗ァ遶ッ逶ョ蠖募柱譁莉カ蟾ョ鬚晏、榊宛蛻ー逶ョ譬遶ッシ悟唖髯、荳サ謗ァ遶ッ陲ォ螟榊宛蛻ー逶ョ譬遶ッ逧譁莉カ縲 菴譏ッシ悟ヲよ棡荳サ譁莉カ蜥檎岼譬譁莉カ逧蜷咲ァー縲∵枚莉カ螟ァ蟆丞柱菫ョ謾ケ譌・譛溽嶌蜷鯉シ悟吩クサ譁莉カ莨夊「ォ蛻髯、シ瑚御ク堺シ夊「ォ螟榊宛縲

    +
  • +
  • 螟榊宛

    +

    蟾ョ蛻蟆荳サ逶ョ蠖穂クュ逧譁莉カ螟榊宛蛻ー逶ョ譬逶ョ蠖穂クュ縲

    +
  • +
  • 蟆∝ュ

    +

    螯よ棡荳サ逶ョ蠖穂クュ逧辣ァ迚蜥瑚ァ鬚第弍蝨ィ謇ァ陦悟ュ俶。」蜑7螟ゥ謌30螟ゥ荵句燕諡肴槍逧シ悟吝ー蜈カ遘サ蜉ィ蛻ー逶ョ譬逶ョ蠖穂クュ縲 菴譏ッシ御ス荳崎ス菴ソ逕ィZIP譚・迸蜃縲

    +
  • + +
+

*1 蠖捺サ。雜ウ莉・荳倶ク我クェ譚。莉カ荳ュ逧莉サ菴穂ク荳ェ譌カシ瑚ッ・譁莉カ蟆陲ォ蛻、螳壻クコ蟾ョ蠑よ枚莉カシ悟ケカ蟆陲ォ螟榊宛謌也ァサ蜉ィ縲 菴譏ッシ梧枚莉カ螟ァ蟆丞柱譛蜷惹ソョ謾ケ譌カ髣エ蜿ッ莉・陲ォ蜷梧ュ・莉サ蜉。逧騾蛾。ケ蠢ス逡・縲

+
    +
  1. 隸・譁莉カ荳榊ュ伜惠縲
  2. +
  3. 荳榊酔逧譁莉カ螟ァ蟆上
  4. +
  5. 譛蜷惹ソョ謾ケ逧譌・譛溷柱譌カ髣エ逶ク蟾ョ3遘剃サ・荳奇シ育ァ呈焚蜿ッ莉・騾夊ソ蜷梧ュ・莉サ蜉。荳ュ逧騾蛾。ケ譖エ謾ケシ峨
  6. + +
+

2.蟶ク髣ョ髣ョ鬚

+

隸キ蜿り荳矩擇逧ПDF體セ謗・縲
https://drive.google.com/file/d/1bld5J43139dflVwgNBJLlL3BTLAu199N/view?usp=sharing

+

3.豁」蝨ィ菴ソ逕ィ逧蝗セ荵ヲ鬥

+ +

4.隸ヲ扈菫。諱ッ

+

隸キ蜿り荳矩擇逧ПDF體セ謗・縲
https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.htm b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.htm deleted file mode 100644 index 088403d3..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.htm +++ /dev/null @@ -1,604 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

         -Mount point

- -

Select mount point for internal storage.

- -

 

- -

*         -List Directories

- -

Show directories -list on the internal storage.

- -

When you press the list directory -button, the selectable directories are displayed. Tap on the directory you want -to choose and then on the “Select” button. To recurse through subdirectories, -tap the directory name.

- -

 

- -

*         -Directory

- -

Please enter the target or -master directory. If you specify a directory that does not exist in the target, -it will be created during synchronization.

- -

 

- -

*         -Add keywords

- -

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% -can be used as target directory names. The keywords are converted into the -year, month, and day on which the sync started.

- -

 

- -

These options are displayed only when the sync type is -Copy/Move.

- -

*         -Append the photo/video shooting time/date to the directory name

- -

If checked, the EXIF data of -the backed up media is used to get the shooting date and time. The shooting -timestamp is used and appended to the target folder. When the app is unable to -get the shooting time from the EXIF, it uses the last modified time of the -file.

- -

 

- -

The following options -are displayed only when the sync type is Archive.

- -

*         -If the date and time cannot be determined by EXIF data, display a -confirmation message.

- -

If checked, when the shooting -date and time cannot be acquired from EXIF , a confirmation message is -displayed as to whether or not use the last modified time of the file instead. -If you select Cancel in the confirmation dialog, the file will not be archived.

- -

 

- -

*         -Archive files if…

- -

Choose the time criteria to -determine which files to archive. Time selection is based on the photo/video -shooting date, or the last modified time if it is not possible to acquire the -timestamp from the EXIF header.

- -

*         -Any date (all)

- -

Archive all pictures/videos

- -

*         -Older than 7 days

- -

Archive only files with a shooting -date older than the current time by 7 days or more

- -

*         -Older than 30 days

- -

Archive only files with a shooting -date older than the current time by 30 days or more

- -

*         -Older than 60 days

- -

Archive only files with a shooting -date older than the current time by 60 days or more

- -

*         -Older than 90 days

- -

Archive only files with a shooting -date older than the current time by 90 days or more

- -

*         -Older than 180 days

- -

Archive only files with a shooting -date older than the current time by 180 days or more

- -

*         -Older than 1 year

- -

Archive only files with a shooting -date older than the current time by 1 year or more

- -

 

- -

*         -Increment file names by appending [sequence number]

- -

Append the incremental sequence -number to the file name when archiving.

- -

*         -Do not change

- -

Do not append a sequence number

- -

*         -3 digits sequence

- -

Append 001-999

- -

*         -4 digits sequence

- -

Append 0001-9999

- -

*         -5 digits sequence

- -

Append 00001-99999

- -

*         -6 digits sequence number

- -

Append 000001-999999

- -

 

- -

*         -Change the name of the file before archiving it in the target -folder.

- -

If checked, the file name of -the archived file will be changed based on your selected criteria. You can append -the date and time in the file name "File name template".

- -

 

- -

*         -File name template

- -

Enter -the patterns to use to rename the archived files. Default value is DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Will be replaced by original -file name during archive archiving (Ex. DSC_0001)

- -

*         -%Date%

- -

Will be replaced by the shooting -date.(Ex. 2018-01-01)

- -

*         -%Time%

- -

Will be replaced by the -shooting time.(Ex. 13:01:10)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

*         -Create a directory based on the shooting date to store the files.

- -

Creates a time stamped directory -where to store the archived files.

- -

When -checked, the "Directory name template" is displayed.

- -

 

- -

*         -Directory template

- -

Enter -the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% -MONTH% and so on). By pressing the patterns buttons, you can enter keywords -behind the cursor.

- -

*         -%Year%

- -

Will be -replaced by the shooting Year. (Ex. 2018)

- -

*         -%Month%

- -

Will be -replaced by the shooting Month (Ex. 01)

- -

*         -%Day%

- -

Will be -replaced by the shooting Day (Ex. 29)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

Detailed information

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.html b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.html new file mode 100644 index 00000000..51f17541 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_internal.html @@ -0,0 +1,104 @@ + + + + +SMBSync2_Help_EN_folder_internal +

Mount point

+

Select mount point for internal storage.

+

List Directories

+

Show directories list on the internal storage.
When you press the list directory button, the selectable directories are displayed. Tap on the directory you want to choose and then on the 窶彜elect窶 button. To recurse through subdirectories, tap the directory name.

+

Directory

+

Please enter the target or master directory. If you specify a directory that does not exist in the target, it will be created during synchronization.

+

Add keywords

+

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% can be used as target directory names. The keywords are converted into the year, month, and day on which the sync started.

+

Append the photo/video shooting time/date to the directory name

+

These options are displayed only when the sync type is Copy/Move.
If checked, the EXIF data of the backed up media is used to get the shooting date and time. The shooting timestamp is used and appended to the target folder. When the app is unable to get the shooting time from the EXIF, it uses the last modified time of the file.

+

The following options are displayed only when the sync type is Archive.

+

If the date and time cannot be determined by EXIF data, display a confirmation message.

+

If checked, when the shooting date and time cannot be acquired from EXIF , a confirmation message is displayed as to whether or not use the last modified time of the file instead. If you select Cancel in the confirmation dialog, the file will not be archived.

+

Archive files if窶ヲ

+

Choose the time criteria to determine which files to archive. Time selection is based on the photo/video shooting date, or the last modified time if it is not possible to acquire the timestamp from the EXIF header.

+
    +
  • Any date (all)

    +

    Archive all pictures/videos

    +
  • +
  • Older than 7 days

    +

    Archive only files with a shooting date older than the current time by 7 days or more

    +
  • +
  • Older than 30 days

    +

    Archive only files with a shooting date older than the current time by 30 days or more

    +
  • +
  • Older than 60 days

    +

    Archive only files with a shooting date older than the current time by 60 days or more

    +
  • +
  • Older than 90 days

    +

    Archive only files with a shooting date older than the current time by 90 days or more

    +
  • +
  • Older than 180 days

    +

    Archive only files with a shooting date older than the current time by 180 days or more

    +
  • +
  • Older than 1 year

    +

    Archive only files with a shooting date older than the current time by 1 year or more

    +
  • + +
+

Increment file names by appending [sequence number]

+

Append the incremental sequence number to the file name when archiving.

+
    +
  • Do not change

    +

    Do not append a sequence number

    +
  • +
  • 3 digits sequence

    +

    Append 001-999

    +
  • +
  • 4 digits sequence

    +

    Append 0001-9999

    +
  • +
  • digits sequence

    +

    Append 00001-99999

    +
  • +
  • 6 digits sequence number

    +

    Append 000001-999999

    +
  • + +
+

Change the name of the file before archiving it in the target folder.

+

If checked, the file name of the archived file will be changed based on your selected criteria. You can append the date and time in the file name "File name template".

+

File name template

+

Enter the patterns to use to rename the archived files. Default value is DSC_%DATE%

+
    +
  1. %ORIGINAL-NAME%

    +

    Will be replaced by original file name during archive archiving (Ex. DSC_0001)

    +
  2. +
  3. %DATE%

    +

    Will be replaced by the shooting date.(Ex. 2018-01-01)

    +
  4. +
  5. %TIME%

    +

    Will be replaced by the shooting time.(Ex. 13:01:10)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Create a directory based on the shooting date to store the files.

+

Creates a time stamped directory where to store the archived files.

+

When checked, the "Directory name template" is displayed.

+

Directory template

+

Enter the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% MONTH% and so on). By pressing the patterns buttons, you can enter keywords behind the cursor.

+
    +
  • %YEAR%

    +

    Will be replaced by the shooting Year. (Ex. 2018)

    +
  • +
  • %MONTH%

    +

    Will be replaced by the shooting Month (Ex. 01)

    +
  • +
  • %DAY%

    +

    Will be replaced by the shooting Day (Ex. 29)

    +
  • + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Detailed information

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.htm b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.htm deleted file mode 100644 index b1473c6a..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.htm +++ /dev/null @@ -1,598 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -List Directories

- -

Show directories list on the sdcard. -

- -

When you press the list directory -button, the selectable directories are displayed. Tap on the directory you want -to choose and then on the “Select” button. To recurse through subdirectories, -tap the directory name.

- -

 

- -

*         -Add keywords

- -

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% -can be used as target directory names. The keywords are converted into the -year, month, and day on which the sync started.

- -

 

- -

These options are displayed only when the sync type is Copy/Move.

- -

*         -Append the photo/video shooting time/date to the directory name

- -

If checked, the EXIF data of -the backed up media is used to get the shooting date and time. The shooting -timestamp is used and appended to the target folder. When the app is unable to -get the shooting time from the EXIF, it uses the last modified time of the -file.

- -

 

- -

*         -Directory

- -

Please enter the target or -master directory. If you specify a directory that does not exist in the target, -it will be created during synchronization.

- -

 

- -

*         -Select SDCARD

- -

Select -the SDCARD root directory to get access to SDCARD. If you cannot select it, please -send the system information to the developer with "Menu -> System -Info".

- -

 

- -

The following options are displayed only when the sync type is Archive.

- -

*         -If the date and time cannot be determined by EXIF data, display a -confirmation message.

- -

If checked, when the shooting -date and time cannot be acquired from EXIF , a confirmation message is -displayed as to whether or not use the last modified time of the file instead. -If you select Cancel in the confirmation dialog, the file will not be archived.

- -

 

- -

*         -Archive files if…

- -

Choose the time criteria to -determine which files to archive. Time selection is based on the photo/video -shooting date, or the last modified time if it is not possible to acquire the -timestamp from the EXIF header.

- -

*         -Any date (all)

- -

Archive all pictures/videos

- -

*         -Older than 7 days

- -

Archive only files with a shooting -date older than the current time by 7 days or more

- -

*         -Older than 30 days

- -

Archive only files with a shooting -date older than the current time by 30 days or more

- -

*         -Older than 60 days

- -

Archive only files with a shooting -date older than the current time by 60 days or more

- -

*         -Older than 90 days

- -

Archive only files with a shooting -date older than the current time by 90 days or more

- -

*         -Older than 180 days

- -

Archive only files with a shooting -date older than the current time by 180 days or more

- -

*         -Older than 1 year

- -

Archive only files with a shooting -date older than the current time by 1 year or more

- -

 

- -

*         -Increment file names by appending [sequence number]

- -

Append the incremental sequence -number to the file name when archiving.

- -

*         -Do not change

- -

Do not append a sequence number

- -

*         -3 digits sequence

- -

Append 001-999

- -

*         -4 digits sequence

- -

Append 0001-9999

- -

*         -5 digits sequence

- -

Append 00001-99999

- -

*         -6 digits sequence number

- -

Append 000001-999999

- -

 

- -

*         -Change the name of the file before archiving it in the target -folder.

- -

If checked, the file name of -the archived file will be changed based on your selected criteria. You can append -the date and time in the file name "File name template".

- -

 

- -

*         -File name template

- -

Enter -the patterns to use to rename the archived files. Default value is DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Will be replaced by original -file name during archive archiving (Ex. DSC_0001)

- -

*         -%Date%

- -

Will be replaced by the shooting -date.(Ex. 2018-01-01)

- -

*         -%Time%

- -

Will be replaced by the -shooting time.(Ex. 13:01:10)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

*         -Create a directory based on the shooting date to store the files.

- -

Creates a time stamped directory -where to store the archived files.

- -

When -checked, the "Directory name template" is displayed.

- -

 

- -

*         -Directory template

- -

Enter -the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% -MONTH% and so on). By pressing the patterns buttons, you can enter keywords -behind the cursor.

- -

*         -%Year%

- -

Will be -replaced by the shooting Year. (Ex. 2018)

- -

*         -%Month%

- -

Will be -replaced by the shooting Month (Ex. 01)

- -

*         -%Day%

- -

Will be -replaced by the shooting Day (Ex. 29)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

Detailed -information

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.html b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.html new file mode 100644 index 00000000..731eb86f --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_sdcard.html @@ -0,0 +1,106 @@ + + + + +SMBSync2_Help_EN_folder_sdcard +

List Directories

+

Show directories list on the sdcard.

+

When you press the list directory button, the selectable directories are displayed. Tap on the directory you want to choose and then on the 窶彜elect窶 button. To recurse through subdirectories, tap the directory name.

+

Add keywords

+

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% can be used as target directory names. The keywords are converted into the year, month, and day on which the sync started.

+

+

These options are displayed only when the sync type is Copy/Move.

+

Append the photo/video shooting time/date to the directory name

+

If checked, the EXIF data of the backed up media is used to get the shooting date and time. The shooting timestamp is used and appended to the target folder. When the app is unable to get the shooting time from the EXIF, it uses the last modified time of the file.

+

Directory

+

Please enter the target or master directory. If you specify a directory that does not exist in the target, it will be created during synchronization.

+

Select SDCARD

+

Select the SDCARD root directory to get access to SDCARD. If you cannot select it, please send the system information to the developer with "Menu -> System Info".

+

+

The following options are displayed only when the sync type is Archive.

+

If the date and time cannot be determined by EXIF data, display a confirmation message.

+

If checked, when the shooting date and time cannot be acquired from EXIF , a confirmation message is displayed as to whether or not use the last modified time of the file instead. If you select Cancel in the confirmation dialog, the file will not be archived.

+

+

Archive files if窶ヲ

+

Choose the time criteria to determine which files to archive. Time selection is based on the photo/video shooting date, or the last modified time if it is not possible to acquire the timestamp from the EXIF header.

+
    +
  1. Any date (all)

    +

    Archive all pictures/videos

    +
  2. +
  3. Older than 7 days

    +

    Archive only files with a shooting date older than the current time by 7 days or more

    +
  4. +
  5. Older than 30 days

    +

    Archive only files with a shooting date older than the current time by 30 days or more

    +
  6. +
  7. Older than 60 days

    +

    Archive only files with a shooting date older than the current time by 60 days or more

    +
  8. +
  9. Older than 90 days

    +

    Archive only files with a shooting date older than the current time by 90 days or more

    +
  10. +
  11. Older than 180 days

    +

    Archive only files with a shooting date older than the current time by 180 days or more

    +
  12. +
  13. Older than 1 year

    +

    Archive only files with a shooting date older than the current time by 1 year or more

    +
  14. + +
+

Increment file names by appending [sequence number]

+

Append the incremental sequence number to the file name when archiving.

+
    +
  1. Do not change

    +

    Do not append a sequence number

    +
  2. +
  3. 3 digits sequence

    +

    Append 001-999

    +
  4. +
  5. 4 digits sequence

    +

    Append 0001-9999

    +
  6. +
  7. 5 digits sequence

    +

    Append 00001-99999

    +
  8. +
  9. 6 digits sequence number

    +

    Append 000001-999999

    +
  10. + +
+

Change the name of the file before archiving it in the target folder.

+

If checked, the file name of the archived file will be changed based on your selected criteria. You can append the date and time in the file name "File name template".

+

File name template

+

Enter the patterns to use to rename the archived files. Default value is DSC_%DATE%

+
    +
  1. %ORIGINAL-NAME%

    +

    Will be replaced by original file name during archive archiving (Ex. DSC_0001)

    +
  2. +
  3. %DATE%

    +

    Will be replaced by the shooting date.(Ex. 2018-01-01)

    +
  4. +
  5. %TIME%

    +

    Will be replaced by the shooting time.(Ex. 13:01:10)
    The last line in the screen displays how your target folder and file name will look like once archived.

    +
  6. + +
+

Create a directory based on the shooting date to store the files.

+

Creates a time stamped directory where to store the archived files.
When checked, the "Directory name template" is displayed.

+

Directory template

+

Enter the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% MONTH% and so on). By pressing the patterns buttons, you can enter keywords behind the cursor.

+
    +
  1. %YEAR%

    +

    Will be replaced by the shooting Year. (Ex. 2018)

    +
  2. +
  3. %MONTH%

    +

    Will be replaced by the shooting Month (Ex. 01)

    +
  4. +
  5. %DAY%

    +

    Will be replaced by the shooting Day (Ex. 29)
    The last line in the screen displays how your target folder and file name will look like once archived.

    +
  6. + +
+

Detailed information

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.htm deleted file mode 100644 index 68dabe25..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.htm +++ /dev/null @@ -1,749 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Search SMB server

- -

Scans the network to find available -SMB server

- -

 

- -

*         -Server host name/IP address

- -

Specify the SMB server name or the -IP address

- -

 

- -

*         -SMB Protocol

- -

You -can specify the SMB protocol.

- -

Ø  -Use SMB V1

- -

Ø  -Use SMB V2 (2.01)

- -

SMB min v2.1, max v2.1

- -

Ø  -Use SMB V2 (2.11)

- -

SMB min v2.1, max v2.1

- -

Ø  -Use SMB V2/3 (2.12)

- -

Support SMB V2 or V3 -protocol

- -

SMB min v2.0.2, max v3.0

- -

Ø  -Use SMB V2/3 (2.14)

- -

SMB min v2.0.2, max v3.0

- -

 

- -

*         -Use SMB2 negotiation

- -

When -checked, it will force setProperty("jcifs.smb.client.useSMB2Negotiation", -"true") in the JcifsAuth() function. This ensures the use of SMB2 non-backward -compatible negotiation style, incompatible with versions prior to SMB 2.0.2

- -

 

- -

*         -SMB IPC Signing Enforced

- -

When checked, the client is required -to use SMB signing for IPC$ connections as DCERPC transport. Else it is -allowed, but not required.

- -

 

- -

*         -Specify port number

- -

Specify the port number if -different from default. If left empty, SMBSync2 will try to connect to the -default standard port numbers 139 and 445.

- -

 

- -

*         -Use Account name and password

- -

Must be completed if required -by the server.

- -

 

- -

*         -User name

- -

User account name to connect to -the host. A Microsoft account cannot be used with SMBSync2. Please create a -local account and use it.

- -

 

- -

*         -Password

- -

Account password to connect to -the host.

- -

 

- -

*         -List Shares

- -

Connects to the specified host -and list all available shares for the account.

- -

(Shares names will be displayed -when you press the “List Shares “ button. Click the desired share name, and -then press OK to validate)

- -

 

- -

*         -List Directories

- -

Show directories list on the selected -Share.

- -

When you press the list directory -button, the selectable directories are displayed.

- -

Tap on the directory you want -to choose and then on the “Select” button. To recurse

- -

through subdirectories, tap the -directory name.

- -

 

- -

 

- -

*         -Directory

- -

Please enter the target or -master directory. If you specify a directory that does not exist in the target, -it will be created during synchronization.

- -

 

- -

*         -Add keywords

- -

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% -can be used as target directory names. The keywords are converted into the -year, month, and day on which the sync started.

- -

 

- -

These options are displayed only when the sync type is Copy/Move.

- -

*         -Append the photo/video shooting time/date to the directory name

- -

If checked, the EXIF data of -the backed up media is used to get the shooting date and time. The shooting -timestamp is used and appended to the target folder. When the app is unable to -get the shooting time from the EXIF, it uses the last modified time of the -file.

- -

 

- -

The following options are displayed only when the sync type is Archive.

- -

*         -If the date and time cannot be determined by EXIF data, display a -confirmation message.

- -

If checked, when the shooting date -and time cannot be acquired from EXIF , a confirmation message is displayed as -to whether or not use the last modified time of the file instead. If you select -Cancel in the confirmation dialog, the file will not be archived.

- -

 

- -

*         -Archive files if…

- -

Choose the time criteria to -determine which files to archive. Time selection is based on the photo/video -shooting date, or the last modified time if it is not possible to acquire the -timestamp from the EXIF header.

- -

*         -Any date (all)

- -

Archive all pictures/videos

- -

*         -Older than 7 days

- -

Archive only files with a shooting -date older than the current time by 7 days or more

- -

*         -Older than 30 days

- -

Archive only files with a shooting -date older than the current time by 30 days or more

- -

*         -Older than 60 days

- -

Archive only files with a shooting -date older than the current time by 60 days or more

- -

*         -Older than 90 days

- -

Archive only files with a shooting -date older than the current time by 90 days or more

- -

*         -Older than 180 days

- -

Archive only files with a shooting -date older than the current time by 180 days or more

- -

*         -Older than 1 year

- -

Archive only files with a shooting -date older than the current time by 1 year or more

- -

 

- -

*         -Increment file names by appending [sequence number]

- -

Append the incremental sequence -number to the file name when archiving.

- -

*         -Do not change

- -

Do not append a sequence number

- -

*         -3 digits sequence

- -

Append 001-999

- -

*         -4 digits sequence

- -

Append 0001-9999

- -

*         -5 digits sequence

- -

Append 00001-99999

- -

*         -6 digits sequence number

- -

Append 000001-999999

- -

 

- -

*         -Change the name of the file before archiving it in the target -folder.

- -

If checked, the file name of -the archived file will be changed based on your selected criteria. You can append -the date and time in the file name "File name template".

- -

 

- -

*         -File name template

- -

Enter -the patterns to use to rename the archived files. Default value is DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Will be replaced by original -file name during archive archiving (Ex. DSC_0001)

- -

*         -%Date%

- -

Will be replaced by the shooting -date.(Ex. 2018-01-01)

- -

*         -%Time%

- -

Will be replaced by the -shooting time.(Ex. 13:01:10)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

*         -Create a directory based on the shooting date to store the files.

- -

Creates a time stamped directory -where to store the archived files.

- -

When -checked, the "Directory name template" is displayed.

- -

 

- -

*         -Directory template

- -

Enter -the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% -MONTH% and so on). By pressing the patterns buttons, you can enter keywords -behind the cursor.

- -

*         -%Year%

- -

Will be -replaced by the shooting Year. (Ex. 2018)

- -

*         -%Month%

- -

Will be -replaced by the shooting Month (Ex. 01)

- -

*         -%Day%

- -

Will be -replaced by the shooting Day (Ex. 29)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

 

- -

Detail information

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.html b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.html new file mode 100644 index 00000000..14bf970c --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_smb.html @@ -0,0 +1,143 @@ + + + + +SMBSync2_Help_EN_folder_smb +

Search SMB server

+

Scans the network to find available SMB server

+

Server host name/IP address

+

Specify the SMB server name or the IP address

+

SMB Protocol

+

You can specify the SMB protocol.

+
    +
  1. Use SMB V1

    +
  2. +
  3. Use SMB V2 (2.01)

    +

    SMB min v2.1, max v2.1

    +
  4. +
  5. Use SMB V2 (2.11)

    +

    SMB min v2.1, max v2.1

    +
  6. +
  7. Use SMB V2/3 (2.12)

    +

    Support SMB V2 or V3 protocol

    +

    SMB min v2.0.2, max v3.0

    +
  8. +
  9. Use SMB V2/3 (2.14)

    +

    SMB min v2.0.2, max v3.0

    +
  10. + +
+

Use SMB2 negotiation

+

When checked, it will force setProperty("jcifs.smb.client.useSMB2Negotiation", "true") in the JcifsAuth() function. This ensures the use of SMB2 non-backward compatible negotiation style, incompatible with versions prior to SMB 2.0.2

+

SMB IPC Signing Enforced

+

When checked, the client is required to use SMB signing for IPC$ connections as DCERPC transport. Else it is allowed, but not required.

+

Specify port number

+

Specify the port number if different from default. If left empty, SMBSync2 will try to connect to the default standard port numbers 139 and 445.

+

Use Account name and password

+

Must be completed if required by the server.

+

User name

+

User account name to connect to the host. A Microsoft account cannot be used with SMBSync2. Please create a local account and use it.

+

Password

+

Account password to connect to the host.

+

List Shares

+

Connects to the specified host and list all available shares for the account.
(Shares names will be displayed when you press the 窶廰ist Shares 窶 button. Click the desired share name, and then press OK to validate)

+

List Directories

+

Show directories list on the selected Share.
When you press the list directory button, the selectable directories are displayed.

+

Tap on the directory you want to choose and then on the 窶彜elect窶 button. To recurse through subdirectories, tap the directory name.

+

Directory

+

Please enter the target or master directory. If you specify a directory that does not exist in the target, it will be created during synchronization.

+

Add keywords

+

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% can be used as target directory names. The keywords are converted into the year, month, and day on which the sync started.

+

These options are displayed only when the sync type is Copy/Move.

+

Append the photo/video shooting time/date to the directory name

+

If checked, the EXIF data of the backed up media is used to get the shooting date and time. The shooting timestamp is used and appended to the target folder. When the app is unable to get the shooting time from the EXIF, it uses the last modified time of the file.

+

The following options are displayed only when the sync type is Archive.

+

If the date and time cannot be determined by EXIF data, display a confirmation message.

+

If checked, when the shooting date and time cannot be acquired from EXIF , a confirmation message is displayed as to whether or not use the last modified time of the file instead. If you select Cancel in the confirmation dialog, the file will not be archived.

+

Archive files if窶ヲ

+

Choose the time criteria to determine which files to archive. Time selection is based on the photo/video shooting date, or the last modified time if it is not possible to acquire the timestamp from the EXIF header.

+
    +
  1. Any date (all)

    +

    Archive all pictures/videos

    +
  2. +
  3. Older than 7 days

    +

    Archive only files with a shooting date older than the current time by 7 days or more

    +
  4. +
  5. Older than 30 days

    +

    Archive only files with a shooting date older than the current time by 30 days or more

    +
  6. +
  7. Older than 60 days

    +

    Archive only files with a shooting date older than the current time by 60 days or more

    +
  8. +
  9. Older than 90 days

    +

    Archive only files with a shooting date older than the current time by 90 days or more

    +
  10. +
  11. Older than 180 days

    +

    Archive only files with a shooting date older than the current time by 180 days or more

    +
  12. +
  13. Older than 1 year

    +

    Archive only files with a shooting date older than the current time by 1 year or more

    +
  14. + +
+

+

Increment file names by appending [sequence number]

+

Append the incremental sequence number to the file name when archiving.

+
    +
  1. Do not change

    +

    Do not append a sequence number

    +
  2. +
  3. 3 digits sequence

    +

    Append 001-999

    +
  4. +
  5. 4 digits sequence

    +

    Append 0001-9999

    +
  6. +
  7. 5 digits sequence

    +

    Append 00001-99999

    +
  8. +
  9. 6 digits sequence number

    +

    Append 000001-999999

    +
  10. + +
+

+

Change the name of the file before archiving it in the target folder.

+

If checked, the file name of the archived file will be changed based on your selected criteria. You can append the date and time in the file name "File name template".

+

File name template

+

Enter the patterns to use to rename the archived files. Default value is DSC_%DATE%

+
    +
  1. %ORIGINAL-NAME%

    +

    Will be replaced by original file name during archive archiving (Ex. DSC_0001)

    +
  2. +
  3. %DATE%

    +

    Will be replaced by the shooting date.(Ex. 2018-01-01)

    +
  4. +
  5. %TIME%

    +

    Will be replaced by the shooting time.(Ex. 13:01:10)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Create a directory based on the shooting date to store the files.

+

Creates a time stamped directory where to store the archived files.
When checked, the "Directory name template" is displayed.

+

Directory template

+

Enter the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% MONTH% and so on). By pressing the patterns buttons, you can enter keywords behind the cursor.

+
    +
  1. %YEAR%

    +

    Will be replaced by the shooting Year. (Ex. 2018)

    +
  2. +
  3. %MONTH%

    +

    Will be replaced by the shooting Month (Ex. 01)

    +
  4. +
  5. %DAY%

    +

    Will be replaced by the shooting Day (Ex. 29)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Detail information

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.htm deleted file mode 100644 index 45f53f9b..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.htm +++ /dev/null @@ -1,604 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -List Directories

- -

Show directories list on the USB -media.

- -

When you press the list directory -button, the selectable directories are displayed. Tap on the directory you want -to choose and then on the “Select” button. To recurse through subdirectories, -tap the directory name.

- -

 

- -

*         -Add keywords

- -

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% -can be used as target directory names. The keywords are converted into the -year, month, and day on which the sync started.

- -

 

- -

These options are displayed only when the sync type is Copy/Move.

- -

*         -Append the photo/video shooting -time/date to the directory name

- -

If -checked, the EXIF data of the backed up media is used to get the shooting date -and time. The shooting timestamp is used and appended to the target folder. -When the app is unable to get the shooting time from the EXIF, it uses the last -modified time of the file.

- -

 

- -

*         -Directory

- -

Please -enter the target or master directory. If you specify a directory that does not -exist in the target, it will be created during synchronization.

- -

 

- -

*         -Select USB media

- -

Select -the USB media root directory to get access to the USB storage. If you cannot -select it, please send the system information to the developer with "Menu --> System Info".

- -

USB -media cannot be used unless there is a mount point (exp. /storage/0123-0123, -etc.) corresponding to the USB media UUID.

- -

 

- -

The following options are displayed only when the sync type is Archive.

- -

*         -If the date and time cannot be determined by EXIF data, display a -confirmation message.

- -

If checked, when the shooting -date and time cannot be acquired from EXIF , a confirmation message is -displayed as to whether or not use the last modified time of the file instead. -If you select Cancel in the confirmation dialog, the file will not be archived.

- -

 

- -

*         -Archive files if…

- -

Choose the time criteria to -determine which files to archive. Time selection is based on the photo/video -shooting date, or the last modified time if it is not possible to acquire the -timestamp from the EXIF header.

- -

*         -Any date (all)

- -

Archive all pictures/videos

- -

*         -Older than 7 days

- -

Archive only files with a shooting -date older than the current time by 7 days or more

- -

*         -Older than 30 days

- -

Archive only files with a shooting -date older than the current time by 30 days or more

- -

*         -Older than 60 days

- -

Archive only files with a shooting -date older than the current time by 60 days or more

- -

*         -Older than 90 days

- -

Archive only files with a shooting -date older than the current time by 90 days or more

- -

*         -Older than 180 days

- -

Archive only files with a shooting -date older than the current time by 180 days or more

- -

*         -Older than 1 year

- -

Archive only files with a shooting -date older than the current time by 1 year or more

- -

 

- -

*         -Increment file names by appending [sequence number]

- -

Append the incremental sequence -number to the file name when archiving.

- -

*         -Do not change

- -

Do not append a sequence number

- -

*         -3 digits sequence

- -

Append 001-999

- -

*         -4 digits sequence

- -

Append 0001-9999

- -

*         -5 digits sequence

- -

Append 00001-99999

- -

*         -6 digits sequence number

- -

Append 000001-999999

- -

 

- -

*         -Change the name of the file before archiving it in the target -folder.

- -

If checked, the file name of -the archived file will be changed based on your selected criteria. You can append -the date and time in the file name "File name template".

- -

 

- -

*         -File name template

- -

Enter -the patterns to use to rename the archived files. Default value is DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Will be replaced by original -file name during archive archiving (Ex. DSC_0001)

- -

*         -%Date%

- -

Will be replaced by the shooting -date.(Ex. 2018-01-01)

- -

*         -%Time%

- -

Will be replaced by the -shooting time.(Ex. 13:01:10)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

*         -Create a directory based on the shooting date to store the files.

- -

Creates a time stamped directory -where to store the archived files.

- -

When -checked, the "Directory name template" is displayed.

- -

 

- -

*         -Directory template

- -

Enter -the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% -MONTH% and so on). By pressing the patterns buttons, you can enter keywords -behind the cursor.

- -

*         -%Year%

- -

Will be -replaced by the shooting Year. (Ex. 2018)

- -

*         -%Month%

- -

Will be -replaced by the shooting Month (Ex. 01)

- -

*         -%Day%

- -

Will be -replaced by the shooting Day (Ex. 29)

- -

 

- -

The last -line in the screen displays how your target folder and file name will look like -once archived.

- -

 

- -

 

- -

Detail information

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.html b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.html new file mode 100644 index 00000000..67981477 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_usb.html @@ -0,0 +1,105 @@ + + + + +SMBSync2_Help_EN_folder_usb +

List Directories

+

Show directories list on the USB media.
When you press the list directory button, the selectable directories are displayed. Tap on the directory you want to choose and then on the 窶彜elect窶 button. To recurse through subdirectories, tap the directory name.

+

Add keywords

+

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% can be used as target directory names. The keywords are converted into the year, month, and day on which the sync started.

+

These options are displayed only when the sync type is Copy/Move.

+

Append the photo/video shooting time/date to the directory name

+

If checked, the EXIF data of the backed up media is used to get the shooting date and time. The shooting timestamp is used and appended to the target folder. When the app is unable to get the shooting time from the EXIF, it uses the last modified time of the file.

+

Directory

+

Please enter the target or master directory. If you specify a directory that does not exist in the target, it will be created during synchronization.

+

Select USB media

+

Select the USB media root directory to get access to the USB storage. If you cannot select it, please send the system information to the developer with "Menu -> System Info".

+

USB media cannot be used unless there is a mount point (exp. /storage/0123-0123, etc.) corresponding to the USB media UUID.

+

The following options are displayed only when the sync type is Archive.

+

If the date and time cannot be determined by EXIF data, display a confirmation message.

+

If checked, when the shooting date and time cannot be acquired from EXIF , a confirmation message is displayed as to whether or not use the last modified time of the file instead. If you select Cancel in the confirmation dialog, the file will not be archived.

+

Archive files if窶ヲ

+

Choose the time criteria to determine which files to archive. Time selection is based on the photo/video shooting date, or the last modified time if it is not possible to acquire the timestamp from the EXIF header.

+
    +
  1. Any date (all)

    +

    Archive all pictures/videos

    +
  2. +
  3. Older than 7 days

    +

    Archive only files with a shooting date older than the current time by 7 days or more

    +
  4. +
  5. Older than 30 days

    +

    Archive only files with a shooting date older than the current time by 30 days or more

    +
  6. +
  7. Older than 60 days

    +

    Archive only files with a shooting date older than the current time by 60 days or more

    +
  8. +
  9. Older than 90 days

    +

    Archive only files with a shooting date older than the current time by 90 days or more

    +
  10. +
  11. Older than 180 days

    +

    Archive only files with a shooting date older than the current time by 180 days or more

    +
  12. +
  13. Older than 1 year

    +

    Archive only files with a shooting date older than the current time by 1 year or more

    +
  14. + +
+

Increment file names by appending [sequence number]

+

Append the incremental sequence number to the file name when archiving.

+
    +
  1. Do not change

    +

    Do not append a sequence number

    +
  2. +
  3. 3 digits sequence

    +

    Append 001-999

    +
  4. +
  5. 4 digits sequence

    +

    Append 0001-9999

    +
  6. +
  7. 5 digits sequence

    +

    Append 00001-99999

    +
  8. +
  9. 6 digits sequence number

    +

    Append 000001-999999

    +
  10. + +
+

Change the name of the file before archiving it in the target folder.

+

If checked, the file name of the archived file will be changed based on your selected criteria. You can append the date and time in the file name "File name template".

+

File name template

+

Enter the patterns to use to rename the archived files. Default value is DSC_%DATE%

+
    +
  1. %ORIGINAL-NAME%

    +

    Will be replaced by original file name during archive archiving (Ex. DSC_0001)

    +
  2. +
  3. %DATE%

    +

    Will be replaced by the shooting date.(Ex. 2018-01-01)

    +
  4. +
  5. %TIME%

    +

    Will be replaced by the shooting time.(Ex. 13:01:10)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Create a directory based on the shooting date to store the files.

+

Creates a time stamped directory where to store the archived files.
When checked, the "Directory name template" is displayed.

+

Directory template

+

Enter the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% MONTH% and so on). By pressing the patterns buttons, you can enter keywords behind the cursor.

+
    +
  1. %YEAR%

    +

    Will be replaced by the shooting Year. (Ex. 2018)

    +
  2. +
  3. %MONTH%

    +

    Will be replaced by the shooting Month (Ex. 01)

    +
  4. +
  5. %DAY%

    +

    Will be replaced by the shooting Day (Ex. 29)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Detail information

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.htm b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.htm deleted file mode 100644 index e0e88584..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.htm +++ /dev/null @@ -1,375 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Mount point

- -

Select mount point where to store the ZIP file.

- -

 

- -

*         -Save ZIP file to SDCARD.

- -

Check to save the ZIP file to -the SDCARD. Else it will be saved to Internal Storage

- -

 

- -

*         -Allow Write to SDCARD

- -

Tap to display the selection -screen to give access and write permission to the SDCARD.

- -

 

- -

*         -List Files

- -

Show directories and files list -in the selected folder.

- -

 

- -

*         -File name

- -

Specify the name for the target -ZIP file.

- -

 

- -

*         -Add keywords

- -

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% -can be used as target directory names. The keywords are converted into the -year, month, and day on which the sync started.

- -

 

- -

*         -Compression level

- -

Select the ZIP compression -level. The stronger compression levels are the slower.

- -

 

- -

*         -Encryption method

- -

Select encryption method for -the ZIP file.

- -

 

- -

*         -Password and confirm password

- -

Specify the encryption -password.

- -

 

- -

Note: currently, when ZIP is selected as a target, SMBSync2 -supports only Internal Storage as the master. USB media, SMB and External SD -cannot be used as master storage when ZIP target is selected.

- -

 

- -

Detail information

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.html b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.html new file mode 100644 index 00000000..76334a06 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_EN_folder_zip.html @@ -0,0 +1,102 @@ + + + + +SMBSync2_Help_EN_folder_zip +

Mount point

+

Select mount point for internal storage.

+

List Directories

+

Show directories list on the internal storage.
When you press the list directory button, the selectable directories are displayed. Tap on the directory you want to choose and then on the 窶彜elect窶 button. To recurse through subdirectories, tap the directory name.

+

Directory

+

Please enter the target or master directory. If you specify a directory that does not exist in the target, it will be created during synchronization.

+

Add keywords

+

%YEAR%, %MONTH%, %DAY% and %DAY-OF-YEAR% can be used as target directory names. The keywords are converted into the year, month, and day on which the sync started.

+

These options are displayed only when the sync type is Copy/Move.

+

Append the photo/video shooting time/date to the directory name

+

If checked, the EXIF data of the backed up media is used to get the shooting date and time. The shooting timestamp is used and appended to the target folder. When the app is unable to get the shooting time from the EXIF, it uses the last modified time of the file.

+

The following options are displayed only when the sync type is Archive.

+

If the date and time cannot be determined by EXIF data, display a confirmation message.

+

If checked, when the shooting date and time cannot be acquired from EXIF , a confirmation message is displayed as to whether or not use the last modified time of the file instead. If you select Cancel in the confirmation dialog, the file will not be archived.

+

Archive files if窶ヲ

+

Choose the time criteria to determine which files to archive. Time selection is based on the photo/video shooting date, or the last modified time if it is not possible to acquire the timestamp from the EXIF header.

+

Any date (all)

+

Archive all pictures/videos

+

Older than 7 days

+

Archive only files with a shooting date older than the current time by 7 days or more

+

Older than 30 days

+

Archive only files with a shooting date older than the current time by 30 days or more

+

Older than 60 days

+

Archive only files with a shooting date older than the current time by 60 days or more

+

Older than 90 days

+

Archive only files with a shooting date older than the current time by 90 days or more

+

Older than 180 days

+

Archive only files with a shooting date older than the current time by 180 days or more

+

Older than 1 year

+

Archive only files with a shooting date older than the current time by 1 year or more

+

+

Increment file names by appending [sequence number]

+

Append the incremental sequence number to the file name when archiving.

+
    +
  1. Do not change
  2. + +
+

Do not append a sequence number

+
    +
  1. 3 digits sequence
  2. + +
+

Append 001-999

+
    +
  1. 4 digits sequence

    +

    Append 0001-9999

    +
  2. +
  3. digits sequence

    +

    Append 00001-99999

    +
  4. +
  5. 6 digits sequence number

    +

    Append 000001-999999

    +
  6. + +
+

+

Change the name of the file before archiving it in the target folder.

+

If checked, the file name of the archived file will be changed based on your selected criteria. You can append the date and time in the file name "File name template".

+

+

File name template

+

Enter the patterns to use to rename the archived files. Default value is DSC_%DATE%

+
    +
  1. %ORIGINAL-NAME%

    +

    Will be replaced by original file name during archive archiving (Ex. DSC_0001)

    +
  2. +
  3. %DATE%

    +

    Will be replaced by the shooting date.(Ex. 2018-01-01)

    +
  4. +
  5. %TIME%

    +

    Will be replaced by the shooting time.(Ex. 13:01:10)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Create a directory based on the shooting date to store the files.

+

Creates a time stamped directory where to store the archived files.

+

When checked, the "Directory name template" is displayed.

+

Directory template

+

Enter the patterns to use to rename the directory to be created (exp. DIR-% YEAR% -% MONTH% and so on). By pressing the patterns buttons, you can enter keywords behind the cursor.

+
    +
  1. %YEAR%

    +

    Will be replaced by the shooting Year. (Ex. 2018)

    +
  2. +
  3. %MONTH%

    +

    Will be replaced by the shooting Month (Ex. 01)

    +
  4. +
  5. %DAY%

    +

    Will be replaced by the shooting Day (Ex. 29)

    +
  6. + +
+

The last line in the screen displays how your target folder and file name will look like once archived.

+

Detailed information

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.htm b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.htm deleted file mode 100644 index bb306c86..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.htm +++ /dev/null @@ -1,1023 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Test mode

- -

When checked, no file is -deleted, copied or overwritten. No changes are done to your files on both -target and master. Please use the Test mode to check the files that will be -deleted/copied/replaced during the real synchronization task. Performed file -operations will appear in the Messages tab.

- -

 

- -

*         -Auto sync

- -

If checked, the task can be -started automatically on planned intervals in the scheduler. Tasks that are set -to automatic synchronization will start when you press the sync button on the -top right corner of the main app screen.

- -

 

- -

*         -Sync task name

- -

Specify a name for the task. -Sync task name is not case-sensitive.

- -

 

- -

*         -Sync type

- -

Currently supported sync modes -are Mirror, Copy, Move or Archive

- -

 

- -

*        -Mirror

- -

The target folder is kept as an exact copy of -the master. If a file is different between the master and the target, the file -on the master overwrites the file on the target. Folder and files not present -on the target are copied from the master. Files and folders that do not exist -on the master are also deleted from the target. Only -modified files (by size and/or date/time) are updated on the target.

- -

*        -Move

- -

If a file is different between the master and -the target, the file on the master overwrites the file on the target. Once -copied to the target, files and folders are deleted from the master (like move -command).

- -

Only modified files (by size and/or date/time) -are copied to the target. Identical files, based on the selected compare -criteria, are deleted from the master without being copied. Files and folders -on the target, not present on the master, are obviously preserved.

- -

*        -Copy

- -

Same as Move, but files are not deleted from -the master after being copied.

- -

If a file is different between the master and -the target, the file on the master overwrites the file on the target. Once copied -to the target, files and folders are kept on the master (like a copy command).

- -

Only modified files (by size and/or date/time) -are copied to the target. Identical files, based on the selected compare -criteria, are ignored and not copied again.

- -

*        -Archive

- -

Archive photos and videos by Moving them from -the master to the target folder. Specific medias criteria can be specified for -archiving: shooting date/time, date and time of last archive execution (such as -7 days or earlier or 30 days or earlier). ZIP cannot be specified as a target -for Archive operations.

- -

 

- -

Compare -criteria:

- -

Files are -considered different based on these criteria:

- -

1.      File/folder name exists only on master or target, not -on both sides

- -

2.      Files have different sizes

- -

3.      Files have a different time stamp (last modification -date and time)

- -

 

- -

Check Advanced options below for more detailed information -on compare criteria and more granular settings.

- -

 

- -

*         -Swap source and destination

- -

Swap the master and target -folders: master becomes the target and the target is changed to master.

- -

 

- -

*         -Master folder (Source)

- -

Tap the -storage icon/name to edit the master folder.

- -

 

- -

*         -Target folder (Destination)

- -

Tap the -storage icon/name to edit the target folder.

- -

 

- -

*         -File filters / Select files for sync

- -

If unchecked, all files are synchronized. -If you check the files filter, you get the following options:

- -

*        -Sync audio files

- -

When -checked, sync will include files with the following extensions:

- -

aac, aif, aifc, aiff, flac, kar, -m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

- -

*        -Sync image files

- -

When -checked, sync will include files with the following extensions:

- -

bmp, cgm, djv, djvu, gif, ico, -ief, jpe, jpeg, jpg, pbm, pgm, png, tif, tiff,

- -

*        -Sync video files

- -

When checked, sync will -include files with the following extensions:

- -

avi, m4u, mov, mp4, movie, -mpe, mpeg, mpg, mxu, qt, wmv

- -

*        -File filter

- -

Is a custom include/exclude -file filter. You can select the name and extension of the files you want to -exclude or include from the synchronization process. Wildcards like *.docx are -supported.

- -

Multiple filters can also be quickly inserted in same -field with “;” separator.

- -

A relative path to specific files can also be entered -(relative to master)

- -

 

- -

examples:

- -

- match any file named my_file.txt: my_file.txt

- -

- match a specific big file to exclude: path/to/bigfile.dat

- -

- match all *tmp.log files in cache folder: cache/*tmp.log -or /cache/*tmp.log

- -

- match all pdf files: *.pdf

- -

- exclude all hidden files: .*

- -

- specify quickly multiple files: *.pdf;path/to/private.doc;file*_tmp.log

- -

 

- -

*         -Directory filters / Select subdirectories

- -

If unchecked, all folders are -synchronized. If you check the subdirectories filter, you get the following -options:

- -

*        -Directory filter

- -

Is a custom include/exclude -directory filter. You can select the name of the folders you want to exclude or -include from the synchronization process. Wildcards like /*cahe/ are supported.

- -

Include directory filters are -always relative to Master. There is no such restriction for Exclude filter. -This is mainly for speed processing reasons in addition that it is a rarely use -case scenario.

- -

 

- -

examples:

- -

- exclude all cache/temp -folders anywhere in Master: */cache/temp/* or */cache/temp/ or */cache/temp

- -

- exclude master/cache folder: -cache or /cache or /cache/*

- -

- exclude all *.tmp folders: -*/*.tmp/*

- -

- exclude all hidden folders: */.* -or */.*/

- -

- filter dir?: will match -dir1, dir2, dira, dirz…

- -

- quickly specify multiple -paths: path/to/dir1;path/to/dir2;path/to/dir3

- -

- note 1: filter -data/*/personal/* will include master/data/any_dir/personal/* folders

- -

- note 2: filter /*/cache/* -will exclude master/any_dir_name/cache/* but not master/cache and not master/any_dir_name/dir2/cache/

- -

 

- -

 

- -

*         -Execute sync tasks only when charging

- -

Auto -Sync planned tasks won’t start if the device is not charging. Manually starting -them is always possible.

- -

 

- -

*         -Synchronize the files in root of the master directory

- -

If unchecked, only the folders -and their files/subfolders under the master directory are synchronized. By -default, it is checked and the files located directly in the root of the master -directory will also be synchronized.

- -

 

- -

*         -Confirm before overwrite/delete

- -

When checked, it will display a -confirmation dialog before overwriting or deleting files.

- -

 

- -

*         -WiFi AP Options

- -

Ø  Run even when off: will try to start the sync even if -Wifi is turned off

- -

Ø  Conn to any AP: will synchronize only when connected -to a wifi network. It will accept any WLAN SSID name.

- -

Ø  Access Point List: will only start the sync if the -Wifi is connected to WLAN SSID in the list that you can specify. You can also automatically -add the currently connected SSID.

- -

Ø  Has private address: you can initiate the -synchronization only if the IP address assigned to the WiFi network is in the -following ranges: 10.0.0.0 - 10.255.255.255, 172.16.0.0 - 172.31.255.255 or -192.168.0.0 - 192.168.255.255.

- -

Ø  IP address list: you can start syncing only if the -WiFi IP address matches one of the specified addresses. You can also directly -add the current IP address your device is connected to through the IP selection -list.

- -

 

- -

*         -Skip task if the WLAN is not connected to the specified access -point, or if WLAN IP does not match the specified IP address.

- -

Auto Sync will skip the -task if it doesn’t match the specified criteria

- -

 

- -

*         -Allow sync with all IP addresses (include public)

- -

Sync -will be allowed whenever the Wifi is connected to any network, even on public -IP ranges (like in a public Wifi).

- -

 

- -

*         -Shows advanced options

- -

Please use it when setting detailed options.

- -

 

- -

*         -Include subdirectories

- -

It -will recursively include subdirectories under the specified master folder.

- -

 

- -

*         -Include empty directories

- -

Synchronizes the empty directories -(even if a directory is empty on the master, it will be created on the target). -If unchecked, empty directories on the master are ignored.

- -

 

- -

*         -Include hidden directories

- -

When checked, Sync will include the hidden linux folders -(those with a name starting with a dot). Note that in Windows and Samba, the hidden -attribute is not set by the folder name. Thus, the synchronized folder on the -SMB/Windows target won’t have the host hidden attribute.

- -

 

- -

*         -Include hidden files

- -

When -checked, Sync will include the hidden linux files (those with a name starting -with a dot). Note that in Windows and Samba, the hidden attribute is not set by -the file name. Thus, the synchronized file on the SMB/Windows target won’t have -the host hidden attribute.

- -

 

- -

*         -Overwrite destination files

- -

If unchecked, files on the -target will never be overwritten even if the compare criteria by size and time -are different.

- -

 

- -

*         -Use enhanced directory selection filter

- -

If the upper directory is -excluded by a filter while one of its sub-directories is selected/included, the -sub-directories of the selected folder will be synchronized.

- -

 

- -

*         -Retry on network error (only for SMB shares)

- -

On server-side -connection errors, SMBSync2 will try again the synchronization for a maximum of -3 times at a 30 seconds interval.

- -

 

- -

*         -Limit SMB I/O write buffer to 16KB (only for SMB shares)

- -

Please try if you get an "Access is denied" error -when writing to the PC/NAS folder.

- -

When -checked, it will limit I/O buffer to 16KB for writing operations to the SMB -host.

- -

 

- -

*         -Write files directly to the SMB folder without using temporary -files (only for SMB shares)

- -

Checked -by default (recommended). When copied to the SMB host, the file will be copied -to a temporary folder on the host. Once the copy operation is succeeded, the temporary -file is moved to its final destination overwriting the target file. If -unchecked, the target file on the host is immediately overwritten on the start -of the copy. If a connection error occurs, the file on the host remains -corrupted until the next sync.

- -

 

- -

*         -Do not set last modified time of destination file to match source -file

- -

Please enable if you get an -error like SmbFile#setLastModified()/File#setLastModified() fails. It means -that the remote host doesn’t allow setting file last modified time. If -unchecked, the last modified time of the copied file on the target will be set -to the time it was copied / synchronized. This means that the target file will -appear newer than the master.

- -

For next synchronizations, you -can:

- -

- stick to compare by size only, -or

- -

- you can enable the option “Do -not overwrite destination file if it is newer than source file” to only copy -files modified later on the master, or

- -

- you can enable the task -option “Obtain last modification time of files from SMBSync2 application custom -list”. However, this option is currently not available if the target is SMB. -Most SMB hosts support setting the last modified time.

- -

 

- -

See below for a detailed info -on each option.

- -

 

- -

*         -Obtain last modification time of files from SMBSync2 application -custom list

- -

Please try if all the files are -copied over the target files on every sync.

- -

This option is only available for -the user when the target is Internal Storage. For other storage types, SMBSync2 -tries to autodetect if the target supports setting the file last modified time. -If not, it will automatically use this built in function. One exception is when -the target is SMB, this function will not be used. See above the option “Do not -set last modified time of destination file to match source file” for other -workarounds. Note that most recent android devices do not support updating the -last modification time of the target file.

- -

During the first sync, SMBSync2 -will store the list of files with their timestamps in its database (cf. 1.3). Since -the database has to be created the first time, all files with the same name and -same size will be overwritten again with a complete copy from the master during -the first sync. In the subsequent syncs, the database will be used and -overwriting of all same name/same size files is no longer performed. The last -modified time of local file is saved by the proprietary SMBSync code (it -doesn’t rely on the Java File#setLastModified() function).

- -

 

- -

 

- -

*         -Delete files prior to sync (Mirror mode only)

- -

When checked, the directories -and files that are present on the target folder but that do not exist on the -master, will be first deleted. After that, files and folders that are different -will be copied to the target.

- -

If the master folder is SMB, -the processing time will be longer because the directory structure and their -contents is scanned through the network. It is strongly recommended to enable -the option " Use SMB2 negotiation" because SMB1 will be very slow.

- -

 

- -

*         -Use file size to determine if files are different

- -

When checked, files are -considered different if they differ by size.

- -

 

- -

*         -Size only compare

- -

Files are considered -different only if size of the source is larger than the destination. This will -disable compare by file time.

- -

 

- -

*         -Use time of last modification to determine if files are different -

- -

When -checked, files are considered different based on their last modification time

- -

 

- -

*         -Min allowed time difference (in seconds) between source and -destination files

- -

Files are considered identical -if the difference between their last modified times is less or equal to the -selected time in seconds. They are considered different if the time difference -between the files is superior to the selected time. FAT and ExFAT need a -minimum of 2 seconds tolerance. If 0 seconds is selected, the files must have -exactly the same time to be considered similar.

- -

 

- -

*         -Do not overwrite destination file if it is newer than source file

- -

If -checked, the file will be overwritten only when the master file is newer than the -target file even if the file sizes and the last update times are different. -Keep in mind that if you change time zones or if the files are modified during -the interval period of the Day Light Saving Time change, the last modified file -could appear older than the non-updated file. This is related to the file -system differences and only a manual check before overwriting the file will -avoid data loss. It is generally recommended to not modify files during the -interval of day light saving time change if they are meant to be -auto-synchronized

- -

 

- -

*           -Ignore Day Light Saving Time difference between files

- -

Let you select the time -difference in minutes between summer and winter time. Files are considered -different if the time difference is not exactly equal to the specified interval -(+/- the “Min allowed time difference (in seconds)” specified in previous -option)

- -

 

- -

*           -Skip directory and file names that contain invalid -characters(", :, \, *, <, >, |)

- -

If -checked, it will display a warning message and the sync will continue without processing -the directories/files containing invalid characters.

- -

 

- -

*           -Delete the master directory when it is empty (only when Sync -option is Move)

- -

When sync mode is Move, -after the files are moved to the target, the Master folder is also deleted.

- -

 

- -

 

- -

 

- -

Detail information

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.html b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.html new file mode 100644 index 00000000..15c82c65 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_EN_task.html @@ -0,0 +1,166 @@ + + + + +SMBSync2_Help_EN_task +

Test mode

+

When checked, no file is deleted, copied or overwritten. No changes are done to your files on both target and master. Please use the Test mode to check the files that will be deleted/copied/replaced during the real synchronization task. Performed file operations will appear in the Messages tab.

+

Auto sync

+

If checked, the task can be started automatically on planned intervals in the scheduler. Tasks that are set to automatic synchronization will start when you press the sync button on the top right corner of the main app screen.

+

Sync task name

+

Specify a name for the task. Sync task name is not case-sensitive.

+

Sync type

+

Currently supported sync modes are Mirror, Copy, Move or Archive. Synchronization is done in one direction of the target from the master.

+
    +
  • Mirror

    +

    The target folder is kept as an exact copy of the master. If a file is different between the master and the target, the file on the master overwrites the file on the target. Folder and files not present on the target are copied from the master. Files and folders that do not exist on the master are also deleted from the target. Only modified files (by size and/or date/time) are updated on the target.

    +
  • +
  • Move

    +

    If a file is different between the master and the target, the file on the master overwrites the file on the target. Once copied to the target, files and folders are deleted from the master (like move command).

    +

    Only modified files (by size and/or date/time) are copied to the target. Identical files, based on the selected compare criteria, are deleted from the master without being copied. Files and folders on the target, not present on the master, are obviously preserved.

    +
  • +
  • Copy

    +

    Same as Move, but files are not deleted from the master after being copied.

    +

    If a file is different between the master and the target, the file on the master overwrites the file on the target. Once copied to the target, files and folders are kept on the master (like a copy command).

    +

    Only modified files (by size and/or date/time) are copied to the target. Identical files, based on the selected compare criteria, are ignored and not copied again.

    +
  • +
  • Archive

    +

    Archive photos and videos by Moving them from the master to the target folder. Specific medias criteria can be specified for archiving: shooting date/time, date and time of last archive execution (such as 7 days or earlier or 30 days or earlier). ZIP cannot be specified as a target for Archive operations.

    +
  • + +
+

Compare criteria:

+

Files are considered different based on these criteria:

+
    +
  1. File/folder name exists only on master or target, not on both sides
  2. +
  3. Files have different sizes
  4. +
  5. Files have a different time stamp (last modification date and time)
  6. + +
+

Check Advanced options below for more detailed information on compare criteria and more granular settings.

+

Swap source and destination

+

Swap the master and target folders: master becomes the target and the target is changed to master.

+

Master folder (Source)

+

Tap the storage icon/name to edit the master folder.

+

Target folder (Destination)

+

Tap the storage icon/name to edit the target folder.

+

File filters / Select files for sync

+

If unchecked, all files are synchronized. If you check the files filter, you get the following options:

+
    +
  • Sync audio files

    +

    When checked, sync will include files with the following extensions:
    aac, aif, aifc, aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

    +
  • +
  • Sync image files

    +

    When checked, sync will include files with the following extensions:
    bmp, cgm, djv, djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png, pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, xbm, xpm, xwd

    +
  • +
  • Sync video files

    +

    When checked, sync will include files with the following extensions:
    avi, m4u, mov, mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

    +
  • +
  • File filter

    +

    Is a custom include/exclude file filter. You can select the name and extension of the files you want to exclude or include from the synchronization process.

    +
  • + +
+

Directory filters / Select subdirectories

+

If unchecked, all folders are synchronized. If you check the subdirectories filter, you get the following options:

+
    +
  • Directory filter

    +

    Is a custom include/exclude directory filter. You can select the name of the folders you want to exclude or include from the synchronization process.

    +
  • + +
+

Execute sync tasks only when charging

+

Auto Sync planned tasks won窶冲 start if the device is not charging. Manually starting them is always possible.

+

Synchronize the files in root of the master directory

+

If unchecked, only the folders and their files/subfolders under the master directory are synchronized. By default, it is checked and the files located directly in the root of the master directory will also be synchronized.

+

Confirm before overwrite/delete

+

When checked, it will display a confirmation dialog before overwriting or deleting files.

+

WiFi AP Options

+
    +
  • Run even when off

    +

    Will try to start the sync even if Wifi is turned off

    +
  • +
  • Conn to any AP

    +

    Will synchronize only when connected to a wifi network. It will accept any WLAN SSID name.

    +
  • +
  • Has private address

    +

    You can initiate the synchronization only if the IP address assigned to the WiFi network is in the following ranges: 10.0.0.0 - 10.255.255.255, 172.16.0.0 - 172.31.255.255 or 192.168.0.0 - 192.168.255.255.

    +
  • +
  • IP address list

    +

    You can start syncing only if the WiFi IP address matches one of the specified addresses. You can also directly add the current IP address your device is connected to through the IP selection list.
    You can use wildcards for the filter. (e.g., 192.168.100.*, 192.168.*)

    +
  • + +
+

There are several ways to synchronize when connecting to a specific WiFi. See the FAQ for details.

+
    +
  1. Change the IP address to something other than 192.168.0.0/24 on your WiFi router and add it to the IP address list
  2. +
  3. Fixing an IP address on the Android side and registering it in the IP address list
  4. + +
+

Skip task if the WLAN IP does not match the specified IP address.

+

Sync will skip the task if it doesn窶冲 match the specified criteria

+

Allow sync with all IP addresses (include public)

+

Sync will be allowed whenever the Wifi is connected to any network, even on public IP ranges (like in a public Wifi).

+

Shows advanced options

+

Please use it when setting detailed options.

+

Include subdirectories

+

It will recursively include subdirectories under the specified master folder.

+

Include empty directories

+

Synchronizes the empty directories (even if a directory is empty on the master, it will be created on the target). If unchecked, empty directories on the master are ignored.

+

Include hidden directories

+

When checked, Sync will include the hidden linux folders (those with a name starting with a dot). Note that in Windows and Samba, the hidden attribute is not set by the folder name. Thus, the synchronized folder on the SMB/Windows target won窶冲 have the host hidden attribute.

+

Include hidden files

+

When checked, Sync will include the hidden linux files (those with a name starting with a dot). Note that in Windows and Samba, the hidden attribute is not set by the file name. Thus, the synchronized file on the SMB/Windows target won窶冲 have the host hidden attribute.

+

Overwrite destination files

+

If unchecked, files on the target will never be overwritten even if the compare criteria by size and time are different.

+

Use enhanced directory selection filter

+

If the upper directory is excluded by a filter while one of its sub-directories is selected/included, the sub-directories of the selected folder will be synchronized.

+

Use new filter version 2

+

After enabling it, you can use the new filter. It may behave differently from the old filter, so please test it thoroughly before using it.

+

Remove directories and files excluded by the filters

+

If enabled, it removes directories/files that are excluded from the filter.

+

Retry on network error (only for SMB shares)

+

On server-side connection errors, SMBSync2 will try again the synchronization for a maximum of 3 times at a 30 seconds interval.

+

Limit SMB I/O write buffer to 16KB (only for SMB shares)

+

Please try if you get an "Access is denied" error when writing to the PC/NAS folder.

+

When checked, it will limit I/O buffer to 16KB for writing operations to the SMB host.

+

Write files directly to the SMB folder without using temporary files (only for SMB shares)

+

Checked by default (recommended). When copied to the SMB host, the file will be copied to a temporary folder on the host. Once the copy operation is succeeded, the temporary file is moved to its final destination overwriting the target file. If unchecked, the target file on the host is immediately overwritten on the start of the copy. If a connection error occurs, the file on the host remains corrupted until the next sync.

+

Do not set last modified time of destination file to match source file

+

Please enable if you get an error like SmbFile#setLastModified()/File#setLastModified() fails. It means that the remote host doesn窶冲 allow setting file last modified time. If unchecked, the last modified time of the copied file on the target will be set to the time it was copied / synchronized. This means that the target file will appear newer than the master.

+

For next synchronizations, you can:

+
    +
  • stick to compare by size only, or
  • +
  • you can enable the option 窶廛o not overwrite destination file if it is newer than source file窶 to only copy files modified later on the master, or
  • +
  • you can enable the task option 窶廾btain last modification time of files from SMBSync2 application custom list窶. However, this option is currently not available if the target is SMB. Most SMB hosts support setting the last modified time.
  • + +
+

See below for a detailed info on each option.

+

Obtain last modification time of files from SMBSync2 application custom list

+

Please try if all the files are copied over the target files on every sync.

+

This option is only available for the user when the target is Internal Storage. For other storage types, SMBSync2 tries to autodetect if the target supports setting the file last modified time. If not, it will automatically use this built in function. One exception is when the target is SMB, this function will not be used. See above the option 窶廛o not set last modified time of destination file to match source file窶 for other workarounds. Note that most recent android devices do not support updating the last modification time of the target file.

+

During the first sync, SMBSync2 will store the list of files with their timestamps in its database (cf. 1.3). Since the database has to be created the first time, all files with the same name and same size will be overwritten again with a complete copy from the master during the first sync. In the subsequent syncs, the database will be used and overwriting of all same name/same size files is no longer performed. The last modified time of local file is saved by the proprietary SMBSync code (it doesn窶冲 rely on the Java File#setLastModified() function).

+

Delete files prior to sync (Mirror mode only)

+

When checked, the directories and files that are present on the target folder but that do not exist on the master, will be first deleted. After that, files and folders that are different will be copied to the target.

+

If the master folder is SMB, the processing time will be longer because the directory structure and their contents is scanned through the network. It is strongly recommended to enable the option " Use SMB2 negotiation" because SMB1 will be very slow.

+

Use file size to determine if files are different

+

When checked, files are considered different if they differ by size.

+

Size only compare

+

Files are considered different only if size of the source is larger than the destination. This will disable compare by file time.

+

Use time of last modification to determine if files are different

+

When checked, files are considered different based on their last modification time

+

Min allowed time difference (in seconds) between source and destination files

+

Files are considered identical if the difference between their last modified times is less or equal to the selected time in seconds. They are considered different if the time difference between the files is superior to the selected time. FAT and ExFAT need a minimum of 2 seconds tolerance. If 0 seconds is selected, the files must have exactly the same time to be considered similar.

+

Do not overwrite destination file if it is newer than source file

+

If checked, the file will be overwritten only when the master file is newer than the target file even if the file sizes and the last update times are different. Keep in mind that if you change time zones or if the files are modified during the interval period of the Day Light Saving Time change, the last modified file could appear older than the non-updated file. This is related to the file system differences and only a manual check before overwriting the file will avoid data loss. It is generally recommended to not modify files during the interval of day light saving time change if they are meant to be auto-synchronized

+

Ignore Day Light Saving Time difference between files

+

Let you select the time difference in minutes between summer and winter time. Files are considered different if the time difference is not exactly equal to the specified interval (+/- the 窶廴in allowed time difference (in seconds)窶 specified in previous option)

+

Skip directory and file names that contain invalid characters(", :, \, *, <, >, |)

+

If checked, it will display a warning message and the sync will continue without processing the directories/files containing invalid characters.

+

Delete the master directory when it is empty (only when Sync option is Move)

+

When sync mode is Move, after the files are moved to the target, the Master folder is also deleted.

+

Detail information

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.htm b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.htm deleted file mode 100644 index 31ed2d54..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.htm +++ /dev/null @@ -1,616 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

         -Point de montage

- -

Sélectionnez le point de montage où vous souhaitez -stocker le fichier ZIP.

- -

 

- -

*         -Afficher les dossiers

- -

Afficher -la liste des répertoires sur le stockage interne.

- -

Lorsque vous appuyez sur le -bouton "list directory", les répertoires sélectionnables sont -affichés. Appuyez sur le répertoire que vous souhaitez choisir, puis sur le -bouton "Sélectionner". Pour revenir aux sous-répertoires, appuyez sur -le nom du répertoire.

- -

 

- -

*         -Répertoire

- -

Veuillez entrer le répertoire -cible ou le répertoire principal. Si vous indiquez un répertoire qui n'existe -pas dans la cible, il sera créé lors de la synchronisation.

- -

 

- -

*         -Ajouter des mots-clés

- -

%YEAR%, %MONTH%, %DAY% et -%DAY-OF-YEAR% peuvent être utilisés comme noms de répertoires cibles. Les -mots-clés sont convertis en année, mois et jour de début de la synchronisation.

- -

 

- -

Ces options ne sont affichées que lorsque le type de -synchronisation est Copier/Déplacer.

- -

*         -Ajouter au nom du dossier la date/heure à laquelle la photo/vidéo -a été prise (le mot-clé sera remplacé par la date et l'heure à laquelle la -photo/vidéo a été prise)

- -

Si elles sont vérifiées, les données -EXIF des supports sauvegardés sont utilisées pour obtenir la date et l'heure du -tournage. L'horodatage des tirs est utilisé et ajouté au dossier cible. Lorsque -l'application ne parvient pas à obtenir l'heure de tir à partir des données -EXIF, elle utilise la dernière heure modifiée du fichier.

- -

 

- -

Les options suivantes -ne sont affichées que lorsque le type de synchronisation est Archive.

- -

*         -Si la date et l'heure ne peuvent pas être déterminées depuis -l'entête EXIF, afficher un message de confirmation

- -

Si la case est cochée, lorsque -la date et l'heure de tournage ne peuvent pas être obtenues à partir du fichier -EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la -dernière modification du fichier a été utilisée ou non. Si vous sélectionnez Annuler -dans la boîte de dialogue de confirmation, le fichier ne sera pas archivé.

- -

 

- -

*         -Archiver les fichiers si:

- -

Choisissez les critères de -temps pour déterminer les fichiers à archiver. La sélection de l'heure est -basée sur la date de prise de vue de la photo/vidéo, ou sur la dernière heure -modifiée s'il n'est pas possible d'acquérir l'horodatage à partir de l'en-tête -EXIF.

- -

*         -Toutes les dates

- -

Archivez toutes les -photos/vidéos

- -

*         -Plus ancien que 7 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 7 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 30 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 30 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 60 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 60 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 90 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 90 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 180 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 180 jours ou plus à l'heure -actuelle.

- -

*         -Plus ancien que 1 année

- -

N'archivez que les fichiers -dont la date de tournage est antérieure d'un an ou plus à l'heure actuelle.

- -

 

- -

*         -Incrémenter les noms de fichiers

- -

Ajoutez le numéro de séquence -incrémentielle au nom du fichier lors de l'archivage.

- -

*         -Ne pas changer

- -

Ne pas ajouter un numéro de -séquence.

- -

*         -3 chiffres (001-999)

- -

Appendice 001-999

- -

*         -4 chiffres (0001-9999)

- -

Appendice 0001-9999

- -

*         -5 chiffres (00001-99999)

- -

Appendice 00001-99999

- -

*         -6 chiffres (000001-999999)

- -

Appendice 000001-999999

- -

 

- -

*         -Changer le nom du fichier avant de l'archiver dans le dossier -cible

- -

Si cette case est cochée, le -nom du fichier archivé sera modifié en fonction des critères que vous aurez choisis. -Vous pouvez ajouter la date et l'heure dans le nom du fichier "Modèle de -nom de fichier".

- -

 

- -

*         -Modèle de nom de fichier

- -

Saisissez -les modèles à utiliser pour renommer les fichiers archivés. La valeur par -défaut est DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Sera remplacé par le nom de -fichier original lors de l'archivage des archives (Ex. DSC_0001)

- -

*         -%Date%

- -

Sera remplacé par la date de -tournage (ex. 2018-01-01)

- -

*         -%Time%

- -

Sera remplacé par l'heure de -tournage (ex. 13:01:10)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

*         -Créer un dossier dont le nom comprend la date de capture des -photos et y stocker les fichiers archivés.

- -

Crée un -répertoire horodaté où stocker les fichiers archivés.

- -

Lorsque -cette option est cochée, le "modèle de nom de répertoire" s'affiche.

- -

 

- -

*         -Modèle de répertoire

- -

Saisissez -les modèles à utiliser pour renommer le répertoire à créer (exp. DIR-% ANNÉE% --% MOIS% et ainsi de suite). En appuyant sur les boutons des modèles, vous -pouvez entrer des mots-clés derrière le curseur.

- -

*         -%Year%

- -

Sera -remplacé par l'année de tournage. (Ex. 2018)

- -

*         -%Month%

- -

Sera -remplacé par le mois de tournage (Ex. 01)

- -

*         -%Day%

- -

Sera -remplacé par le jour du tournage (Ex. 29)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

Informations détaillées

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.html b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.html new file mode 100644 index 00000000..9f579e38 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_internal.html @@ -0,0 +1,107 @@ + + + + +SMBSync2_Help_FR_folder_internal +

Point de montage

+

Sテゥlectionnez le point de montage oテケ vous souhaitez stocker le fichier ZIP.

+

Afficher les dossiers

+

Afficher la liste des rテゥpertoires sur le stockage interne.
Lorsque vous appuyez sur le bouton "list directory", les rテゥpertoires sテゥlectionnables sont affichテゥs. Appuyez sur le rテゥpertoire que vous souhaitez choisir, puis sur le bouton "Sテゥlectionner". Pour revenir aux sous-rテゥpertoires, appuyez sur le nom du rテゥpertoire.

+

Rテゥpertoire

+

Veuillez entrer le rテゥpertoire cible ou le rテゥpertoire principal. Si vous indiquez un rテゥpertoire qui n'existe pas dans la cible, il sera crテゥテゥ lors de la synchronisation.

+

Ajouter des mots-clテゥs

+

%YEAR%, %MONTH%, %DAY% et %DAY-OF-YEAR% peuvent テェtre utilisテゥs comme noms de rテゥpertoires cibles. Les mots-clテゥs sont convertis en annテゥe, mois et jour de dテゥbut de la synchronisation.

+

Ces options ne sont affichテゥes que lorsque le type de synchronisation est Copier/Dテゥplacer.

+

Ajouter au nom du dossier la date/heure テ laquelle la photo/vidテゥo a テゥtテゥ prise (le mot-clテゥ sera remplacテゥ par la date et l'heure テ laquelle la photo/vidテゥo a テゥtテゥ prise)

+

Si elles sont vテゥrifiテゥes, les donnテゥes EXIF des supports sauvegardテゥs sont utilisテゥes pour obtenir la date et l'heure du tournage. L'horodatage des tirs est utilisテゥ et ajoutテゥ au dossier cible. Lorsque l'application ne parvient pas テ obtenir l'heure de tir テ partir des donnテゥes EXIF, elle utilise la derniティre heure modifiテゥe du fichier.

+

Les options suivantes ne sont affichテゥes que lorsque le type de synchronisation est Archive.

+

Si la date et l'heure ne peuvent pas テェtre dテゥterminテゥes depuis l'entテェte EXIF, afficher un message de confirmation

+

Si la case est cochテゥe, lorsque la date et l'heure de tournage ne peuvent pas テェtre obtenues テ partir du fichier EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la derniティre modification du fichier a テゥtテゥ utilisテゥe ou non. Si vous sテゥlectionnez Annuler dans la boテョte de dialogue de confirmation, le fichier ne sera pas archivテゥ.

+

Archiver les fichiers si:

+

Choisissez les critティres de temps pour dテゥterminer les fichiers テ archiver. La sテゥlection de l'heure est basテゥe sur la date de prise de vue de la photo/vidテゥo, ou sur la derniティre heure modifiテゥe s'il n'est pas possible d'acquテゥrir l'horodatage テ partir de l'en-tテェte EXIF.

+
    +
  • Toutes les dates

    +

    Archivez toutes les photos/vidテゥos

    +
  • +
  • Plus ancien que 7 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 7 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 30 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 30 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 60 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 60 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 90 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 90 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 180 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 180 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 1 annテゥe

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure d'un an ou plus テ l'heure actuelle.

    +
  • + +
+

Incrテゥmenter les noms de fichiers

+

Ajoutez le numテゥro de sテゥquence incrテゥmentielle au nom du fichier lors de l'archivage.

+
    +
  • Ne pas changer

    +

    Ne pas ajouter un numテゥro de sテゥquence.

    +
  • +
  • 3 chiffres (001-999)

    +

    Appendice 001-999

    +
  • +
  • 4 chiffres (0001-9999)

    +

    Appendice 0001-9999

    +
  • +
  • 5 chiffres (00001-99999)

    +

    Appendice 00001-99999

    +
  • +
  • 6 chiffres (000001-999999)

    +

    Appendice 000001-999999

    +
  • + +
+

+

Changer le nom du fichier avant de l'archiver dans le dossier cible

+

Si cette case est cochテゥe, le nom du fichier archivテゥ sera modifiテゥ en fonction des critティres que vous aurez choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier "Modティle de nom de fichier".

+

+

Modティle de nom de fichier

+

Saisissez les modティles テ utiliser pour renommer les fichiers archivテゥs. La valeur par dテゥfaut est DSC%DATE%%TIME%

+
    +
  • %Original name%

    +

    Sera remplacテゥ par le nom de fichier original lors de l'archivage des archives (Ex. DSC_0001)

    +
  • +
  • %Date%

    +

    Sera remplacテゥ par la date de tournage (ex. 2018-01-01)

    +
  • +
  • %Time%

    +

    Sera remplacテゥ par l'heure de tournage (ex. 13:01:10)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Crテゥer un dossier dont le nom comprend la date de capture des photos et y stocker les fichiers archivテゥs.

+

Crテゥe un rテゥpertoire horodatテゥ oテケ stocker les fichiers archivテゥs.

+

Lorsque cette option est cochテゥe, le "modティle de nom de rテゥpertoire" s'affiche.

+

Modティle de rテゥpertoire

+

Saisissez les modティles テ utiliser pour renommer le rテゥpertoire テ crテゥer (exp. DIR-% ANNテ右% -% MOIS% et ainsi de suite). En appuyant sur les boutons des modティles, vous pouvez entrer des mots-clテゥs derriティre le curseur.

+
    +
  • %Year%

    +

    Sera remplacテゥ par l'annテゥe de tournage. (Ex. 2018)

    +
  • +
  • %Month%

    +

    Sera remplacテゥ par le mois de tournage (Ex. 01)

    +
  • +
  • %Day%

    +

    Sera remplacテゥ par le jour du tournage (Ex. 29)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Informations dテゥtaillテゥes

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.htm b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.htm deleted file mode 100644 index 8ea2a9a7..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.htm +++ /dev/null @@ -1,611 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Afficher les dossiers

- -

Afficher -la liste des répertoires sur le stockage interne.

- -

Lorsque vous appuyez sur le -bouton "list directory", les répertoires sélectionnables sont -affichés. Appuyez sur le répertoire que vous souhaitez choisir, puis sur le -bouton "Sélectionner". Pour revenir aux sous-répertoires, appuyez sur -le nom du répertoire.

- -

 

- -

*         -Ajouter des mots-clés

- -

%YEAR%, %MONTH%, %DAY% et -%DAY-OF-YEAR% peuvent être utilisés comme noms de répertoires cibles. Les -mots-clés sont convertis en année, mois et jour de début de la synchronisation.

- -

 

- -

Ces options ne sont affichées que lorsque le type de -synchronisation est Copier/Déplacer.

- -

*         -Ajouter au nom du dossier la date/heure à laquelle la photo/vidéo -a été prise (le mot-clé sera remplacé par la date et l'heure à laquelle la -photo/vidéo a été prise)

- -

Si elles sont vérifiées, les -données EXIF des supports sauvegardés sont utilisées pour obtenir la date et -l'heure du tournage. L'horodatage des tirs est utilisé et ajouté au dossier -cible. Lorsque l'application ne parvient pas à obtenir l'heure de tir à partir -des données EXIF, elle utilise la dernière heure modifiée du fichier.

- -

 

- -

*         -Répertoire

- -

Veuillez entrer le répertoire -cible ou le répertoire principal. Si vous indiquez un répertoire qui n'existe -pas dans la cible, il sera créé lors de la synchronisation.

- -

 

- -

*         -Choisir le dossier sur la carte SD

- -

Sélectionnez -le répertoire racine de la SDCARD pour accéder à la SDCARD. Si vous ne pouvez -pas le sélectionner, veuillez envoyer les informations du système au -développeur avec "Menu -> System Info".

- -

 

- -

Les options suivantes -ne sont affichées que lorsque le type de synchronisation est Archive.

- -

*         -Si la date et l'heure ne peuvent pas être déterminées depuis -l'entête EXIF, afficher un message de confirmation

- -

Si la case est cochée, lorsque -la date et l'heure de tournage ne peuvent pas être obtenues à partir du fichier -EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la -dernière modification du fichier a été utilisée ou non. Si vous sélectionnez -Annuler dans la boîte de dialogue de confirmation, le fichier ne sera pas -archivé.

- -

 

- -

*         -Archiver les fichiers si:

- -

Choisissez les critères de -temps pour déterminer les fichiers à archiver. La sélection de l'heure est -basée sur la date de prise de vue de la photo/vidéo, ou sur la dernière heure -modifiée s'il n'est pas possible d'acquérir l'horodatage à partir de l'en-tête -EXIF.

- -

*         -Toutes les dates

- -

Archivez toutes les -photos/vidéos

- -

*         -Plus ancien que 7 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 7 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 30 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 30 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 60 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 60 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 90 jours

- -

N'archivez que les fichiers dont -la date de tournage est antérieure de 90 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 180 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 180 jours ou plus à l'heure -actuelle.

- -

*         -Plus ancien que 1 année

- -

N'archivez que les fichiers -dont la date de tournage est antérieure d'un an ou plus à l'heure actuelle.

- -

 

- -

*         -Incrémenter les noms de fichiers

- -

Ajoutez le numéro de séquence -incrémentielle au nom du fichier lors de l'archivage.

- -

*         -Ne pas changer

- -

Ne pas ajouter un numéro de -séquence.

- -

*         -3 chiffres (001-999)

- -

Appendice 001-999

- -

*         -4 chiffres (0001-9999)

- -

Appendice 0001-9999

- -

*         -5 chiffres (00001-99999)

- -

Appendice 00001-99999

- -

*         -6 chiffres (000001-999999)

- -

Appendice 000001-999999

- -

 

- -

*         -Changer le nom du fichier avant de l'archiver dans le dossier -cible

- -

Si cette case est cochée, le -nom du fichier archivé sera modifié en fonction des critères que vous aurez -choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier -"Modèle de nom de fichier".

- -

 

- -

*         -Modèle de nom de fichier

- -

Saisissez -les modèles à utiliser pour renommer les fichiers archivés. La valeur par -défaut est DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Sera remplacé par le nom de -fichier original lors de l'archivage des archives (Ex. DSC_0001)

- -

*         -%Date%

- -

Sera remplacé par la date de -tournage (ex. 2018-01-01)

- -

*         -%Time%

- -

Sera remplacé par l'heure de -tournage (ex. 13:01:10)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

*         -Créer un dossier dont le nom comprend la date de capture des -photos et y stocker les fichiers archivés.

- -

Crée un -répertoire horodaté où stocker les fichiers archivés.

- -

Lorsque -cette option est cochée, le "modèle de nom de répertoire" s'affiche.

- -

 

- -

*         -Modèle de répertoire

- -

Saisissez -les modèles à utiliser pour renommer le répertoire à créer (exp. DIR-% ANNÉE% --% MOIS% et ainsi de suite). En appuyant sur les boutons des modèles, vous -pouvez entrer des mots-clés derrière le curseur.

- -

*         -%Year%

- -

Sera -remplacé par l'année de tournage. (Ex. 2018)

- -

*         -%Month%

- -

Sera -remplacé par le mois de tournage (Ex. 01)

- -

*         -%Day%

- -

Sera -remplacé par le jour du tournage (Ex. 29)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

Informations détaillées

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.html b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.html new file mode 100644 index 00000000..1e845561 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_sdcard.html @@ -0,0 +1,105 @@ + + + + +SMBSync2_Help_FR_folder_sdcard +

Afficher les dossiers

+

Afficher la liste des rテゥpertoires sur le stockage interne.
Lorsque vous appuyez sur le bouton "list directory", les rテゥpertoires sテゥlectionnables sont affichテゥs. Appuyez sur le rテゥpertoire que vous souhaitez choisir, puis sur le bouton "Sテゥlectionner". Pour revenir aux sous-rテゥpertoires, appuyez sur le nom du rテゥpertoire.

+

Ajouter des mots-clテゥs

+

%YEAR%, %MONTH%, %DAY% et %DAY-OF-YEAR% peuvent テェtre utilisテゥs comme noms de rテゥpertoires cibles. Les mots-clテゥs sont convertis en annテゥe, mois et jour de dテゥbut de la synchronisation.

+

Ces options ne sont affichテゥes que lorsque le type de synchronisation est Copier/Dテゥplacer.

+

Ajouter au nom du dossier la date/heure テ laquelle la photo/vidテゥo a テゥtテゥ prise (le mot-clテゥ sera remplacテゥ par la date et l'heure テ laquelle la photo/vidテゥo a テゥtテゥ prise)

+

Si elles sont vテゥrifiテゥes, les donnテゥes EXIF des supports sauvegardテゥs sont utilisテゥes pour obtenir la date et l'heure du tournage. L'horodatage des tirs est utilisテゥ et ajoutテゥ au dossier cible. Lorsque l'application ne parvient pas テ obtenir l'heure de tir テ partir des donnテゥes EXIF, elle utilise la derniティre heure modifiテゥe du fichier.

+

Rテゥpertoire

+

Veuillez entrer le rテゥpertoire cible ou le rテゥpertoire principal. Si vous indiquez un rテゥpertoire qui n'existe pas dans la cible, il sera crテゥテゥ lors de la synchronisation.

+

Choisir le dossier sur la carte SD

+

Sテゥlectionnez le rテゥpertoire racine de la SDCARD pour accテゥder テ la SDCARD. Si vous ne pouvez pas le sテゥlectionner, veuillez envoyer les informations du systティme au dテゥveloppeur avec "Menu -> System Info".

+

Les options suivantes ne sont affichテゥes que lorsque le type de synchronisation est Archive.

+

Si la date et l'heure ne peuvent pas テェtre dテゥterminテゥes depuis l'entテェte EXIF, afficher un message de confirmation

+

Si la case est cochテゥe, lorsque la date et l'heure de tournage ne peuvent pas テェtre obtenues テ partir du fichier EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la derniティre modification du fichier a テゥtテゥ utilisテゥe ou non. Si vous sテゥlectionnez Annuler dans la boテョte de dialogue de confirmation, le fichier ne sera pas archivテゥ.

+

Archiver les fichiers si:

+

Choisissez les critティres de temps pour dテゥterminer les fichiers テ archiver. La sテゥlection de l'heure est basテゥe sur la date de prise de vue de la photo/vidテゥo, ou sur la derniティre heure modifiテゥe s'il n'est pas possible d'acquテゥrir l'horodatage テ partir de l'en-tテェte EXIF.

+
    +
  • Toutes les dates

    +

    Archivez toutes les photos/vidテゥos

    +
  • +
  • Plus ancien que 7 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 7 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 30 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 30 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 60 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 60 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 90 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 90 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 180 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 180 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 1 annテゥe

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure d'un an ou plus テ l'heure actuelle.

    +
  • + +
+

+

Incrテゥmenter les noms de fichiers

+

Ajoutez le numテゥro de sテゥquence incrテゥmentielle au nom du fichier lors de l'archivage.

+
    +
  • Ne pas changer

    +

    Ne pas ajouter un numテゥro de sテゥquence.

    +
  • +
  • 3 chiffres (001-999)

    +

    Appendice 001-999

    +
  • +
  • 4 chiffres (0001-9999)

    +

    Appendice 0001-9999

    +
  • +
  • 5 chiffres (00001-99999)

    +

    Appendice 00001-99999

    +
  • +
  • 6 chiffres (000001-999999)

    +

    Appendice 000001-999999

    +
  • + +
+

Changer le nom du fichier avant de l'archiver dans le dossier cible

+

Si cette case est cochテゥe, le nom du fichier archivテゥ sera modifiテゥ en fonction des critティres que vous aurez choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier "Modティle de nom de fichier".

+

Modティle de nom de fichier

+

Saisissez les modティles テ utiliser pour renommer les fichiers archivテゥs. La valeur par dテゥfaut est DSC%DATE%%TIME%

+
    +
  • %Original name%

    +

    Sera remplacテゥ par le nom de fichier original lors de l'archivage des archives (Ex. DSC_0001)

    +
  • +
  • %Date%

    +

    Sera remplacテゥ par la date de tournage (ex. 2018-01-01)

    +
  • +
  • %Time%

    +

    Sera remplacテゥ par l'heure de tournage (ex. 13:01:10)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Crテゥer un dossier dont le nom comprend la date de capture des photos et y stocker les fichiers archivテゥs.

+

Crテゥe un rテゥpertoire horodatテゥ oテケ stocker les fichiers archivテゥs.
Lorsque cette option est cochテゥe, le "modティle de nom de rテゥpertoire" s'affiche.

+

Modティle de rテゥpertoire

+

Saisissez les modティles テ utiliser pour renommer le rテゥpertoire テ crテゥer (exp. DIR-% ANNテ右% -% MOIS% et ainsi de suite). En appuyant sur les boutons des modティles, vous pouvez entrer des mots-clテゥs derriティre le curseur.

+
    +
  • %Year%

    +

    Sera remplacテゥ par l'annテゥe de tournage. (Ex. 2018)

    +
  • +
  • %Month%

    +

    Sera remplacテゥ par le mois de tournage (Ex. 01)

    +
  • +
  • %Day%

    +

    Sera remplacテゥ par le jour du tournage (Ex. 29)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Informations dテゥtaillテゥes

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.htm deleted file mode 100644 index 0ac66f60..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.htm +++ /dev/null @@ -1,765 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Rechercher les serveurs SMB

- -

Scanner le réseau pour trouver -le serveur SMB disponible

- -

 

- -

*         -Nom du serveur/Adresse IP

- -

Précisez le nom du serveur SMB -ou l'adresse IP

- -

 

- -

*         -Protocole SMB

- -

Vous -pouvez spécifier le protocole SMB.

- -

Ø  -Utiliser SMB V1

- -

Ø  -Utiliser SMB V2 (2.01)

- -

SMB min v2.1, max v2.1

- -

Ø  -Utiliser SMB V2 (2.11)

- -

SMB min v2.1, max v2.1

- -

Ø  -Utiliser SMB V2/3 (2.12)

- -

Prise en charge du -protocole SMB V2 ou V3

- -

SMB min v2.0.2, max v3.0

- -

Ø  -Utiliser SMB V2/3 (2.14)

- -

SMB min v2.0.2, max v3.0

- -

 

- -

*         -Utiliser le protocole SMB2

- -

Lorsqu'elle -est cochée, elle force -setProperty("jcifs.smb.client.useSMB2Negotiation", "true") dans -la fonction JcifsAuth(). Cela garantit l'utilisation du style de négociation -SMB2 non rétrocompatible, incompatible avec les versions antérieures à SMB -2.0.2

- -

 

- -

*         -Exiger l'authentification SMB IPC

- -

Lors de la vérification, le -client est tenu d'utiliser la signature SMB pour les connexions IPC$ comme -transport DCERPC. Sinon, c'est autorisé, mais pas obligatoire.

- -

 

- -

*         -Saisir numéro de port

- -

Précisez le numéro de port s'il -est différent de celui par défaut. S'il est laissé vide, SMBSync2 essaiera de -se connecter aux numéros de port standard par défaut 139 et 445.

- -

 

- -

*         -Utiliser un compte d'authentification

- -

Doit être rempli si le serveur -le demande.

- -

 

- -

*         -Nom d'utilisateur

- -

Nom de compte d'utilisateur -pour se connecter à l'hôte. Un compte Microsoft ne peut pas être utilisé avec -SMBSync2. Veuillez créer un compte local et l'utiliser.

- -

 

- -

*         -Mot de passe

- -

Mot de passe du compte pour se connecter -à l'hôte.

- -

 

- -

*         -Afficher les dossiers partagés

- -

Se connecte à l'hôte spécifié -et liste toutes les actions disponibles pour le compte.

- -

(Les noms des actions seront -affichés lorsque vous appuierez sur le bouton " Afficher les dossiers -partagés ". Cliquez sur le nom de l'action souhaitée, puis appuyez sur OK -pour valider)

- -

 

- -

*         -Afficher les dossiers

- -

Afficher la liste des annuaires -sur l'action sélectionnée.

- -

Lorsque vous appuyez sur le -bouton "Répertoire de la liste", les répertoires sélectionnables sont -affichés.

- -

Appuyez sur l'annuaire que vous -souhaitez choisir, puis sur le bouton "Sélectionner". Pour -récapituler

- -

en passant par les -sous-répertoires, appuyez sur le nom du répertoire.

- -

 

- -

 

- -

*         -Dossier

- -

Veuillez entrer le répertoire -cible ou le répertoire principal. Si vous indiquez un répertoire qui n'existe -pas dans la cible, il sera créé lors de la synchronisation.

- -

 

- -

*         -Ajouter des mots-clés

- -

%YEAR%, %MONTH%, %DAY% et %DAY-OF-YEAR% -peuvent être utilisés comme noms de répertoires cibles. Les mots-clés sont -convertis en année, mois et jour de début de la synchronisation.

- -

 

- -

Ces options ne sont affichées que lorsque le type de -synchronisation est Copier/Déplacer.

- -

*         -Ajouter au nom du dossier la date/heure à laquelle la photo/vidéo -a été prise (le mot-clé sera remplacé par la date et l'heure à laquelle la -photo/vidéo a été prise)

- -

Si elles sont vérifiées, les -données EXIF des supports sauvegardés sont utilisées pour obtenir la date et -l'heure du tournage. L'horodatage des tirs est utilisé et ajouté au dossier -cible. Lorsque l'application ne parvient pas à obtenir l'heure de tir à partir -des données EXIF, elle utilise la dernière heure modifiée du fichier.

- -

 

- -

Les options suivantes -ne sont affichées que lorsque le type de synchronisation est Archive.

- -

*         -Si la date et l'heure ne peuvent pas être déterminées depuis -l'entête EXIF, afficher un message de confirmation

- -

Si la case est cochée, lorsque -la date et l'heure de tournage ne peuvent pas être obtenues à partir du fichier -EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la -dernière modification du fichier a été utilisée ou non. Si vous sélectionnez -Annuler dans la boîte de dialogue de confirmation, le fichier ne sera pas -archivé.

- -

 

- -

*         -Archiver les fichiers si:

- -

Choisissez les critères de -temps pour déterminer les fichiers à archiver. La sélection de l'heure est -basée sur la date de prise de vue de la photo/vidéo, ou sur la dernière heure -modifiée s'il n'est pas possible d'acquérir l'horodatage à partir de l'en-tête -EXIF.

- -

*         -Toutes les dates

- -

Archivez toutes les -photos/vidéos

- -

*         -Plus ancien que 7 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 7 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 30 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 30 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 60 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 60 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 90 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 90 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 180 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 180 jours ou plus à l'heure -actuelle.

- -

*         -Plus ancien que 1 année

- -

N'archivez que les fichiers -dont la date de tournage est antérieure d'un an ou plus à l'heure actuelle.

- -

 

- -

*         -Incrémenter les noms de fichiers

- -

Ajoutez le numéro de séquence -incrémentielle au nom du fichier lors de l'archivage.

- -

*         -Ne pas changer

- -

Ne pas ajouter un numéro de -séquence.

- -

*         -3 chiffres (001-999)

- -

Appendice 001-999

- -

*         -4 chiffres (0001-9999)

- -

Appendice 0001-9999

- -

*         -5 chiffres (00001-99999)

- -

Appendice 00001-99999

- -

*         -6 chiffres (000001-999999)

- -

Appendice 000001-999999

- -

 

- -

*         -Changer le nom du fichier avant de l'archiver dans le dossier -cible

- -

Si cette case est cochée, le -nom du fichier archivé sera modifié en fonction des critères que vous aurez -choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier -"Modèle de nom de fichier".

- -

 

- -

*         -Modèle de nom de fichier

- -

Saisissez -les modèles à utiliser pour renommer les fichiers archivés. La valeur par -défaut est DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Sera remplacé par le nom de -fichier original lors de l'archivage des archives (Ex. DSC_0001)

- -

*         -%Date%

- -

Sera remplacé par la date de -tournage (ex. 2018-01-01)

- -

*         -%Time%

- -

Sera remplacé par l'heure de -tournage (ex. 13:01:10)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

*         -Créer un dossier dont le nom comprend la date de capture des -photos et y stocker les fichiers archivés.

- -

Crée un -répertoire horodaté où stocker les fichiers archivés.

- -

Lorsque -cette option est cochée, le "modèle de nom de répertoire" s'affiche.

- -

 

- -

*         -Modèle de répertoire

- -

Saisissez -les modèles à utiliser pour renommer le répertoire à créer (exp. DIR-% ANNÉE% --% MOIS% et ainsi de suite). En appuyant sur les boutons des modèles, vous -pouvez entrer des mots-clés derrière le curseur.

- -

*         -%Year%

- -

Sera -remplacé par l'année de tournage. (Ex. 2018)

- -

*         -%Month%

- -

Sera remplacé -par le mois de tournage (Ex. 01)

- -

*         -%Day%

- -

Sera -remplacé par le jour du tournage (Ex. 29)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

Informations détaillées

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.html b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.html new file mode 100644 index 00000000..6b994f14 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_smb.html @@ -0,0 +1,147 @@ + + + + +SMBSync2_Help_FR_folder_smb +

Rechercher les serveurs SMB

+

Scanner le rテゥseau pour trouver le serveur SMB disponible

+

Nom du serveur/Adresse IP

+

Prテゥcisez le nom du serveur SMB ou l'adresse IP

+

Protocole SMB

+

Vous pouvez spテゥcifier le protocole SMB.

+
    +
  • Utiliser SMB V1

    +
  • +
  • Utiliser SMB V2 (2.01)

    +

    SMB min v2.1, max v2.1

    +
  • +
  • Utiliser SMB V2 (2.11)

    +

    SMB min v2.1, max v2.1

    +
  • +
  • Utiliser SMB V2/3 (2.12)

    +

    Prise en charge du protocole SMB V2 ou V3

    +

    SMB min v2.0.2, max v3.0

    +
  • +
  • Utiliser SMB V2/3 (2.14)

    +

    SMB min v2.0.2, max v3.0

    +
  • + +
+

Utiliser le protocole SMB2

+

Lorsqu'elle est cochテゥe, elle force setProperty("jcifs.smb.client.useSMB2Negotiation", "true") dans la fonction JcifsAuth(). Cela garantit l'utilisation du style de nテゥgociation SMB2 non rテゥtrocompatible, incompatible avec les versions antテゥrieures テ SMB 2.0.2

+

Exiger l'authentification SMB IPC

+

Lors de la vテゥrification, le client est tenu d'utiliser la signature SMB pour les connexions IPC$ comme transport DCERPC. Sinon, c'est autorisテゥ, mais pas obligatoire.

+

Saisir numテゥro de port

+

Prテゥcisez le numテゥro de port s'il est diffテゥrent de celui par dテゥfaut. S'il est laissテゥ vide, SMBSync2 essaiera de se connecter aux numテゥros de port standard par dテゥfaut 139 et 445.

+

Utiliser un compte d'authentification

+

Doit テェtre rempli si le serveur le demande.

+

Nom d'utilisateur

+

Nom de compte d'utilisateur pour se connecter テ l'hテエte. Un compte Microsoft ne peut pas テェtre utilisテゥ avec SMBSync2. Veuillez crテゥer un compte local et l'utiliser.

+

Mot de passe

+

Mot de passe du compte pour se connecter テ l'hテエte.

+

Afficher les dossiers partagテゥs

+

Se connecte テ l'hテエte spテゥcifiテゥ et liste toutes les actions disponibles pour le compte.

+

(Les noms des actions seront affichテゥs lorsque vous appuierez sur le bouton " Afficher les dossiers partagテゥs ". Cliquez sur le nom de l'action souhaitテゥe, puis appuyez sur OK pour valider)

+

Afficher les dossiers

+

Afficher la liste des annuaires sur l'action sテゥlectionnテゥe.

+

Lorsque vous appuyez sur le bouton "Rテゥpertoire de la liste", les rテゥpertoires sテゥlectionnables sont affichテゥs.

+

Appuyez sur l'annuaire que vous souhaitez choisir, puis sur le bouton "Sテゥlectionner". Pour rテゥcapituler

+

en passant par les sous-rテゥpertoires, appuyez sur le nom du rテゥpertoire.

+

Dossier

+

Veuillez entrer le rテゥpertoire cible ou le rテゥpertoire principal. Si vous indiquez un rテゥpertoire qui n'existe pas dans la cible, il sera crテゥテゥ lors de la synchronisation.

+

Ajouter des mots-clテゥs

+

%YEAR%, %MONTH%, %DAY% et %DAY-OF-YEAR% peuvent テェtre utilisテゥs comme noms de rテゥpertoires cibles. Les mots-clテゥs sont convertis en annテゥe, mois et jour de dテゥbut de la synchronisation.

+

+

Ces options ne sont affichテゥes que lorsque le type de synchronisation est Copier/Dテゥplacer.

+

Ajouter au nom du dossier la date/heure テ laquelle la photo/vidテゥo a テゥtテゥ prise (le mot-clテゥ sera remplacテゥ par la date et l'heure テ laquelle la photo/vidテゥo a テゥtテゥ prise)

+

Si elles sont vテゥrifiテゥes, les donnテゥes EXIF des supports sauvegardテゥs sont utilisテゥes pour obtenir la date et l'heure du tournage. L'horodatage des tirs est utilisテゥ et ajoutテゥ au dossier cible. Lorsque l'application ne parvient pas テ obtenir l'heure de tir テ partir des donnテゥes EXIF, elle utilise la derniティre heure modifiテゥe du fichier.

+

 

+

Les options suivantes ne sont affichテゥes que lorsque le type de synchronisation est Archive.

+

Si la date et l'heure ne peuvent pas テェtre dテゥterminテゥes depuis l'entテェte EXIF, afficher un message de confirmation

+

Si la case est cochテゥe, lorsque la date et l'heure de tournage ne peuvent pas テェtre obtenues テ partir du fichier EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la derniティre modification du fichier a テゥtテゥ utilisテゥe ou non. Si vous sテゥlectionnez Annuler dans la boテョte de dialogue de confirmation, le fichier ne sera pas archivテゥ.

+

Archiver les fichiers si:

+

Choisissez les critティres de temps pour dテゥterminer les fichiers テ archiver. La sテゥlection de l'heure est basテゥe sur la date de prise de vue de la photo/vidテゥo, ou sur la derniティre heure modifiテゥe s'il n'est pas possible d'acquテゥrir l'horodatage テ partir de l'en-tテェte EXIF.

+
    +
  • Toutes les dates

    +

    Archivez toutes les photos/vidテゥos

    +
  • +
  • Plus ancien que 7 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 7 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 30 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 30 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 60 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 60 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 90 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 90 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 180 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 180 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 1 annテゥe

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure d'un an ou plus テ l'heure actuelle.

    +
  • + +
+

Incrテゥmenter les noms de fichiers

+

Ajoutez le numテゥro de sテゥquence incrテゥmentielle au nom du fichier lors de l'archivage.

+
    +
  • Ne pas changer

    +

    Ne pas ajouter un numテゥro de sテゥquence.

    +
  • +
  • 3 chiffres (001-999)

    +

    Appendice 001-999

    +
  • +
  • 4 chiffres (0001-9999)

    +

    Appendice 0001-9999

    +
  • +
  • 5 chiffres (00001-99999)

    +

    Appendice 00001-99999

    +
  • +
  • 6 chiffres (000001-999999)

    +

    Appendice 000001-999999

    +
  • + +
+

Changer le nom du fichier avant de l'archiver dans le dossier cible

+

Si cette case est cochテゥe, le nom du fichier archivテゥ sera modifiテゥ en fonction des critティres que vous aurez choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier "Modティle de nom de fichier".

+

Modティle de nom de fichier

+

Saisissez les modティles テ utiliser pour renommer les fichiers archivテゥs. La valeur par dテゥfaut est DSC%DATE%%TIME%

+
    +
  • %Original name%

    +

    Sera remplacテゥ par le nom de fichier original lors de l'archivage des archives (Ex. DSC_0001)

    +
  • +
  • %Date%

    +

    Sera remplacテゥ par la date de tournage (ex. 2018-01-01)

    +
  • +
  • %Time%

    +

    Sera remplacテゥ par l'heure de tournage (ex. 13:01:10)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Crテゥer un dossier dont le nom comprend la date de capture des photos et y stocker les fichiers archivテゥs.

+

Crテゥe un rテゥpertoire horodatテゥ oテケ stocker les fichiers archivテゥs.

+

Lorsque cette option est cochテゥe, le "modティle de nom de rテゥpertoire" s'affiche.

+

Modティle de rテゥpertoire

+

Saisissez les modティles テ utiliser pour renommer le rテゥpertoire テ crテゥer (exp. DIR-% ANNテ右% -% MOIS% et ainsi de suite). En appuyant sur les boutons des modティles, vous pouvez entrer des mots-clテゥs derriティre le curseur.

+
    +
  • %Year%

    +

    Sera remplacテゥ par l'annテゥe de tournage. (Ex. 2018)

    +
  • +
  • %Month%

    +

    Sera remplacテゥ par le mois de tournage (Ex. 01)

    +
  • +
  • %Day%

    +

    Sera remplacテゥ par le jour du tournage (Ex. 29)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Informations dテゥtaillテゥes

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.htm deleted file mode 100644 index 1462e0fe..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.htm +++ /dev/null @@ -1,617 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Afficher les dossiers

- -

Afficher la liste des -répertoires sur le support USB.

- -

Lorsque vous appuyez sur le -bouton "list directory", les répertoires sélectionnables sont -affichés. Appuyez sur le répertoire que vous souhaitez choisir, puis sur le -bouton "Sélectionner". Pour revenir aux sous-répertoires, appuyez sur -le nom du répertoire.

- -

 

- -

*         -Ajouter des mots-clés

- -

%YEAR%, %MONTH%, %DAY% et -%DAY-OF-YEAR% peuvent être utilisés comme noms de répertoires cibles. Les -mots-clés sont convertis en année, mois et jour de début de la synchronisation.

- -

 

- -

Ces options ne sont affichées que lorsque le type de synchronisation -est Copier/Déplacer.

- -

*         -Ajouter au nom du dossier la -date/heure à laquelle la photo/vidéo a été prise (le mot-clé sera remplacé par -la date et l\'heure à laquelle la photo/vidéo a été prise)

- -

Si -elles sont vérifiées, les données EXIF des supports sauvegardés sont utilisées -pour obtenir la date et l'heure du tournage. L'horodatage des tirs est utilisé -et ajouté au dossier cible. Lorsque l'application ne parvient pas à obtenir -l'heure de tir à partir des données EXIF, elle utilise la dernière heure -modifiée du fichier.

- -

 

- -

*         -Répertoire

- -

Veuillez -entrer le répertoire cible ou le répertoire principal. Si vous indiquez un -répertoire qui n'existe pas dans la cible, il sera créé lors de la -synchronisation.

- -

 

- -

*         -Choisir le dossier sur le stockage USB

- -

Sélectionnez -le répertoire racine du support USB pour accéder au stockage USB. Si vous ne -pouvez pas le sélectionner, veuillez envoyer les informations système au -développeur avec "Menu -> System Info".

- -

Le -support USB ne peut être utilisé que s'il existe un point de montage (exp. -/storage/0123-0123, etc.) correspondant à l'UUID du support USB.

- -

 

- -

Les options suivantes ne sont affichées que lorsque le type de -synchronisation est Archive.

- -

*         -Si la date et l'heure ne peuvent pas être déterminées depuis -l'entête EXIF, afficher un message de confirmation.

- -

Si la case est cochée, lorsque -la date et l'heure de tournage ne peuvent pas être obtenues à partir du fichier -EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la -dernière modification du fichier a été utilisée ou non. Si vous sélectionnez -Annuler dans la boîte de dialogue de confirmation, le fichier ne sera pas -archivé.

- -

 

- -

*         -Archiver les fichiers si:

- -

Choisissez les critères de -temps pour déterminer les fichiers à archiver. La sélection de l'heure est -basée sur la date de prise de vue de la photo/vidéo, ou sur la dernière heure -modifiée s'il n'est pas possible d'acquérir l'horodatage à partir de l'en-tête -EXIF.

- -

*         -Toutes les dates

- -

Archivez toutes les -photos/vidéos

- -

*         -Plus ancien que 7 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 7 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 30 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 30 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 60 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 60 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 90 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 90 jours ou plus à l'heure actuelle.

- -

*         -Plus ancien que 180 jours

- -

N'archivez que les fichiers -dont la date de tournage est antérieure de 180 jours ou plus à l'heure -actuelle.

- -

*         -Plus ancien que 1 année

- -

N'archivez que les fichiers -dont la date de tournage est antérieure d'un an ou plus à l'heure actuelle.

- -

 

- -

*         -Incrémenter les noms de fichiers

- -

Ajoutez le numéro de séquence -incrémentielle au nom du fichier lors de l'archivage.

- -

*         -Ne pas changer

- -

Ne pas ajouter un numéro de -séquence.

- -

*         -3 chiffres (001-999)

- -

Appendice 001-999

- -

*         -4 chiffres (0001-9999)

- -

Appendice 0001-9999

- -

*         -5 chiffres (00001-99999)

- -

Appendice 00001-99999

- -

*         -6 chiffres (000001-999999)

- -

Appendice 000001-999999

- -

 

- -

*         -Changer le nom du fichier avant de l'archiver dans le dossier -cible

- -

Si cette case est cochée, le -nom du fichier archivé sera modifié en fonction des critères que vous aurez -choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier -"Modèle de nom de fichier".

- -

 

- -

*         -Modèle de nom de fichier

- -

Saisissez -les modèles à utiliser pour renommer les fichiers archivés. La valeur par -défaut est DSC_%DATE%_%TIME%

- -

*         -%Original name%

- -

Sera remplacé par le nom de -fichier original lors de l'archivage des archives (Ex. DSC_0001)

- -

*         -%Date%

- -

Sera remplacé par la date de -tournage (ex. 2018-01-01)

- -

*         -%Time%

- -

Sera remplacé par l'heure de -tournage (ex. 13:01:10)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

*         -Créer un dossier dont le nom comprend la date de capture des -photos et y stocker les fichiers archivés.

- -

Crée un -répertoire horodaté où stocker les fichiers archivés.

- -

Lorsque -cette option est cochée, le "modèle de nom de répertoire" s'affiche.

- -

 

- -

*         -Modèle de répertoire

- -

Saisissez -les modèles à utiliser pour renommer le répertoire à créer (exp. DIR-% ANNÉE% --% MOIS% et ainsi de suite). En appuyant sur les boutons des modèles, vous -pouvez entrer des mots-clés derrière le curseur.

- -

*         -%Year%

- -

Sera -remplacé par l'année de tournage. (Ex. 2018)

- -

*         -%Month%

- -

Sera -remplacé par le mois de tournage (Ex. 01)

- -

*         -%Day%

- -

Sera -remplacé par le jour du tournage (Ex. 29)

- -

 

- -

La -dernière ligne de l'écran indique à quoi ressembleront votre dossier cible et -le nom du fichier une fois archivé.

- -

 

- -

Informations détaillées

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.html b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.html new file mode 100644 index 00000000..44d48eb5 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_usb.html @@ -0,0 +1,107 @@ + + + + +SMBSync2_Help_FR_folder_usb +

Afficher les dossiers

+

Afficher la liste des rテゥpertoires sur le support USB. +Lorsque vous appuyez sur le bouton "list directory", les rテゥpertoires sテゥlectionnables sont affichテゥs. Appuyez sur le rテゥpertoire que vous souhaitez choisir, puis sur le bouton "Sテゥlectionner". Pour revenir aux sous-rテゥpertoires, appuyez sur le nom du rテゥpertoire.

+

Ajouter des mots-clテゥs

+

%YEAR%, %MONTH%, %DAY% et %DAY-OF-YEAR% peuvent テェtre utilisテゥs comme noms de rテゥpertoires cibles. Les mots-clテゥs sont convertis en annテゥe, mois et jour de dテゥbut de la synchronisation.

+

Ces options ne sont affichテゥes que lorsque le type de synchronisation est Copier/Dテゥplacer.

+

Ajouter au nom du dossier la date/heure テ laquelle la photo/vidテゥo a テゥtテゥ prise (le mot-clテゥ sera remplacテゥ par la date et l'heure テ laquelle la photo/vidテゥo a テゥtテゥ prise)

+

Si elles sont vテゥrifiテゥes, les donnテゥes EXIF des supports sauvegardテゥs sont utilisテゥes pour obtenir la date et l'heure du tournage. L'horodatage des tirs est utilisテゥ et ajoutテゥ au dossier cible. Lorsque l'application ne parvient pas テ obtenir l'heure de tir テ partir des donnテゥes EXIF, elle utilise la derniティre heure modifiテゥe du fichier.

+

Rテゥpertoire

+

Veuillez entrer le rテゥpertoire cible ou le rテゥpertoire principal. Si vous indiquez un rテゥpertoire qui n'existe pas dans la cible, il sera crテゥテゥ lors de la synchronisation.

+

Choisir le dossier sur le stockage USB

+

Sテゥlectionnez le rテゥpertoire racine du support USB pour accテゥder au stockage USB. Si vous ne pouvez pas le sテゥlectionner, veuillez envoyer les informations systティme au dテゥveloppeur avec "Menu -> System Info". +Le support USB ne peut テェtre utilisテゥ que s'il existe un point de montage (exp. /storage/0123-0123, etc.) correspondant テ l'UUID du support USB.

+

Les options suivantes ne sont affichテゥes que lorsque le type de synchronisation est Archive.

+

Si la date et l'heure ne peuvent pas テェtre dテゥterminテゥes depuis l'entテェte EXIF, afficher un message de confirmation.

+

Si la case est cochテゥe, lorsque la date et l'heure de tournage ne peuvent pas テェtre obtenues テ partir du fichier EXIF, un message de confirmation s'affiche pour indiquer si l'heure de la derniティre modification du fichier a テゥtテゥ utilisテゥe ou non. Si vous sテゥlectionnez Annuler dans la boテョte de dialogue de confirmation, le fichier ne sera pas archivテゥ.

+

Archiver les fichiers si:

+

Choisissez les critティres de temps pour dテゥterminer les fichiers テ archiver. La sテゥlection de l'heure est basテゥe sur la date de prise de vue de la photo/vidテゥo, ou sur la derniティre heure modifiテゥe s'il n'est pas possible d'acquテゥrir l'horodatage テ partir de l'en-tテェte EXIF.

+
    +
  • Toutes les dates +Archivez toutes les photos/vidテゥos

    +
  • +
  • Plus ancien que 7 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 7 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 30 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 30 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 60 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 60 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 90 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 90 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 180 jours

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure de 180 jours ou plus テ l'heure actuelle.

    +
  • +
  • Plus ancien que 1 annテゥe

    +

    N'archivez que les fichiers dont la date de tournage est antテゥrieure d'un an ou plus テ l'heure actuelle.

    +
  • + +
+

Incrテゥmenter les noms de fichiers

+

Ajoutez le numテゥro de sテゥquence incrテゥmentielle au nom du fichier lors de l'archivage.

+
    +
  • Ne pas changer

    +

    Ne pas ajouter un numテゥro de sテゥquence.

    +
  • +
  • 3 chiffres (001-999)

    +

    Appendice 001-999

    +
  • +
  • 4 chiffres (0001-9999)

    +

    Appendice 0001-9999

    +
  • +
  • 5 chiffres (00001-99999)

    +

    Appendice 00001-99999

    +
  • +
  • 6 chiffres (000001-999999)

    +

    Appendice 000001-999999

    +
  • + +
+

Changer le nom du fichier avant de l'archiver dans le dossier cible

+

Si cette case est cochテゥe, le nom du fichier archivテゥ sera modifiテゥ en fonction des critティres que vous aurez choisis. Vous pouvez ajouter la date et l'heure dans le nom du fichier "Modティle de nom de fichier".

+

Modティle de nom de fichier

+

Saisissez les modティles テ utiliser pour renommer les fichiers archivテゥs. La valeur par dテゥfaut est DSC%DATE%%TIME%

+
    +
  • %Original name%

    +

    Sera remplacテゥ par le nom de fichier original lors de l'archivage des archives (Ex. DSC_0001)

    +
  • +
  • %Date%

    +

    Sera remplacテゥ par la date de tournage (ex. 2018-01-01)

    +
  • +
  • %Time%

    +

    Sera remplacテゥ par l'heure de tournage (ex. 13:01:10)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Crテゥer un dossier dont le nom comprend la date de capture des photos et y stocker les fichiers archivテゥs.

+

Crテゥe un rテゥpertoire horodatテゥ oテケ stocker les fichiers archivテゥs.

+

Lorsque cette option est cochテゥe, le "modティle de nom de rテゥpertoire" s'affiche.

+

Modティle de rテゥpertoire

+

Saisissez les modティles テ utiliser pour renommer le rテゥpertoire テ crテゥer (exp. DIR-% ANNテ右% -% MOIS% et ainsi de suite). En appuyant sur les boutons des modティles, vous pouvez entrer des mots-clテゥs derriティre le curseur.

+
    +
  • %Year%

    +

    Sera remplacテゥ par l'annテゥe de tournage. (Ex. 2018)

    +
  • +
  • %Month%

    +

    Sera remplacテゥ par le mois de tournage (Ex. 01)

    +
  • +
  • %Day%

    +

    Sera remplacテゥ par le jour du tournage (Ex. 29)

    +
  • + +
+

La derniティre ligne de l'テゥcran indique テ quoi ressembleront votre dossier cible et le nom du fichier une fois archivテゥ.

+

Informations dテゥtaillテゥes

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.htm b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.htm deleted file mode 100644 index 2cfd7e45..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.htm +++ /dev/null @@ -1,386 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Point de montage

- -

Sélectionnez le point de montage où vous souhaitez -stocker le fichier ZIP.

- -

 

- -

*         -Enregistrer le fichier ZIP sur la carte SD

- -

Vérifiez que le fichier ZIP est -bien enregistré dans la SDCARD. Sinon, il sera sauvegardé dans le stockage -interne.

- -

 

- -

*         -Synchronisation impossible sans autoriser l\'accès en écriture à -la carte SD

- -

Appuyez sur pour afficher -l'écran de sélection afin de donner l'accès et les droits d'écriture à la -SDCARD.

- -

 

- -

*         -Afficher les fichiers

- -

Afficher la liste des -répertoires et des fichiers dans le dossier sélectionné.

- -

 

- -

*         -Fichier Zip

- -

Précisez le nom du fichier ZIP -cible.

- -

 

- -

*         -Ajouter des mots-clés

- -

%YEAR%, %MONTH%, %DAY% et -%DAY-OF-YEAR% peuvent être utilisés comme noms de répertoires cibles. Les -mots-clés sont convertis en année, mois et jour de début de la synchronisation.

- -

 

- -

*         -Niveau de compression

- -

Sélectionnez le niveau de compression -ZIP. Les niveaux de compression les plus élevés sont les plus lents.

- -

 

- -

*         -Méthode de cryptage

- -

Sélectionnez la méthode de -cryptage pour le fichier ZIP.

- -

 

- -

*         -Mot de passe et confirmation du mot de passe

- -

Précisez le mot de passe de -cryptage.

- -

 

- -

Remarque : actuellement, lorsque le ZIP est sélectionné -comme cible, SMBSync2 ne prend en charge que le stockage interne comme maître. -Les supports USB, SMB et SD externe ne peuvent pas être utilisés comme stockage -maître lorsque la cible ZIP est sélectionnée.

- -

 

- -

Informations détaillées

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.html b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.html new file mode 100644 index 00000000..5f182739 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_FR_folder_zip.html @@ -0,0 +1,30 @@ + + + + +SMBSync2_Help_FR_folder_zip +

Point de montage

+

Sテゥlectionnez le point de montage oテケ vous souhaitez stocker le fichier ZIP.

+

Enregistrer le fichier ZIP sur la carte SD

+

Vテゥrifiez que le fichier ZIP est bien enregistrテゥ dans la SDCARD. Sinon, il sera sauvegardテゥ dans le stockage interne.

+

Synchronisation impossible sans autoriser l'accティs en テゥcriture テ la carte SD

+

Appuyez sur pour afficher l'テゥcran de sテゥlection afin de donner l'accティs et les droits d'テゥcriture テ la SDCARD.

+

Afficher les fichiers

+

Afficher la liste des rテゥpertoires et des fichiers dans le dossier sテゥlectionnテゥ.

+

Fichier Zip

+

Prテゥcisez le nom du fichier ZIP cible.

+

Ajouter des mots-clテゥs

+

%YEAR%, %MONTH%, %DAY% et %DAY-OF-YEAR% peuvent テェtre utilisテゥs comme noms de rテゥpertoires cibles. Les mots-clテゥs sont convertis en annテゥe, mois et jour de dテゥbut de la synchronisation.

+

Niveau de compression

+

Sテゥlectionnez le niveau de compression ZIP. Les niveaux de compression les plus テゥlevテゥs sont les plus lents.

+

Mテゥthode de cryptage

+

Sテゥlectionnez la mテゥthode de cryptage pour le fichier ZIP.

+

Mot de passe et confirmation du mot de passe

+

Prテゥcisez le mot de passe de cryptage. +Remarque : actuellement, lorsque le ZIP est sテゥlectionnテゥ comme cible, SMBSync2 ne prend en charge que le stockage interne comme maテョtre. Les supports USB, SMB et SD externe ne peuvent pas テェtre utilisテゥs comme stockage maテョtre lorsque la cible ZIP est sテゥlectionnテゥe.

+

Informations dテゥtaillテゥes

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.htm b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.htm deleted file mode 100644 index 750e2c8c..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.htm +++ /dev/null @@ -1,998 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Mode Test

- -

Lors de la vérification, aucun -fichier n'est supprimé, copié ou écrasé. Aucune modification n'est apportée à -vos fichiers, tant sur la cible que sur le maître. Veuillez utiliser le mode -Test pour vérifier les fichiers qui seront supprimés/copiés/remplacés pendant -la tâche de synchronisation réelle. Les opérations effectuées sur les fichiers -apparaîtront dans l'onglet Messages.

- -

 

- -

*         -Synchronisation Auto

- -

Si elle est cochée, la tâche -peut être lancée automatiquement à des intervalles planifiés dans le -programmateur. Les tâches qui sont réglées sur la synchronisation automatique -démarrent lorsque vous appuyez sur le bouton de synchronisation en haut à -droite de l'écran principal de l'application.

- -

 

- -

*         -Nom de la tâche de synchronisation

- -

Indiquez un nom pour la tâche. -Le nom de la tâche de synchronisation n'est pas sensible à la casse.

- -

 

- -

*         -Mode de sync

- -

Les modes de synchronisation -actuellement pris en charge sont Mirror, Copy, Move ou Archive.

- -

 

- -

*         -Miroir

- -

Le dossier cible est conservé comme une copie -exacte du dossier principal. Si un fichier est différent entre le dossier -principal et le dossier cible, le fichier principal écrase le fichier cible. -Les dossiers et fichiers non présents sur la cible sont copiés à partir du -master. Les fichiers et dossiers qui n'existent pas sur le master sont -également supprimés de la cible. Seuls les fichiers modifiés (par la taille -et/ou la date/heure) sont mis à jour dans la cible.

- -

*         -Déplacer

- -

Si -un fichier est différent entre le maître et la cible, le fichier sur le maître -écrase le fichier sur la cible. Une fois copiés sur la cible, les fichiers et -les dossiers sont supprimés du master (comme la commande move).

- -

Seuls les fichiers modifiés (par la taille -et/ou la date/heure) sont copiés dans la cible. Les fichiers identiques, sur la -base des critères de comparaison sélectionnés, sont supprimés du fichier maître -sans être copiés. Les fichiers et dossiers de la cible, non présents sur le -master, sont évidemment préservés.

- -

*         -Copier

- -

Même -chose que pour Move, mais les fichiers ne sont pas supprimés du master après -avoir été copiés.

- -

Si -un fichier est différent entre le master et la cible, le fichier du master -écrase le fichier de la cible. Une fois copiés sur la cible, les fichiers et -les dossiers sont conservés sur le master (comme une commande de copie).

- -

Seuls les fichiers modifiés (par la taille -et/ou la date/heure) sont copiés vers la cible. Les fichiers identiques, sur la -base des critères de comparaison sélectionnés, sont ignorés et ne sont pas -copiés à nouveau.

- -

*         -Archiver

- -

Archivez des photos et des vidéos en les -déplaçant du dossier principal au dossier cible. Des critères spécifiques aux -médias peuvent être spécifiés pour l'archivage : date/heure de tournage, date -et heure de la dernière exécution de l'archive (par exemple 7 jours ou plus tôt -ou 30 jours ou plus tôt). Le ZIP ne peut pas être spécifié comme cible pour les -opérations d'archivage.

- -

 

- -

Comparer -les critères:

- -

Sur la base de ces critères, les dossiers sont considérés -comme différents :

- -

1.    Le nom du -fichier/dossier n'existe que sur le maître ou la cible, et non sur les deux -côtés

- -

2.    Les fichiers ont -des tailles différentes

- -

3.    Les fichiers ont -un horodatage différent (date et heure de la dernière modification)

- -

Consultez les options avancées ci-dessous pour obtenir des -informations plus détaillées sur les critères de comparaison et les paramètres -plus granulaires.

- -

 

- -

*         -Inverser les dossiers source et destination

- -

Échangez les dossiers maître et -cible : le maître devient la cible et la cible est changée en maître.

- -

 

- -

*         -Dossier Maitre (Source)

- -

Appuyez -sur l'icône/nom du stockage pour modifier le dossier principal.

- -

 

- -

*         -Dossier Cible (Destination)

- -

Appuyez -sur l'icône/nom du stockage pour modifier le dossier cible.

- -

 

- -

*         -Filtre de fichiers / Sélectionner les fichiers à synchroniser

- -

Si cette option n'est pas -cochée, tous les fichiers sont synchronisés. Si vous cochez le filtre de -fichiers, vous obtenez les options suivantes :

- -

*         -Synchro des fichiers audio

- -

Une -fois vérifiée, la synchronisation inclura les fichiers avec les extensions -suivantes :

- -

aac, aif, aifc, aiff, flac, kar, -m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

- -

*         -Synchro des fichiers images

- -

Une fois vérifiée, la -synchronisation inclura les fichiers avec les extensions suivantes :

- -

bmp, cgm, djv, djvu, gif, ico, -ief, jpe, jpeg, jpg, pbm, pgm, png, tif, tiff,

- -

*         -Synchro des fichiers vidéo

- -

Une fois vérifiée, la -synchronisation inclura les fichiers avec les extensions suivantes :

- -

avi, m4u, mov, mp4, movie, -mpe, mpeg, mpg, mxu, qt, wmv

- -

*         -Filtre de fichiers

- -

Il s'agit d'un filtre personnalisé -d'inclusion/exclusion de fichiers. Vous pouvez sélectionner le nom et -l'extension des fichiers que vous voulez exclure ou inclure du processus de -synchronisation.

- -

Les caractères génériques comme *.docx sont pris en -charge.

- -

 

- -

*         -Filtre de fichiers / Sélectionner les sous-dossiers

- -

Si la case n'est pas cochée, -tous les dossiers sont synchronisés. Si vous cochez le filtre des -sous-répertoires, vous obtenez les options suivantes :

- -

*         -Filtre de dossiers

- -

Il s'agit d'un filtre -personnalisé d'inclusion/exclusion de répertoire. Vous pouvez sélectionner le -nom des dossiers que vous souhaitez exclure ou inclure du processus de synchronisation. -

- -

Les caractères génériques -comme /*cahe/ sont pris en charge.

- -

 

- -

*         -Démarrer la synchronisation seulement si l'appareil est en charge

- -

Les -tâches planifiées par Auto Sync ne démarrent pas si l'appareil ne se charge -pas. Il est toujours possible de les démarrer manuellement.

- -

 

- -

*         -Synchroniser les fichiers situés dans la racine du dossier source -(si décoché, seuls les dossiers et leurs fichiers/sous-dossiers sont -synchronisés)

- -

Si la case n'est pas cochée, -seuls les dossiers et leurs fichiers/sous-dossiers sous le répertoire principal -sont synchronisés. Par défaut, il est coché et les fichiers situés directement -à la racine du répertoire principal seront également synchronisés.

- -

 

- -

*         -Confirmer avant de remplacer/supprimer

- -

Lorsqu'elle est cochée, elle -affiche un dialogue de confirmation avant d'écraser ou de supprimer des -fichiers.

- -

 

- -

*         -Options Wifi AP

- -

Ø  Même si Wifi éteint:essaiera de démarrer la -synchronisation même si le Wifi est désactivé

- -

Ø  Tous les réseaux:se synchronise uniquement lorsqu'il -est connecté à un réseau wifi. Il acceptera n'importe quel nom de SSID WLAN.

- -

Ø  Wifi Sélectionnés:ne démarre la synchronisation que si -le Wifi est connecté à un SSID WLAN dans la liste que vous pouvez spécifier. -Vous pouvez également ajouter automatiquement le SSID actuellement connecté.

- -

Ø  Wifi avec IP privée:vous ne pouvez lancer la -synchronisation que si l'adresse IP attribuée au réseau Wifi se situe dans les -plages suivantes : 10.0.0.0 - 10.255.255.255, 172.16.0.0 - 172.31.255.255 ou -192.168.0.0 - 192.168.255.255.

- -

Ø  Liste d'adresse IP: vous ne pouvez commencer la -synchronisation que si l'adresse IP WiFi correspond à l'une des adresses -spécifiées. Vous pouvez également ajouter directement l'adresse IP actuelle à -laquelle votre appareil est connecté via la liste de sélection des adresses IP.

- -

 

- -

*         -Ignorer la tâche si le WLAN n'est pas connecté au point d'accès -spécifié, ou que l'adresse IP ne correspond pas à celle spécifiée.

- -

Auto Sync sautera la tâche -si elle ne correspond pas aux critères spécifiés.

- -

 

- -

*         -Autoriser la connexion aux adresses IP publiques

- -

La -synchronisation sera autorisée chaque fois que le Wifi est connecté à n'importe -quel réseau, même sur des plages IP publiques (comme dans un Wifi public).

- -

 

- -

*         -Options avancées

- -

Veuillez l'utiliser lorsque vous définissez des options détaillées.

- -

 

- -

*         -Inclure les sous-dossiers

- -

It -will recursively include subdirectories under the specified master folder.

- -

 

- -

*         -Inclure les dossiers vides

- -

Synchronise les répertoires -vides (même si un répertoire est vide sur le master, il sera créé sur la -cible). Si elle n'est pas cochée, les répertoires vides sur le master sont -ignorés.

- -

 

- -

*         -Inclure les dossiers cachés

- -

Lorsqu'elle est cochée, Sync inclura les dossiers linux -cachés (ceux dont le nom commence par un point). Notez que dans Windows et -Samba, l'attribut caché n'est pas défini par le nom du dossier. Ainsi, le -dossier synchronisé sur la cible SMB/Windows n'aura pas l'attribut caché host.

- -

 

- -

*         -Inclure les fichiers cachés

- -

Lorsqu'il -est vérifié, Sync inclura les fichiers linux cachés (ceux dont le nom commence -par un point). Notez que dans Windows et Samba, l'attribut caché n'est pas -défini par le nom du fichier. Ainsi, le fichier synchronisé sur la cible -SMB/Windows n'aura pas l'attribut caché de l'hôte.

- -

 

- -

*         -Remplacer les fichiers destination

- -

If unchecked, files on the -target will never be overwritten even if the compare criteria by size and time -are different.

- -

 

- -

*         -Utiliser le filtre amélioré de sélection de dossiers

- -

If the upper directory is -excluded by a filter while one of its sub-directories is selected/included, the -sub-directories of the selected folder will be synchronized.

- -

 

- -

*         -Réessayer en cas d'erreur de connexion (uniquement pour les -actions des SMB)

- -

On server-side -connection errors, SMBSync2 will try again the synchronization for a maximum of -3 times at a 30 seconds interval.

- -

 

- -

*         -Limiter le cache SMB E/S en écriture à 16Ko (uniquement pour les -actions des SMB)

- -

Veuillez essayer si vous obtenez une erreur "Access is -denied" lorsque vous écrivez dans le dossier PC/NAS.

- -

Lorsqu'il -est vérifié, il limite le tampon d'entrée/sortie à 16KB pour l'écriture des -opérations sur l'hôte SMB.

- -

 

- -

*         -Ne pas créer de fichier temporaire avant l'écriture dans le -dossier SMB (uniquement pour les actions des SMB)

- -

Vérifié -par défaut (recommandé). Lorsqu'il est copié sur l'hôte SMB, le fichier sera -copié dans un dossier temporaire de l'hôte. Une fois l'opération de copie -réussie, le fichier temporaire est déplacé vers sa destination finale en -écrasant le fichier cible. Si la case n'est pas cochée, le fichier cible sur -l'hôte est immédiatement écrasé au début de la copie. Si une erreur de -connexion se produit, le fichier sur l'hôte reste corrompu jusqu'à la prochaine -synchronisation.

- -

 

- -

*         -Ne pas changer la date de dernière modification du fichier -destination pour qu'elle soit identique à la source

- -

Veuillez l'activer si vous -obtenez une erreur telle que SmbFile#setLastModified()/File#setLastModified() -échoue. Cela signifie que l'hôte distant n'autorise pas le paramétrage du -fichier de la dernière modification. Si cette case n'est pas cochée, la dernière -heure de modification du fichier copié sur la cible sera fixée à l'heure à -laquelle il a été copié / synchronisé. Cela signifie que le fichier cible -apparaîtra plus récent que le fichier maître.

- -

Pour les prochaines -synchronisations, vous pouvez :

- -

·         -vous en tenir à une comparaison par taille uniquement, ou

- -

·         -vous pouvez activer l'option "Ne pas écraser le fichier de -destination s'il est plus récent que le fichier source" pour ne copier que -les fichiers modifiés ultérieurement sur le master, ou

- -

·         -vous pouvez activer l'option de tâche "Obtenir l'heure de -dernière modification des fichiers de la liste personnalisée de l'application -SMBSync2". Cependant, cette option n'est pas disponible actuellement si la -cible est SMB. La plupart des hôtes SMB prennent en charge la définition de -l'heure de dernière modification.

- -

 

- -

Voir ci-dessous pour des -informations détaillées sur chaque option.

- -

 

- -

*         -Obtenir la date de dernière modification des fichiers par une -liste interne de l'application

- -

Veuillez essayer de copier tous -les fichiers sur les fichiers cibles à chaque synchronisation.

- -

Cette option n'est disponible -pour l'utilisateur que lorsque la cible est le stockage interne. Pour les -autres types de stockage, SMBSync2 essaie de détecter automatiquement si la -cible prend en charge le paramétrage de la dernière modification du fichier. Si -ce n'est pas le cas, il utilisera automatiquement cette fonction intégrée. Une -exception est lorsque la cible est SMB, cette fonction ne sera pas utilisée. -Voir ci-dessus l'option "Ne pas définir l'heure de dernière modification -du fichier de destination pour qu'elle corresponde au fichier source" pour -d'autres solutions de contournement. Notez que la plupart des appareils -androïdes récents ne prennent pas en charge la mise à jour de l'heure de -dernière modification du fichier cible.

- -

Lors de la première -synchronisation, SMBSync2 stockera la liste des fichiers avec leurs horodatages -dans sa base de données (cf. 1.3). Comme la base de données doit être créée la -première fois, tous les fichiers ayant le même nom et la même taille seront à -nouveau écrasés par une copie complète du fichier maître lors de la première -synchronisation. Lors des synchronisations suivantes, la base de données sera -utilisée et l'écrasement de tous les fichiers de même nom et de même taille ne sera -plus effectué. La dernière heure de modification du fichier local est -enregistrée par le code propriétaire SMBSync2 (il ne repose pas sur la fonction -Java File#setLastModified()).

- -

 

- -

 

- -

*         -Supprimer les fichiers avant la sync (mode Miroir uniquement)

- -

Lorsqu'elle est cochée, les -répertoires et les fichiers qui sont présents sur le dossier cible mais qui -n'existent pas sur le master, seront d'abord supprimés. Ensuite, les fichiers -et les dossiers qui sont différents seront copiés sur la cible.

- -

Si le dossier maître est SMB, -le temps de traitement sera plus long car la structure des répertoires et leur -contenu sont scannés à travers le réseau. Il est fortement recommandé d'activer -l'option "Utiliser la négociation SMB2" car SMB1 sera très lent.

- -

 

- -

*         -Utiliser la taille des fichiers pour déterminer s'ils sont -différents

- -

Lors de la vérification, les -fichiers sont considérés comme différents s'ils diffèrent par leur taille.

- -

 

- -

*         -Comparaison uniquement par la taille des fichiers (les fichiers -sont considérés différents seulement si la taille de la source est supérieure à -celle de la destination)

- -

Les fichiers ne sont -considérés comme différents que si la taille de la source est supérieure à -celle de la destination. Cela désactivera la comparaison par temps de fichier.

- -

 

- -

*         -Utiliser la date de dernière modification pour déterminer si les -fichiers sont différents

- -

Lorsqu'ils -sont vérifiés, les fichiers sont considérés comme différents en fonction de la -date de leur dernière modification.

- -

 

- -

*         -Différence de temps tolérée (sec) entre les fichiers source et -destination

- -

Les fichiers sont considérés -comme identiques si la différence entre leurs derniers temps modifiés est -inférieure ou égale au temps sélectionné en secondes. Ils sont considérés comme -différents si la différence de temps entre les fichiers est supérieure à -l'heure sélectionnée. Les fichiers FAT et ExFAT ont besoin d'une tolérance -minimale de 2 secondes. Si 0 seconde est sélectionnée, les fichiers doivent -avoir exactement le même temps pour être considérés comme similaires.

- -

 

- -

*         -Fichier non synchronisé, car l'option "Ne pas remplacer le -fichier de destination s'il est plus récent que le fichier source" est -activée.

- -

Si -la case est cochée, le fichier ne sera écrasé que si le fichier principal est -plus récent que le fichier cible, même si la taille du fichier et les heures de -la dernière mise à jour sont différentes. Gardez à l'esprit que si vous changez -de fuseau horaire ou si les fichiers sont modifiés pendant la période -d'intervalle du changement d'heure d'été, le dernier fichier modifié pourrait -apparaître plus ancien que le fichier non mis à jour. Ceci est lié aux -différences de système de fichiers et seule une vérification manuelle avant -d'écraser le fichier évitera la perte de données. Il est généralement -recommandé de ne pas modifier les fichiers pendant l'intervalle de changement -d'heure d'été s'ils sont destinés à être auto-synchronisés.

- -

 

- -

*           -Ignorer la différence de temps liée au décalage de l'heure d'été

- -

Permet de sélectionner le -décalage horaire en minutes entre l'heure d'été et l'heure d'hiver. Les -fichiers sont considérés comme différents si le décalage horaire n'est pas -exactement égal à l'intervalle spécifié (+/- le "décalage horaire minimum -autorisé (en secondes)" spécifié dans l'option précédente)

- -

 

- -

*           -Ignorer les dossiers et fichiers dont le nom contient des -caractères invalides (", :, \, *, <, >, |)

- -

Si -elle est cochée, elle affichera un message d'avertissement et la -synchronisation se poursuivra sans traiter les répertoires/fichiers contenant -des caractères non valides.

- -

 

- -

*           -Supprimer le dossier source s'il est vide (uniquement en mode -Déplacer)

- -

Lorsque le mode de -synchronisation est "Move", après que les fichiers aient été déplacés -vers la cible, le dossier "Master" est également supprimé.

- -

 

- -

 

- -

 

- -

Informations détaillées

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.html b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.html new file mode 100644 index 00000000..1258d861 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_FR_task.html @@ -0,0 +1,163 @@ + + + + +SMBSync2_Help_FR_task +

Mode Test

+

Lors de la vテゥrification, aucun fichier n'est supprimテゥ, copiテゥ ou テゥcrasテゥ. Aucune modification n'est apportテゥe テ vos fichiers, tant sur la cible que sur le maテョtre. Veuillez utiliser le mode Test pour vテゥrifier les fichiers qui seront supprimテゥs/copiテゥs/remplacテゥs pendant la tテ「che de synchronisation rテゥelle. Les opテゥrations effectuテゥes sur les fichiers apparaテョtront dans l'onglet Messages.

+

Synchronisation Auto

+

Si elle est cochテゥe, la tテ「che peut テェtre lancテゥe automatiquement テ des intervalles planifiテゥs dans le programmateur. Les tテ「ches qui sont rテゥglテゥes sur la synchronisation automatique dテゥmarrent lorsque vous appuyez sur le bouton de synchronisation en haut テ droite de l'テゥcran principal de l'application.

+

Nom de la tテ「che de synchronisation

+

Indiquez un nom pour la tテ「che. Le nom de la tテ「che de synchronisation n'est pas sensible テ la casse.

+

Mode de sync

+

Les modes de synchronisation actuellement pris en charge sont Mirror, Copy, Move ou Archive. La synchronisation se fait dans une direction de la cible テ partir du maテョtre.

+
    +
  • Miroir

    +

    Le dossier cible est conservテゥ comme une copie exacte du dossier principal. Si un fichier est diffテゥrent entre le dossier principal et le dossier cible, le fichier principal テゥcrase le fichier cible. Les dossiers et fichiers non prテゥsents sur la cible sont copiテゥs テ partir du master. Les fichiers et dossiers qui n'existent pas sur le master sont テゥgalement supprimテゥs de la cible. Seuls les fichiers modifiテゥs (par la taille et/ou la date/heure) sont mis テ jour dans la cible.

    +
  • +
  • Dテゥplacer

    +

    Si un fichier est diffテゥrent entre le maテョtre et la cible, le fichier sur le maテョtre テゥcrase le fichier sur la cible. Une fois copiテゥs sur la cible, les fichiers et les dossiers sont supprimテゥs du master (comme la commande move).

    +

    Seuls les fichiers modifiテゥs (par la taille et/ou la date/heure) sont copiテゥs dans la cible. Les fichiers identiques, sur la base des critティres de comparaison sテゥlectionnテゥs, sont supprimテゥs du fichier maテョtre sans テェtre copiテゥs. Les fichiers et dossiers de la cible, non prテゥsents sur le master, sont テゥvidemment prテゥservテゥs.

    +
  • +
  • Copier

    +

    Mテェme chose que pour Move, mais les fichiers ne sont pas supprimテゥs du master aprティs avoir テゥtテゥ copiテゥs.

    +

    Si un fichier est diffテゥrent entre le master et la cible, le fichier du master テゥcrase le fichier de la cible. Une fois copiテゥs sur la cible, les fichiers et les dossiers sont conservテゥs sur le master (comme une commande de copie).

    +

    Seuls les fichiers modifiテゥs (par la taille et/ou la date/heure) sont copiテゥs vers la cible. Les fichiers identiques, sur la base des critティres de comparaison sテゥlectionnテゥs, sont ignorテゥs et ne sont pas copiテゥs テ nouveau.

    +
  • +
  • Archiver

    +

    Archivez des photos et des vidテゥos en les dテゥplaテァant du dossier principal au dossier cible. Des critティres spテゥcifiques aux mテゥdias peuvent テェtre spテゥcifiテゥs pour l'archivage : date/heure de tournage, date et heure de la derniティre exテゥcution de l'archive (par exemple 7 jours ou plus tテエt ou 30 jours ou plus tテエt). Le ZIP ne peut pas テェtre spテゥcifiテゥ comme cible pour les opテゥrations d'archivage.

    +
  • + +
+

Comparer les critティres:

+

Sur la base de ces critティres, les dossiers sont considテゥrテゥs comme diffテゥrents :

+
    +
  1. Le nom du fichier/dossier n'existe que sur le maテョtre ou la cible, et non sur les deux cテエtテゥs
  2. +
  3. Les fichiers ont des tailles diffテゥrentes
  4. +
  5. Les fichiers ont un horodatage diffテゥrent (date et heure de la derniティre modification)
  6. + +
+

Consultez les options avancテゥes ci-dessous pour obtenir des informations plus dテゥtaillテゥes sur les critティres de comparaison et les paramティtres plus granulaires.

+

+

Inverser les dossiers source et destination

+

テ営hangez les dossiers maテョtre et cible : le maテョtre devient la cible et la cible est changテゥe en maテョtre.

+

Dossier Maitre (Source)

+

Appuyez sur l'icテエne/nom du stockage pour modifier le dossier principal.

+

Dossier Cible (Destination)

+

Appuyez sur l'icテエne/nom du stockage pour modifier le dossier cible.

+

Filtre de fichiers / Sテゥlectionner les fichiers テ synchroniser

+

Si cette option n'est pas cochテゥe, tous les fichiers sont synchronisテゥs. Si vous cochez le filtre de fichiers, vous obtenez les options suivantes :

+
    +
  • Synchro des fichiers audio

    +

    Une fois vテゥrifiテゥe, la synchronisation inclura les fichiers avec les extensions suivantes :
    aac, aif, aifc, aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

    +
  • +
  • Synchro des fichiers images

    +

    Une fois vテゥrifiテゥe, la synchronisation inclura les fichiers avec les extensions suivantes :
    bmp, cgm, djv, djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png, pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, xbm, xpm, xwd

    +
  • +
  • Synchro des fichiers vidテゥo

    +

    Une fois vテゥrifiテゥe, la synchronisation inclura les fichiers avec les extensions suivantes :
    avi, m4u, mov, mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

    +
  • +
  • Filtre de fichiers

    +

    Il s'agit d'un filtre personnalisテゥ d'inclusion/exclusion de fichiers. Vous pouvez sテゥlectionner le nom et l'extension des fichiers que vous voulez exclure ou inclure du processus de synchronisation.

    +
  • + +
+

Les caractティres gテゥnテゥriques comme *.docx sont pris en charge.

+

+

Filtre de fichiers / Sテゥlectionner les sous-dossiers

+

Si la case n'est pas cochテゥe, tous les dossiers sont synchronisテゥs. Si vous cochez le filtre des sous-rテゥpertoires, vous obtenez les options suivantes :

+
    +
  • Filtre de dossiers

    +

    Il s'agit d'un filtre personnalisテゥ d'inclusion/exclusion de rテゥpertoire. Vous pouvez sテゥlectionner le nom des dossiers que vous souhaitez exclure ou inclure du processus de synchronisation.

    +

    Les caractティres gテゥnテゥriques comme /*cahe/ sont pris en charge.

    +
  • + +
+

Dテゥmarrer la synchronisation seulement si l'appareil est en charge

+

Les tテ「ches planifiテゥes par Auto Sync ne dテゥmarrent pas si l'appareil ne se charge pas. Il est toujours possible de les dテゥmarrer manuellement.

+

Synchroniser les fichiers situテゥs dans la racine du dossier source (si dテゥcochテゥ, seuls les dossiers et leurs fichiers/sous-dossiers sont synchronisテゥs)

+

Si la case n'est pas cochテゥe, seuls les dossiers et leurs fichiers/sous-dossiers sous le rテゥpertoire principal sont synchronisテゥs. Par dテゥfaut, il est cochテゥ et les fichiers situテゥs directement テ la racine du rテゥpertoire principal seront テゥgalement synchronisテゥs.

+

Confirmer avant de remplacer/supprimer

+

Lorsqu'elle est cochテゥe, elle affiche un dialogue de confirmation avant d'テゥcraser ou de supprimer des fichiers.

+

Options Wifi AP

+
    +
  • Mテェme si Wifi テゥteint:essaiera de dテゥmarrer la synchronisation mテェme si le Wifi est dテゥsactivテゥ
  • +
  • Tous les rテゥseaux:se synchronise uniquement lorsqu'il est connectテゥ テ un rテゥseau wifi. Il acceptera n'importe quel nom de SSID WLAN.
  • +
  • Wifi avec IP privテゥe:vous ne pouvez lancer la synchronisation que si l'adresse IP attribuテゥe au rテゥseau Wifi se situe dans les plages suivantes : 10.0.0.0 - 10.255.255.255, 172.16.0.0 - 172.31.255.255 ou 192.168.0.0 - 192.168.255.255.
  • +
  • Liste d'adresse IP: vous ne pouvez commencer la synchronisation que si l'adresse IP WiFi correspond テ l'une des adresses spテゥcifiテゥes. Vous pouvez テゥgalement ajouter directement l'adresse IP actuelle テ laquelle votre appareil est connectテゥ via la liste de sテゥlection des adresses IP.
    Vous pouvez utiliser des jokers pour le filtre. (par exemple, 192.168.100.*, 192.168.*)
  • + +
+

Il existe plusieurs faテァons de se synchroniser lors de la connexion テ un WiFi spテゥcifique. Voir la FAQ pour plus de dテゥtails.

+
    +
  1. Changez l'adresse IP de votre routeur WiFi pour une autre adresse que 192.168.0.0/24 et ajoutez-la テ la liste des adresses IP
  2. +
  3. Fixer une adresse IP du cテエtテゥ d'Android et l'enregistrer dans la liste des adresses IP
  4. + +
+

Sauter la tテ「che si l'adresse IP du WLAN ne correspond pas テ l'adresse IP spテゥcifiテゥe.

+

Auto Sync sautera la tテ「che si elle ne correspond pas aux critティres spテゥcifiテゥs.

+

Autoriser la connexion aux adresses IP publiques

+

La synchronisation sera autorisテゥe chaque fois que le Wifi est connectテゥ テ n'importe quel rテゥseau, mテェme sur des plages IP publiques (comme dans un Wifi public).

+

Options avancテゥes

+

Veuillez l'utiliser lorsque vous dテゥfinissez des options dテゥtaillテゥes.

+

Inclure les sous-dossiers

+

It will recursively include subdirectories under the specified master folder.

+

Inclure les dossiers vides

+

Synchronise les rテゥpertoires vides (mテェme si un rテゥpertoire est vide sur le master, il sera crテゥテゥ sur la cible). Si elle n'est pas cochテゥe, les rテゥpertoires vides sur le master sont ignorテゥs.

+

Inclure les dossiers cachテゥs

+

Lorsqu'elle est cochテゥe, Sync inclura les dossiers linux cachテゥs (ceux dont le nom commence par un point). Notez que dans Windows et Samba, l'attribut cachテゥ n'est pas dテゥfini par le nom du dossier. Ainsi, le dossier synchronisテゥ sur la cible SMB/Windows n'aura pas l'attribut cachテゥ host.

+

Inclure les fichiers cachテゥs

+

Lorsqu'il est vテゥrifiテゥ, Sync inclura les fichiers linux cachテゥs (ceux dont le nom commence par un point). Notez que dans Windows et Samba, l'attribut cachテゥ n'est pas dテゥfini par le nom du fichier. Ainsi, le fichier synchronisテゥ sur la cible SMB/Windows n'aura pas l'attribut cachテゥ de l'hテエte.

+

Remplacer les fichiers destination

+

If unchecked, files on the target will never be overwritten even if the compare criteria by size and time are different.

+

Utiliser le filtre amテゥliorテゥ de sテゥlection de dossiers

+

If the upper directory is excluded by a filter while one of its sub-directories is selected/included, the sub-directories of the selected folder will be synchronized.

+

Utiliser la version 2 des filtres

+

Aprティs l'avoir activテゥ, vous pouvez utiliser le nouveau filtre. Il se peut qu'il se comporte diffテゥremment de l'ancien filtre, c'est pourquoi nous vous invitons テ le tester minutieusement avant de l'utiliser.

+

Supprimer les fichiers avant la sync(mode Miroir uniquement)

+

On server-side connection errors, SMBSync2 will try again the synchronization for a maximum of 3 times at a 30 seconds interval.

+

Supprimer les rテゥpertoires et les fichiers exclus par les filtres

+

Si elle est activテゥe, elle supprime les rテゥpertoires/fichiers exclus du filtre.

+

Limiter le cache SMB E/S en テゥcriture テ 16Ko (uniquement pour les actions des SMB)

+

Veuillez essayer si vous obtenez une erreur "Access is denied" lorsque vous テゥcrivez dans le dossier PC/NAS.

+

Lorsqu'il est vテゥrifiテゥ, il limite le tampon d'entrテゥe/sortie テ 16KB pour l'テゥcriture des opテゥrations sur l'hテエte SMB.

+

Ne pas crテゥer de fichier temporaire avant l'テゥcriture dans le dossier SMB (uniquement pour les actions des SMB)

+

Vテゥrifiテゥ par dテゥfaut (recommandテゥ). Lorsqu'il est copiテゥ sur l'hテエte SMB, le fichier sera copiテゥ dans un dossier temporaire de l'hテエte. Une fois l'opテゥration de copie rテゥussie, le fichier temporaire est dテゥplacテゥ vers sa destination finale en テゥcrasant le fichier cible. Si la case n'est pas cochテゥe, le fichier cible sur l'hテエte est immテゥdiatement テゥcrasテゥ au dテゥbut de la copie. Si une erreur de connexion se produit, le fichier sur l'hテエte reste corrompu jusqu'テ la prochaine synchronisation.

+

Ne pas changer la date de derniティre modification du fichier destination pour qu'elle soit identique テ la source

+

Veuillez l'activer si vous obtenez une erreur telle que SmbFile#setLastModified()/File#setLastModified() テゥchoue. Cela signifie que l'hテエte distant n'autorise pas le paramテゥtrage du fichier de la derniティre modification. Si cette case n'est pas cochテゥe, la derniティre heure de modification du fichier copiテゥ sur la cible sera fixテゥe テ l'heure テ laquelle il a テゥtテゥ copiテゥ / synchronisテゥ. Cela signifie que le fichier cible apparaテョtra plus rテゥcent que le fichier maテョtre.

+

Pour les prochaines synchronisations, vous pouvez :

+
    +
  • vous en tenir テ une comparaison par taille uniquement, ou
  • +
  • vous pouvez activer l'option "Ne pas テゥcraser le fichier de destination s'il est plus rテゥcent que le fichier source" pour ne copier que les fichiers modifiテゥs ultテゥrieurement sur le master, ou
  • +
  • vous pouvez activer l'option de tテ「che "Obtenir l'heure de derniティre modification des fichiers de la liste personnalisテゥe de l'application SMBSync2". Cependant, cette option n'est pas disponible actuellement si la cible est SMB. La plupart des hテエtes SMB prennent en charge la dテゥfinition de l'heure de derniティre modification.
  • + +
+

Voir ci-dessous pour des informations dテゥtaillテゥes sur chaque option.

+

+

Obtenir la date de derniティre modification des fichiers par une liste interne de l'application

+

Veuillez essayer de copier tous les fichiers sur les fichiers cibles テ chaque synchronisation.

+

Cette option n'est disponible pour l'utilisateur que lorsque la cible est le stockage interne. Pour les autres types de stockage, SMBSync2 essaie de dテゥtecter automatiquement si la cible prend en charge le paramテゥtrage de la derniティre modification du fichier. Si ce n'est pas le cas, il utilisera automatiquement cette fonction intテゥgrテゥe. Une exception est lorsque la cible est SMB, cette fonction ne sera pas utilisテゥe. Voir ci-dessus l'option "Ne pas dテゥfinir l'heure de derniティre modification du fichier de destination pour qu'elle corresponde au fichier source" pour d'autres solutions de contournement. Notez que la plupart des appareils androテッdes rテゥcents ne prennent pas en charge la mise テ jour de l'heure de derniティre modification du fichier cible.

+

Lors de la premiティre synchronisation, SMBSync2 stockera la liste des fichiers avec leurs horodatages dans sa base de donnテゥes (cf. 1.3). Comme la base de donnテゥes doit テェtre crテゥテゥe la premiティre fois, tous les fichiers ayant le mテェme nom et la mテェme taille seront テ nouveau テゥcrasテゥs par une copie complティte du fichier maテョtre lors de la premiティre synchronisation. Lors des synchronisations suivantes, la base de donnテゥes sera utilisテゥe et l'テゥcrasement de tous les fichiers de mテェme nom et de mテェme taille ne sera plus effectuテゥ. La derniティre heure de modification du fichier local est enregistrテゥe par le code propriテゥtaire SMBSync2 (il ne repose pas sur la fonction Java File#setLastModified()).

+

Supprimer les fichiers avant la sync (mode Miroir uniquement)

+

Lorsqu'elle est cochテゥe, les rテゥpertoires et les fichiers qui sont prテゥsents sur le dossier cible mais qui n'existent pas sur le master, seront d'abord supprimテゥs. Ensuite, les fichiers et les dossiers qui sont diffテゥrents seront copiテゥs sur la cible.

+

Si le dossier maテョtre est SMB, le temps de traitement sera plus long car la structure des rテゥpertoires et leur contenu sont scannテゥs テ travers le rテゥseau. Il est fortement recommandテゥ d'activer l'option "Utiliser la nテゥgociation SMB2" car SMB1 sera trティs lent.

+

Utiliser la taille des fichiers pour dテゥterminer s'ils sont diffテゥrents

+

Lors de la vテゥrification, les fichiers sont considテゥrテゥs comme diffテゥrents s'ils diffティrent par leur taille.

+

Comparaison uniquement par la taille des fichiers (les fichiers sont considテゥrテゥs diffテゥrents seulement si la taille de la source est supテゥrieure テ celle de la destination)

+

Les fichiers ne sont considテゥrテゥs comme diffテゥrents que si la taille de la source est supテゥrieure テ celle de la destination. Cela dテゥsactivera la comparaison par temps de fichier.

+

Utiliser la date de derniティre modification pour dテゥterminer si les fichiers sont diffテゥrents

+

Lorsqu'ils sont vテゥrifiテゥs, les fichiers sont considテゥrテゥs comme diffテゥrents en fonction de la date de leur derniティre modification.

+

Diffテゥrence de temps tolテゥrテゥe (sec) entre les fichiers source et destination

+

Les fichiers sont considテゥrテゥs comme identiques si la diffテゥrence entre leurs derniers temps modifiテゥs est infテゥrieure ou テゥgale au temps sテゥlectionnテゥ en secondes. Ils sont considテゥrテゥs comme diffテゥrents si la diffテゥrence de temps entre les fichiers est supテゥrieure テ l'heure sテゥlectionnテゥe. Les fichiers FAT et ExFAT ont besoin d'une tolテゥrance minimale de 2 secondes. Si 0 seconde est sテゥlectionnテゥe, les fichiers doivent avoir exactement le mテェme temps pour テェtre considテゥrテゥs comme similaires.

+

Fichier non synchronisテゥ, car l'option "Ne pas remplacer le fichier de destination s'il est plus rテゥcent que le fichier source" est activテゥe.

+

Si la case est cochテゥe, le fichier ne sera テゥcrasテゥ que si le fichier principal est plus rテゥcent que le fichier cible, mテェme si la taille du fichier et les heures de la derniティre mise テ jour sont diffテゥrentes. Gardez テ l'esprit que si vous changez de fuseau horaire ou si les fichiers sont modifiテゥs pendant la pテゥriode d'intervalle du changement d'heure d'テゥtテゥ, le dernier fichier modifiテゥ pourrait apparaテョtre plus ancien que le fichier non mis テ jour. Ceci est liテゥ aux diffテゥrences de systティme de fichiers et seule une vテゥrification manuelle avant d'テゥcraser le fichier テゥvitera la perte de donnテゥes. Il est gテゥnテゥralement recommandテゥ de ne pas modifier les fichiers pendant l'intervalle de changement d'heure d'テゥtテゥ s'ils sont destinテゥs テ テェtre auto-synchronisテゥs.

+

Ignorer la diffテゥrence de temps liテゥe au dテゥcalage de l'heure d'テゥtテゥ

+

Permet de sテゥlectionner le dテゥcalage horaire en minutes entre l'heure d'テゥtテゥ et l'heure d'hiver. Les fichiers sont considテゥrテゥs comme diffテゥrents si le dテゥcalage horaire n'est pas exactement テゥgal テ l'intervalle spテゥcifiテゥ (+/- le "dテゥcalage horaire minimum autorisテゥ (en secondes)" spテゥcifiテゥ dans l'option prテゥcテゥdente)

+

Ignorer les dossiers et fichiers dont le nom contient des caractティres invalides (", :, \, *, <, >, |)

+

Si elle est cochテゥe, elle affichera un message d'avertissement et la synchronisation se poursuivra sans traiter les rテゥpertoires/fichiers contenant des caractティres non valides.

+

Supprimer le dossier source s'il est vide (uniquement en mode Dテゥplacer)

+

Lorsque le mode de synchronisation est "Move", aprティs que les fichiers aient テゥtテゥ dテゥplacテゥs vers la cible, le dossier "Master" est テゥgalement supprimテゥ.

+

Informations dテゥtaillテゥes

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_internal.html b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_internal.html new file mode 100644 index 00000000..5bbf64e1 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_internal.html @@ -0,0 +1,110 @@ + + + + +SMBSync2_Help_IT_folder_internal +

tipo memoria

+

Selezionare il punto di montaggio per lo stoccaggio interno.

+

Lista cartelle

+

Mostra l'elenco delle cartelle nella memoria interna. +Quando si preme il tasto elenco cartelle, vengono visualizzate le cartelle selezionabili. Premete sulla cartelle che volete scegliere e poi sul tasto "Seleziona". Per navigare attraverso le sottocartelle, toccate il nome della cartelle.

+

Cartelle

+

Si prega di inserire l'elenco di destinazione o l'elenco principale. Se si specifica una cartelle che non esiste nel target, questa verrテ creata durante la sincronizzazione.

+

Aggiungi parole chiave

+

%YEAR%, %MONTH%, %DAY% e %DAY-OF-YEAR% possono essere utilizzati come nomi di cartelle di destinazione. Le parole chiave vengono convertite nell'anno, nel mese e nel giorno in cui ティ iniziata la sincronizzazione.

+

Queste opzioni verranno mostrate solo quando il tipo di sync ティ Copia/Sposta.

+

Aggiungi tempo/data del sync nel nome della cartella (la parola chiave verrテ sostituita dall'ora e la data nel quale ティ stat eseguita la sync)

+

Se spuntata, i dati EXIF dei supporti di backup vengono utilizzati per ottenere la data e l'ora di scatto. Il timestamp della data e dell'ora di scatto viene utilizzato e allegato alla cartella di destinazione. Quando l'applicazione non ティ in grado di ottenere l'ora di scatto dall'EXIF, utilizza l'ultima ora di modifica del file.

+

Queste opzioni verranno mostrate solo quando il tipo di sync ティ Archivia.

+

Se l'ora e la data non possono essere determinate dai dati EXIF, mostra un messaggio di conferma

+

Se l'opzione ティ selezionata, quando la data e l'ora di scatto non possono essere acquisite da EXIF , viene visualizzato un messaggio di conferma dell'utilizzo o meno dell'ultima ora di modifica del file. Se si seleziona Annulla nella finestra di dialogo di conferma, il file non verrテ archiviato.

+

Archivia file se

+

Scegliere i criteri temporali per determinare quali file archiviare. La selezione dell'ora si basa sulla data di scatto delle foto/video o sull'ultima ora di modifica se non ティ possibile acquisire il timestamp dall'intestazione EXIF.

+
    +
  • Qualunque data (Tutti)

    +

    Archivia tutte le immagini/video

    +
  • +
  • Piテケ vecchio di 7 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 7 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 30 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 30 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 60 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 60 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 90 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 90 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 180 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 180 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 1 anno

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 1 anno o piテケ rispetto all'ora attuale

    +
  • + +
+

+

Nome file incrementale

+

Aggiungere il numero di sequenza incrementale al nome del file durante l'archiviazione.

+
    +
  • Non cambiare

    +

    Non aggiungere un numero progressivo

    +
  • +
  • 2 cifre (01-99)

    +

    Aggiungi 001-999

    +
  • +
  • 3 cifre (001-999)

    +

    Aggiungi 001-999

    +
  • +
  • 4 cifre (0001-9999)

    +

    Aggiungi 0001-9999

    +
  • +
  • 5 cifre (00001-99999)

    +

    Aggiungi 00001-99999

    +
  • +
  • 6 cifre (000001-999999)

    +

    Aggiungi 000001-999999

    +
  • + +
+

Cambia il nome del file prima di archiviarlo nella cartella destinazione

+

Se l'opzione ティ selezionata, il nome del file archiviato verrテ modificato in base ai criteri selezionati. Potete aggiungere la data e l'ora nel nome del file "Modello del nome del file".

+

Template nome file

+

Inserire gli schemi da utilizzare per rinominare i file archiviati. Il valore predefinito ティ DSC_%DATE%.

+
    +
  • %ORIGINAL-NAME%

    +

    Sarテ sostituito dal nome originale del file durante l'archiviazione dell'archivio (es. DSC_0001)

    +
  • +
  • %DATE%

    +

    Sarテ sostituito dalla data di scatto.(Es. 2018-01-01)

    +
  • +
  • %TIME%

    +

    Sarテ sostituito dal tempo di scatto.(Es. 13:01:10)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Crea una cartelle basata sull'ora di scatto per salvare i file

+

Crea una cartelle con indicazione dell'ora in cui memorizzare i file archiviati.

+

Quando viene selezionato, viene visualizzato il "Modello di nome della cartelle".

+

Template Cartelle

+

Inserire gli schemi da utilizzare per rinominare la cartelle da creare (exp. DIR-% YEAR% -% MONTH% e cosテャ via). Premendo i tasti dei modelli, potete inserire le parole chiave dietro il cursore.

+
    +
  • %YEAR%

    +

    Sarテ sostituito dall'anno di riprese. (Es. 2018)

    +
  • +
  • %MONTH%

    +

    Sarテ sostituito dal Mese di scatto (Es. 01)

    +
  • +
  • %DAY%

    +

    Sarテ sostituito dal giorno delle riprese (Es. 29)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Informazioni dettagliate

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_sdcard.html b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_sdcard.html new file mode 100644 index 00000000..5e94b6ec --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_sdcard.html @@ -0,0 +1,111 @@ + + + + +SMBSync2_Help_IT_folder_sdcard +

tipo memoria

+

Selezionare il punto di montaggio per lo stoccaggio interno.

+

Lista cartelle

+

Mostra l'elenco delle cartelle nella memoria interna. +Quando si preme il tasto elenco cartelle, vengono visualizzate le cartelle selezionabili. Premete sulla cartelle che volete scegliere e poi sul tasto "Seleziona". Per navigare attraverso le sottodirectory, toccate il nome della cartelle.

+

Aggiungi parole chiave

+

%YEAR%, %MONTH%, %DAY% e %DAY-OF-YEAR% possono essere utilizzati come nomi di cartelle di destinazione. Le parole chiave vengono convertite nell'anno, nel mese e nel giorno in cui ティ iniziata la sincronizzazione.

+

Queste opzioni vengono visualizzate solo quando il tipo di sincronizzazione ティ Copia/Sposta.

+

Aggiungi tempo/data del sync nel nome della cartella (la parola chiave verrテ sostituita dall'ora e la data nel quale ティ stat eseguita la sync)

+

Se spuntata, i dati EXIF dei supporti di backup vengono utilizzati per ottenere la data e l'ora di ripresa. Il timestamp della data e dell'ora di ripresa viene utilizzato e allegato alla cartella di destinazione. Quando l'applicazione non ティ in grado di ottenere l'ora di ripresa dall'EXIF, utilizza l'ultima ora modificata del file.

+

Cartelle

+

Si prega di inserire l'elenco di destinazione o l'elenco principale. Se si specifica una cartelle che non esiste nel target, questa verrテ creata durante la sincronizzazione.

+

Seleziona cartella SDCARD

+

Selezionare la cartelle principale SDCARD per accedere a SDCARD. Se non ティ possibile selezionarla, inviare le informazioni di sistema allo sviluppatore con "Menu -> Informazioni di sistema".

+

Le seguenti opzioni vengono visualizzate solo quando il tipo di sincronizzazione ティ Archivio.

+

Se l'ora e la data non possono essere determinate dai dati EXIF, mostra un messaggio di conferma

+

Se l'opzione ティ selezionata, quando la data e l'ora di scatto non possono essere acquisite da EXIF , viene visualizzato un messaggio di conferma dell'utilizzo o meno dell'ultima ora di modifica del file. Se si seleziona Annulla nella finestra di dialogo di conferma, il file non verrテ archiviato.

+

Archivia file se

+

Scegliere i criteri temporali per determinare quali file archiviare. La selezione dell'ora si basa sulla data di scatto delle foto/video o sull'ultima ora di modifica se non ティ possibile acquisire il timestamp dall'intestazione EXIF.

+
    +
  • Qualunque data (Tutti)

    +

    Archivia tutte le immagini/video

    +
  • +
  • Piテケ vecchio di 7 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 7 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 30 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 30 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 60 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 60 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 90 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 90 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 180 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 180 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 1 anno

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 1 anno o piテケ rispetto all'ora attuale

    +
  • + +
+

+

Nome file incrementale

+

Aggiungere il numero di sequenza incrementale al nome del file durante l'archiviazione.

+
    +
  • Non cambiare

    +

    Non aggiungere un numero progressivo

    +
  • +
  • 2 cifre (01-99)

    +

    Aggiungi 001-999

    +
  • +
  • 3 cifre (001-999)

    +

    Aggiungi 001-999

    +
  • +
  • 4 cifre (0001-9999)

    +

    Aggiungi 0001-9999

    +
  • +
  • 5 cifre (00001-99999)

    +

    Aggiungi 00001-99999

    +
  • +
  • 6 cifre (000001-999999)

    +

    Aggiungi 000001-999999

    +
  • + +
+

Cambia il nome del file prima di archiviarlo nella cartella destinazione

+

Se l'opzione ティ selezionata, il nome del file archiviato verrテ modificato in base ai criteri selezionati. Potete aggiungere la data e l'ora nel nome del file "Modello del nome del file".

+

Template nome file

+

Inserire gli schemi da utilizzare per rinominare i file archiviati. Il valore predefinito ティ DSC_%DATE%.

+
    +
  • %ORIGINAL-NAME%

    +

    Sarテ sostituito dal nome originale del file durante l'archiviazione dell'archivio (es. DSC_0001)

    +
  • +
  • %DATE%

    +

    Sarテ sostituito dalla data di scatto.(Es. 2018-01-01)

    +
  • +
  • %TIME%

    +

    Sarテ sostituito dal tempo di scatto.(Es. 13:01:10)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Crea una cartelle basata sull'ora di scatto per salvare i file

+

Crea una cartelle con indicazione dell'ora in cui memorizzare i file archiviati.

+

Quando viene selezionato, viene visualizzato il "Modello di nome della cartelle".

+

Template Cartelle

+

Inserire gli schemi da utilizzare per rinominare la cartelle da creare (exp. DIR-% YEAR% -% MONTH% e cosテャ via). Premendo i tasti dei modelli, potete inserire le parole chiave dietro il cursore.

+
    +
  • %YEAR%

    +

    Sarテ sostituito dall'anno di riprese. (Es. 2018)

    +
  • +
  • %MONTH%

    +

    Sarテ sostituito dal Mese di scatto (Es. 01)

    +
  • +
  • %DAY%

    +

    Sarテ sostituito dal giorno delle riprese (Es. 29)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Informazioni dettagliate

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_smb.html b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_smb.html new file mode 100644 index 00000000..bd0aa418 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_smb.html @@ -0,0 +1,149 @@ + + + + +SMBSync2_Help_IT_folder_smb +

Ricerca server SMB

+

Scansiona la rete per trovare il server SMB disponibile

+

Server host name/Indirizzo IP

+

Specificare il nome del server SMB o l'indirizzo IP

+

Protocollo SMB

+

テ possibile specificare il protocollo SMB.

+
    +
  • Usa SMB V1

    +
  • +
  • Usa SMB V2 (2.01)

    +

    SMB min v2.1, max v2.1

    +
  • +
  • Usa SMB V2 (2.11)

    +

    SMB min v2.1, max v2.1

    +
  • +
  • Usa SMB V2/3 (2.12)

    +

    Support SMB V2 or V3 protocol

    +

    SMB min v2.0.2, max v3.0

    +
  • +
  • Usa SMB V2/3 (2.14)

    +

    SMB min v2.0.2, max v3.0

    +
  • + +
+

Usa SMB2 negotiation

+

Se spuntata, costringerテ setProperty("jcifs.smb.client.useSMB2Negotiation", "true") nella funzione JcifsAuth(). Questo assicura l'uso di SMB2 non compatibile con lo stile di negoziazione non retrocompatibile, incompatibile con le versioni precedenti a SMB 2.0.2

+

SMB IPC Signing Enforced

+

Una volta controllato, il cliente ティ tenuto ad utilizzare la firma SMB per le connessioni IPC$ come trasporto DCERPC. Altrimenti ティ consentito, ma non richiesto.

+

Specifica numero porta

+

Specificare il numero di porta se diverso da quello predefinito. Se lasciato vuoto, SMBSync2 cercherテ di connettersi ai numeri di porta standard di default 139 e 445.

+

Usa nome account e password

+

Deve essere completato se richiesto dal server.

+

Nome utente

+

Nome dell'account utente per connettersi all'host. L'account Microsoft non puテイ essere usato con SMBSync2. Per favore crea un account locale ed usalo.

+

Password

+

Password per connettersi all'host.

+

Lista Condivisioni

+

Si collega all'host specificato ed elenca tutte le azioni disponibili per l'account.

+

(I nomi delle azioni verranno visualizzati quando si preme il tasto "Lista Condivisioni". Fare clic sul nome desiderato, quindi premere OK per convalidare)

+

Lista cartelle

+

Mostra l'elenco delle cartelle sulla Condivisione selezionata.

+

Quando si preme il tasto elenco cartelle, verranno visualizzate le cartelle selezionabili.

+

Premete sulla cartelle che volete scegliere e poi sul tasto "Seleziona". Per ricapitolare

+

attraverso le sottocartelle, toccare il nome della cartelle.

+

Cartelle

+

Si prega di inserire l'elenco di destinazione o l'elenco principale. Se si specifica una cartelle che non esiste nel target, questa verrテ creata durante la sincronizzazione.

+

Aggiungi parole chiave

+

%YEAR%, %MONTH%, %DAY% e %DAY-OF-YEAR% possono essere utilizzati come nomi di cartelle di destinazione. Le parole chiave vengono convertite nell'anno, nel mese e nel giorno in cui ティ iniziata la sincronizzazione.

+

Queste opzioni vengono visualizzate solo quando il tipo di sincronizzazione ティ Copia/Sposta.

+

Aggiungi tempo/data del sync nel nome della cartella (la parola chiave verrテ sostituita dall'ora e la data nel quale ティ stata eseguita la sync)

+

Se spuntata, i dati EXIF dei supporti di backup vengono utilizzati per ottenere la data e l'ora di ripresa. Il timestamp della data e dell'ora di ripresa viene utilizzato e allegato alla cartella di destinazione. Quando l'applicazione non ティ in grado di ottenere l'ora di ripresa dall'EXIF, utilizza l'ultima ora modificata del file.

+

Le seguenti opzioni vengono visualizzate solo quando il tipo di sincronizzazione ティ Archivio.

+

Se l'ora e la data non possono essere determinate dai dati EXIF, mostra un messaggio di conferma

+

Se l'opzione ティ selezionata, quando la data e l'ora di ripresa non possono essere acquisite da EXIF , viene visualizzato un messaggio di conferma dell'utilizzo o meno dell'ultima ora modificata del file. Se si seleziona Annulla nella finestra di dialogo di conferma, il file non verrテ archiviato.

+

Archivia file se窶ヲ

+

Scegliere i criteri temporali per determinare quali file archiviare. La selezione dell'ora si basa sulla data di ripresa delle foto/video o sull'ultima ora modificata se non ティ possibile acquisire il timestamp dall'intestazione EXIF.

+
    +
  • Qualunque data (Tutti)

    +

    Archivia tutte le immagini/video

    +
  • +
  • Piテケ vecchio di 7 giorni

    +

    Archiviare solo i file con una data di ripresa piテケ vecchia di 7 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 30 giorni

    +

    Archiviare solo i file con una data di ripresa piテケ vecchia di 30 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 60 giorni

    +

    Archiviare solo i file con una data di ripresa piテケ vecchia di 60 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 90 giorni

    +

    Archiviare solo i file con una data di ripresa piテケ vecchia di 90 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 180 giorni

    +

    Archiviare solo i file con una data di ripresa piテケ vecchia di 180 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 1 anno

    +

    Archiviare solo i file con una data di ripresa piテケ vecchia di 1 anno o piテケ rispetto all'ora attuale

    +
  • + +
+

+

Nome file incrementale

+

Aggiungere il numero di sequenza incrementale al nome del file durante l'archiviazione.

+
    +
  • Non cambiare

    +

    Non aggiungere un numero progressivo

    +
  • +
  • 2 cifre (01-99)

    +

    Aggiungi 001-999

    +
  • +
  • 3 cifre (001-999)

    +

    Aggiungi 001-999

    +
  • +
  • 4 cifre (0001-9999)

    +

    Aggiungi 0001-9999

    +
  • +
  • 5 cifre (00001-99999)

    +

    Aggiungi 00001-99999

    +
  • +
  • 6 cifre (000001-999999)

    +

    Aggiungi 000001-999999

    +
  • + +
+

Cambia il nome del file prima di archiviarlo nella cartella destinazione

+

Se l'opzione ティ selezionata, il nome del file archiviato verrテ modificato in base ai criteri selezionati. Potete aggiungere la data e l'ora nel nome del file "Modello del nome del file".

+

Template nome file

+

Inserire gli schemi da utilizzare per rinominare i file archiviati. Il valore predefinito ティ DSC_%DATE%.

+
    +
  • %ORIGINAL-NAME%

    +

    Sarテ sostituito dal nome originale del file durante l'archiviazione dell'archivio (es. DSC_0001)

    +
  • +
  • %DATE%

    +

    Sarテ sostituito dalla data di scatto.(Es. 2018-01-01)

    +
  • +
  • %TIME%

    +

    Sarテ sostituito dal tempo di scatto.(Es. 13:01:10)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Crea una cartelle basata sull'ora di scatto per salvare i file

+

Crea una cartelle con indicazione dell'ora in cui memorizzare i file archiviati.

+

Quando viene selezionato, viene visualizzato il "Modello di nome della cartelle".

+

Template Cartelle

+

Inserire gli schemi da utilizzare per rinominare la cartelle da creare (exp. DIR-% YEAR% -% MONTH% e cosテャ via). Premendo i tasti dei modelli, potete inserire le parole chiave dietro il cursore.

+
    +
  • %YEAR%

    +

    Sarテ sostituito dall'anno di riprese. (Es. 2018)

    +
  • +
  • %MONTH%

    +

    Sarテ sostituito dal Mese di scatto (Es. 01)

    +
  • +
  • %DAY%

    +

    Sarテ sostituito dal giorno delle riprese (Es. 29)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Informazioni dettagliate

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_usb.html b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_usb.html new file mode 100644 index 00000000..ec5c0471 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_usb.html @@ -0,0 +1,110 @@ + + + + +SMBSync2_Help_IT_folder_usb +

tipo memoria

+

Select mount point for internal storage.

+

Lista cartelle

+

Mostra l'elenco delle cartella nella memoria interna. +Quando si preme il tasto elenco cartella, vengono visualizzate le cartella selezionabili. Premete sulla cartella che volete scegliere e poi sul tasto "Seleziona". Per navigare attraverso le sottodirectory, toccate il nome della cartella.

+

Aggiungi parole chiave

+

%YEAR%, %MONTH%, %DAY% e %DAY-OF-YEAR% possono essere utilizzati come nomi di cartella di destinazione. Le parole chiave vengono convertite nell'anno, nel mese e nel giorno in cui ティ iniziata la sincronizzazione.

+

Queste opzioni vengono visualizzate solo quando il tipo di sincronizzazione ティ Copia/Sposta.

+

Aggiungi ora/data del sync nel nome della cartella (la parola chiave verrテ sostituita dall'ora e la data nel quale ティ stata eseguita la sync)

+

Se spuntata, i dati EXIF dei supporti di backup vengono utilizzati per ottenere la data e l'ora di scatto. Il timestamp della data e dell'ora di scatto viene utilizzato e allegato alla cartella di destinazione. Quando l'applicazione non ティ in grado di ottenere l'ora di scatto dall'EXIF, utilizza l'ultima ora modificata del file.

+

Cartelle

+

Si prega di inserire l'elenco di destinazione o l'elenco principale. Se si specifica una cartella che non esiste nel target, questa verrテ creata durante la sincronizzazione.

+

Seleziona cartella USB

+

Selezionare la cartella principale USB per accedere a USB. Se non ティ possibile selezionarla, inviare le informazioni di sistema allo sviluppatore con "Menu -> Informazioni di sistema".

+

Le seguenti opzioni vengono visualizzate solo quando il tipo di sincronizzazione ティ Archivia.

+

If the date e time cannot be determined by EXIF data, display a confirmation message

+

Se l'opzione ティ selezionata, quando la data e l'ora di scatto non possono essere acquisite da EXIF , viene visualizzato un messaggio di conferma dell'utilizzo o meno dell'ultima ora modificata del file. Se si seleziona Annulla nella finestra di dialogo di conferma, il file non verrテ archiviato.

+

Archivia file se

+

Scegliere i criteri temporali per determinare quali file archiviare. La selezione dell'ora si basa sulla data di scatto delle foto/video o sull'ultima ora modificata se non ティ possibile acquisire il timestamp dall'intestazione EXIF.

+
    +
  • Qualunque data (Tutti)

    +

    Archivia tutte le immagini/video

    +
  • +
  • Piテケ vecchio di 7 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 7 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 30 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 30 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 60 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 60 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 90 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 90 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 180 giorni

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 180 giorni o piテケ rispetto all'ora attuale

    +
  • +
  • Piテケ vecchio di 1 anno

    +

    Archiviare solo i file con una data di scatto piテケ vecchia di 1 anno o piテケ rispetto all'ora attuale

    +
  • + +
+

Nome file incrementale

+

Aggiungere il numero di sequenza incrementale al nome del file durante l'archiviazione.

+
    +
  • Non cambiare

    +

    Non aggiungere un numero progressivo

    +
  • +
  • 2 cifre (01-99)

    +

    Aggiungi 001-999

    +
  • +
  • 3 cifre (001-999)

    +

    Aggiungi 001-999

    +
  • +
  • 4 cifre (0001-9999)

    +

    Aggiungi 0001-9999

    +
  • +
  • 5 cifre (00001-99999)

    +

    Aggiungi 00001-99999

    +
  • +
  • 6 cifre (000001-999999)

    +

    Aggiungi 000001-999999

    +
  • + +
+

Cambia il nome del file prima di archiviarlo nella cartella destinazione

+

Se l'opzione ティ selezionata, il nome del file archiviato verrテ modificato in base ai criteri selezionati. Potete aggiungere la data e l'ora nel nome del file "Modello del nome del file".

+

Template nome file

+

Inserire gli schemi da utilizzare per rinominare i file archiviati. Il valore predefinito ティ DSC_%DATE%.

+
    +
  • %ORIGINAL-NAME%

    +

    Sarテ sostituito dal nome originale del file durante l'archiviazione dell'archivio (es. DSC_0001)

    +
  • +
  • %DATE%

    +

    Sarテ sostituito dalla data di scatto.(Es. 2018-01-01)

    +
  • +
  • %TIME%

    +

    Sarテ sostituito dal tempo di scatto.(Es. 13:01:10)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Crea una cartella basata sulla data di scatto per salvare i file

+

Crea una cartella con indicazione dell'ora in cui memorizzare i file archiviati.

+

Quando viene selezionato, viene visualizzato il "Modello di nome della cartella".

+

Template cartella

+

Inserire gli schemi da utilizzare per rinominare la cartella da creare (exp. DIR-% YEAR% -% MONTH% e cosテャ via). Premendo i tasti dei modelli, potete inserire le parole chiave dietro il cursore.

+
    +
  • %YEAR%

    +

    Sarテ sostituito dall'anno di riprese. (Es. 2018)

    +
  • +
  • %MONTH%

    +

    Sarテ sostituito dal Mese di scatto (Es. 01)

    +
  • +
  • %DAY%

    +

    Sarテ sostituito dal giorno delle riprese (Es. 29)

    +
  • + +
+

L'ultima riga della schermata mostra come apparirテ la cartella di destinazione e il nome del file una volta archiviati.

+

Informazioni dettagliate

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_zip.html b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_zip.html new file mode 100644 index 00000000..a2790da4 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_IT_folder_zip.html @@ -0,0 +1,30 @@ + + + + +SMBSync2_Help_IT_folder_zip +

tipo memoria

+

Selezionare il punto di montaggio dove memorizzare il file ZIP.

+

Salva file ZIP su SDCARD.

+

Controllare per salvare il file ZIP nella SDCARD. Altrimenti verrテ salvato nella memoria interna

+

Permetti scrittura su SDCARD

+

Toccare per visualizzare la schermata di selezione per dare l'accesso e l'autorizzazione di scrittura alla SDCARD.

+

Lista File

+

Mostra le directory e l'elenco dei file nella cartella selezionata.

+

file ZIP

+

Specificare il nome del file ZIP di destinazione.

+

Aggiungi tempo/data del sync nel nome della cartella (la parola chiave verrテ sostituita dall'ora e la data nel quale ティ stata eseguita la sync)

+

%YEAR%, %MONTH%, %DAY% e %DAY-OF-YEAR% possono essere utilizzati come nomi di directory di destinazione. Le parole chiave vengono convertite nell'anno, nel mese e nel giorno in cui ティ iniziata la sincronizzazione.

+

Livello compressione

+

Selezionare il livello di compressione ZIP. I livelli di compressione piテケ forti sono i piテケ lenti.

+

Seleziona Metodo Encriptazione

+

Selezionare il metodo di crittografia per il file ZIP.

+

Password/conferma password

+

Specificare la password di crittografia. +Nota: attualmente, quando ZIP ティ selezionato come target, SMBSync2 supporta solo la memorizzazione interna come master. I supporti USB, SMB e SD esterna non possono essere utilizzati come memoria master quando il target ZIP ティ selezionato come destinazione ZIP.

+

Informazioni dettagliate

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_IT_task.html b/SMBSync2/src/main/assets/SMBSync2_Help_IT_task.html new file mode 100644 index 00000000..9fbe67fb --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_IT_task.html @@ -0,0 +1,160 @@ + + + + +SMBSync2_Help_IT_task +

Modalitテ Test (non copia o cancella file)

+

Se spuntata, nessun file viene cancellato, copiato o sovrascritto. Non vengono apportate modifiche ai file sia sul target che sul master. Si prega di utilizzare la modalitテ Test per controllare i file che saranno cancellati/copiati/sostituiti durante la reale attivitテ di sincronizzazione. Le operazioni eseguite sui file appariranno nella scheda Messaggi.

+

Auto sync

+

Se l'opzione ティ selezionata, l'attivitテ puテイ essere avviata automaticamente a intervalli pianificati nello scheduler. Le attivitテ che sono impostate per la sincronizzazione automatica si avvieranno quando si preme il pulsante di sincronizzazione nell'angolo in alto a destra della schermata principale dell'applicazione.

+

Nome Sync task

+

Specificare un nome per l'attivitテ. Il nome dell'attivitテ di sincronizzazione non ティ sensibile alle maiuscole e minuscole.

+

Tipo di sync

+

Le modalitテ di sincronizzazione attualmente supportate sono Specchio, Copia, Spostamento o Archivio. La sincronizzazione avviene in una direzione del bersaglio dal master.

+
    +
  • Mirror

    +

    La cartella di destinazione viene conservata come copia esatta del master. Se un file ティ diverso tra il master e la destinazione, il file sul master sovrascrive il file sulla destinazione. La cartella e i file non presenti sulla destinazione vengono copiati dal master. Anche i file e le cartelle non presenti sul master vengono cancellati dal master. Solo i file modificati (per dimensione e/o data/ora) vengono aggiornati sulla destinazione.

    +
  • +
  • Sposta

    +

    Se un file ティ diverso tra il master e il target, il file sul master sovrascrive il file sul target. Una volta copiati nella destinazione, i file e le cartelle vengono cancellati dal master (come il comando sposta).

    +

    Solo i file modificati (per dimensione e/o data/ora) vengono copiati nella destinazione. I file identici, in base ai criteri di confronto selezionati, vengono cancellati dal master senza essere copiati. I file e le cartelle sul target, non presenti sul master, vengono ovviamente conservati.

    +
  • +
  • Copia

    +

    Come per permeti, ma i file non vengono cancellati dal master dopo essere stati copiati.

    +

    Se un file ティ diverso tra il master e la destinazione, il file sul master sovrascrive il file sulla destinazione. Una volta copiati nella destinazione, i file e le cartelle vengono mantenuti sul master (come un comando di copia).

    +

    Solo i file modificati (per dimensione e/o data/ora) vengono copiati sulla destinazione. I file identici, in base ai criteri di confronto selezionati, vengono ignorati e non vengono piテケ copiati.

    +
  • +
  • Archivia

    +

    Archiviare foto e video spostandoli dal master alla cartella di destinazione. Per l'archiviazione possono essere specificati criteri specifici: data/ora di ripresa, data e ora dell'ultima esecuzione dell'archivio (ad esempio 7 giorni o prima o 30 giorni o prima).

    +

    ZIP non puテイ essere specificato come target per le operazioni di archivio.

    +
  • + +
+

Criteri di comparazione:

+

I file sono considerati diversi in base a questi criteri:

+
    +
  1. Il nome del file/cartella esiste solo sul master o sul target, non su entrambi i lati
  2. +
  3. I file hanno dimensioni diverse
  4. +
  5. I file hanno un orario diverso (data e ora dell'ultima modifica)
  6. + +
+

Controlla le opzioni Avanzate sotto per maggiori dettagli sui criteri di comparazione ed altre impostazioni granulari.

+

Inverti sorgente e destinazione

+

Scambiare le cartelle master e target: il master diventa il target e il target viene cambiato in master.

+

Cartella sorgente (Sorgente)

+

Toccare l'icona/nome della memoria per modificare la cartella principale.

+

Cartella destinazione (Destinazione)

+

Toccare l'icona/nome della memoria per modificare la cartella di destinazione.

+

Selezionare i file per la sincronizzazione

+

Se deselezionati, tutti i file sono sincronizzati. Se si seleziona il filtro dei file, si ottengono le seguenti opzioni:

+
    +
  • Sync file audio

    +

    Quando spuntata, la sincronizzazione includerテ i file con le seguenti estensioni:
    aac, aif, aifc, aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

    +
  • +
  • Sync immagini

    +

    Quando spuntata, la sincronizzazione includerテ i file con le seguenti estensioni:
    bmp, cgm, djv, djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png, pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, xbm, xpm, xwd

    +
  • +
  • Sync file video

    +

    Quando spuntata, la sincronizzazione includerテ i file con le seguenti estensioni:
    avi, m4u, mov, mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

    +
  • +
  • Filtro file

    +

    テ un filtro di inclusione/esclusione dei file personalizzato. テ possibile selezionare il nome e l'estensione dei file che si desidera escludere o includere dal processo di sincronizzazione.

    +
  • + +
+

Selezionare le sottocartelle

+

Se non viene selezionato, tutte le cartelle sono sincronizzate. Se si seleziona il filtro delle sottocartelle, si ottengono le seguenti opzioni:

+
    +
  • Filtro cartelle

    +

    テ un filtro di inclusione/esclusione cartelle personalizzato. テ possibile selezionare il nome delle cartelle che si desidera escludere o includere dal processo di sincronizzazione.

    +
  • + +
+

Esegui sync tasks solo quando in carica

+

Le attivitテ pianificate di Auto Sync non si avviano se il dispositivo non ティ in carica. L'avvio manuale ティ sempre possibile.

+

Synchronize i file nella root della cartella sorgente (se non selezionata, solo le cartelle e i loro file/sottocartelle verranno sincronizzati).

+

Se deselezionati, vengono sincronizzate solo le cartelle e i loro file/sottocartelle sotto la cartelle master. Per impostazione predefinita, ティ selezionata e anche i file che si trovano direttamente nella root della cartelle master saranno sincronizzati.

+

Conferma prima di sovrascrivere/cancellare

+

Se spuntata, visualizzerテ una finestra di dialogo di conferma prima di sovrascrivere o cancellare i file.

+

Wifi AP Opzioni:

+
    +
  • Esegui anche da spento: cercherテ di avviare la sincronizzazione anche se il Wifi ティ spento
  • +
  • Conn a qualunque AP: si sincronizzerテ solo se connesso ad una rete wifi. Accetterテ qualsiasi nome SSID WLAN.
  • +
  • Come indirizzo privato: ティ possibile avviare la sincronizzazione solo se l'indirizzo IP assegnato alla rete WiFi si trova nei seguenti campi: 10.0.0.0.0 - 10.255.255.255.255, 172.16.0.0.0 - 172.31.255.255.255 o 192.168.0.0.0 - 192.168.255.255.255.
  • +
  • indirizzo lista IP: ティ possibile avviare la sincronizzazione solo se l'indirizzo IP WiFi corrisponde a uno degli indirizzi specificati. テ inoltre possibile aggiungere direttamente l'indirizzo IP corrente al quale l'apparecchio ティ collegato attraverso l'elenco di selezione IP.
    テ possibile utilizzare i caratteri jolly per il filtro. (ad es. 192.168.100.*, 192.168.*).
  • + +
+

Ci sono diversi modi per sincronizzarsi quando ci si connette ad un WiFi specifico. Vedi le FAQ per i dettagli.

+
    +
  1. Cambiare l'indirizzo IP in qualcosa di diverso da 192.168.0.0.0/24 sul router WiFi e aggiungerlo alla lista degli indirizzi IP
  2. +
  3. Fissare un indirizzo IP sul lato Android e registrarlo nell'elenco degli indirizzi IP
  4. + +
+

Salta il task se l'IP WLAN non corrisponde all'indirizzo IP specificato

+

Auto Sync salterテ l'attivitテ se non corrisponde ai criteri specificati

+

Permetti sync con tutti gli indirizzi IP (inclusi pubblici)

+

La sincronizzazione sarテ consentita ogni volta che il Wifi ティ connesso a qualsiasi rete, anche su intervalli IP pubblici (come in un Wifi pubblico).

+

Mostra opzioni avanzate

+

Si prega di utilizzarlo quando si impostano le opzioni dettagliate.

+

Includi sottocartelle

+

Includerテ ricorsivamente le sottocartelle sotto la cartella master specificata.

+

Includi cartelle vuote

+

Sincronizza le cartelle vuote (anche se una cartelle ティ vuota sul master, verrテ creata sul target). Se deselezionata, le cartelle vuote sul master vengono ignorate.

+

Includi cartelle nascoste

+

Quando spuntata, Sync includerテ le cartelle linux nascoste (quelle con un nome che inizia con un punto). Si noti che in Windows e Samba, l'attributo nascosto non ティ impostato dal nome della cartella. Pertanto, la cartella sincronizzata sulla destinazione SMB/Windows non avrテ l'attributo nascosto dell'host.

+

Includi file nascosti

+

Quando spuntata, Sync includerテ i file linux nascosti (quelli con un nome che inizia con un punto). Si noti che in Windows e Samba, l'attributo nascosto non ティ impostato dal nome del file. Quindi, il file sincronizzato sulla destinazione SMB/Windows non avrテ l'attributo nascosto dell'host.

+

Sovrascrivi file destinazione

+

Se deselezionati, i file sul target non saranno mai sovrascritti anche se i criteri di confronto per dimensioni e tempo sono diversi.

+

Usa il filtro di selezione cartelle migliorato

+

Se la cartelle superiore viene esclusa da un filtro mentre una delle sue sottocartelle viene selezionata/inclusa, le sottocartelle della cartella selezionata verranno sincronizzate.

+

Usa la nuova versione 2 del filtro

+

Dopo averla abilitata, puoi usare il nuovo filtro. It may behave differently from the old filter, so please test it thoroughly before using it.

+

Rimuovi cartelle e file esclusi dai filtri

+

Se abilitato, rimuove cartelle/file che sono esclusi dai filtri.

+

Riprova ad errori di rete

+

In caso di errori di connessione lato server, SMBSync2 riproverテ la sincronizzazione per un massimo di 3 volte ad un intervallo di 30 secondi.

+

Limita buffer di scrittura SMB I/O a 16 KB

+

Per favore provala se in presenza dell'errore "Accesso negato" error durante la scrittura sulle cartelle del PC/NAS.

+

Quando spuntata, limiterテ il buffer di I/O a 16KB per le operazioni di scrittura sull'host SMB.

+

Scrivi file direttamente sulla cartella SMB senza usare file temporanei

+

Controllato di default (consigliato). Quando viene copiato nell'host SMB, il file verrテ copiato in una cartella temporanea sull'host. Una volta che l'operazione di copia ティ riuscita, il file temporaneo viene spostato nella sua destinazione finale sovrascrivendo il file di destinazione. Se deselezionato, il file di destinazione sull'host viene immediatamente sovrascritto all'inizio della copia. Se si verifica un errore di connessione, il file sull'host rimane danneggiato fino alla successiva sincronizzazione.

+

Non settare l'ultima volta di modifica del file destinazione per trovare il file sorgente

+

Si prega di abilitare se si ottiene un errore come SmbFile#setLastModified()/File#setLastModified() fallisce. Significa che l'host remoto non permette l'impostazione del file modificato l'ultima volta. Se deselezionato, l'ultimo tempo modificato del file copiato sul target sarテ impostato all'ora in cui ティ stato copiato / sincronizzato. Ciテイ significa che il file di destinazione apparirテ piテケ nuovo del master.

+

Per le sincronizzazioni successive, ティ possibile:

+
    +
  • attenersi a confrontare solo in base alle dimensioni, oppure
  • +
  • ティ possibile attivare l'opzione "Non sovrascrivere il file di destinazione se ティ piテケ recente del file sorgente" per copiare solo i file modificati in seguito sul master, oppure
  • +
  • ティ possibile attivare l'opzione task "Ottenere l'ora dell'ultima modifica dei file dalla lista personalizzata dell'applicazione SMBSync2". Tuttavia, questa opzione non ティ attualmente disponibile se l'obiettivo ティ SMB. La maggior parte degli host SMB supporta l'impostazione dell'ultimo orario di modifica.
  • + +
+

Vedere sotto per informazioni dettagliate su ogni opzione.

+

Ottieni l'ora di ultima modifica dei file dalla lista personalizzata di SMBSync2

+

Si prega di provare se tutti i file vengono copiati sopra i file di destinazione ad ogni sincronizzazione.

+

Questa opzione ティ disponibile solo per l'utente quando la destinazione ティ la memorizzazione interna. Per altri tipi di archiviazione, SMBSync2 cerca di rilevare automaticamente se la destinazione supporta l'impostazione dell'ultima volta che il file ティ stato modificato. In caso contrario, utilizzerテ automaticamente questa funzione integrata. Un'eccezione ティ quando il target ティ SMB, questa funzione non verrテ utilizzata. Vedere sopra l'opzione "Non impostare l'ora dell'ultima modifica del file di destinazione per far corrispondere il file di origine" per altre soluzioni. Si noti che i dispositivi Android piテケ recenti non supportano l'aggiornamento dell'ultimo orario di modifica del file di destinazione.

+

Durante la prima sincronizzazione, SMBSync2 memorizzerテ la lista dei file con i loro timestamp nel suo database (cfr. 1.3). Poichテゥ il database deve essere creato la prima volta, tutti i file con lo stesso nome e le stesse dimensioni saranno sovrascritti di nuovo con una copia completa dal master durante la prima sincronizzazione. Nelle sincronizzazioni successive, il database verrテ utilizzato e non verrテ piテケ eseguita la sovrascrittura di tutti i file con lo stesso nome/stessa dimensione. L'ultimo tempo modificato del file locale viene salvato dal codice proprietario SMBSync (non si basa sulla funzione Java File#setLastModified()).

+

+

Elimina precedenti file su sync (Solo modalitテ Mirror)

+

Una volta spuntate, le cartelle e i file che sono presenti nella cartella di destinazione ma che non esistono sul master, verranno prima cancellati. Dopo di che, i file e le cartelle che sono diversi saranno copiati nella cartella di destinazione.

+

Se la cartella master ティ SMB, il tempo di elaborazione sarテ piテケ lungo perchテゥ la struttura delle cartelle e il loro contenuto viene scansionato attraverso la rete. Si raccomanda vivamente di attivare l'opzione "Usa la negoziazione SMB2" perchテゥ SMB1 sarテ molto lenta.

+

Usa dimensione file per determinare se i file sono differenti

+

Quando si seleziona, i file sono considerati diversi se differiscono per dimensioni.

+

Compara solo dimensione

+

I file sono considerati diversi solo se la dimensione della fonte ティ maggiore della destinazione. Questo disabiliterテ il confronto in base al tempo del file.

+

Usa tempo dell'ultima modifica per determinare se i file sono differenti

+

Quando si seleziona, i file sono considerati diversi in base al loro ultimo tempo di modifica

+

Differenza min di ora permessa (in secondi) tra i file sorgente e destinazione

+

I file sono considerati identici se la differenza tra i loro ultimi tempi modificati ティ inferiore o uguale al tempo selezionato in secondi. Sono considerati diversi se la differenza di tempo tra i file ティ superiore al tempo selezionato. FAT e ExFAT richiedono una tolleranza minima di 2 secondi. Se si seleziona 0 secondi, i file devono avere esattamente lo stesso tempo per essere considerati simili.

+

Non sovrascrivere i file destinazione se piテケ nuovi dei file sorgente

+

Se spuntata, il file viene sovrascritto solo quando il file master ティ piテケ nuovo del file di destinazione, anche se le dimensioni del file e gli ultimi tempi di aggiornamento sono diversi. Tenere presente che se si cambiano i fusi orari o se i file vengono modificati durante il periodo di intervallo della modifica dell'ora legale, l'ultimo file modificato potrebbe apparire piテケ vecchio del file non aggiornato. Ciテイ ティ legato alle differenze del file system e solo un controllo manuale prima di sovrascrivere il file eviterテ la perdita di dati. Si raccomanda generalmente di non modificare i file durante l'intervallo del cambio dell'ora legale se sono destinati ad essere auto-sincronizzati.

+

Ignora differenza dell'Ora Legale tra file

+

Permette di selezionare la differenza di fuso orario in minuti tra l'ora legale e quella invernale. I file sono considerati diversi se la differenza di orario non ティ esattamente uguale all'intervallo specificato (+/- la "differenza di orario minima consentita (in secondi)" specificata nell'opzione precedente)

+

Salta cartelle e file che contengono caratteri non validi(", :, \, *, <, >, |)

+

Se spuntata, visualizzerテ un messaggio di avviso e la sincronizzazione continuerテ senza elaborare le cartelle/file contenenti caratteri non validi.

+

Elimina la cartella master quando ティ vuota (solo quando l'opzione di Sync ティ Sposta)

+

Quando la modalitテ di sincronizzazione ティ Sposta, dopo che i file sono stati spostati nella destinazione, viene cancellata anche la cartella Master.

+

Informazioni dettagliate

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.htm b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.htm deleted file mode 100644 index b58374d9..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.htm +++ /dev/null @@ -1,611 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

         -繝槭え繝ウ繝医昴う繝ウ繝

- -

蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ァ菴ソ逕ィ縺吶k繝槭え繝ウ繝医昴う繝ウ繝医r驕ク謚槭@縺セ縺吶

- -

 

- -

         -繝繧」繝ャ繧ッ繝医Μ荳隕ァ

- -

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲∝承遶ッ縺ョ繝ゥ繧ク繧ェ繝懊ち繝ウ繧偵ち繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@縺ヲ縺上□縺輔>縲

- -

 

- -

         -繝繧」繝ャ繧ッ繝医Μ

- -

繧ソ繝シ繧イ繝繝医∪縺溘ッ繝槭せ繧ソ繝シ繝繧」繝ャ繧ッ繝医Μ繧貞・蜉帙@縺ヲ縺上□縺輔>縲ょュ伜惠縺励↑縺繝繧」繝ャ繧ッ繝医Μ繧呈欠螳壹@縺溷エ蜷医ッ縲∝酔譛溷ョ溯。梧凾縺ォ菴懈舌&繧後∪縺吶

- -

 

- -

         -繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

- -

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

- -

 

- -

縺薙ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧ウ繝斐シ縺セ縺溘ッ遘サ蜍輔ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

- -

*         -繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

- -

 

- -

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

- -

*         -謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭☆繧九→繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

- -

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

- -

*        -謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺

- -

蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧

- -

*        -謦ョ蠖ア譌・縺7譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺30譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺60譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺90譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺180譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

- -

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

- -

 

- -

*         -繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

- -

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

- -

*        -菴ソ逕ィ縺励↑縺

- -

鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺

- -

*        -3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

001-999繧定ソス蜉縺吶k

- -

*        -4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

0001-9999繧定ソス蜉縺吶k

- -

*        -5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

00001-99999繧定ソス蜉縺吶k

- -

*        -6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

000001-999999繧定ソス蜉縺吶k

- -

 

- -

         -繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

        -蜈縺ョ蜷榊燕

- -

繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九

- -

        -蟷エ譛域律

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九

- -

        -譎ょ綾

- -

繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九

- -

        -繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

- -

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

         -繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

- -

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

         -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

- -

        -隘ソ證ヲ

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九

- -

        -

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九

- -

*        -譌・

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九

- -

        -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%

- -

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

 

- -

隧ウ邏ー縺ッ荳玖ィ倥r縺泌盾辣ァ縺上□縺輔>縲

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.html b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.html new file mode 100644 index 00000000..85a305b6 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_internal.html @@ -0,0 +1,68 @@ + + + + +SMBSync2_Help_JA_folder_internal +

繝槭え繝ウ繝医昴う繝ウ繝

+

蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ァ菴ソ逕ィ縺吶k繝槭え繝ウ繝医昴う繝ウ繝医r驕ク謚槭@縺セ縺吶

+

繝繧」繝ャ繧ッ繝医Μ荳隕ァ

+

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲∝承遶ッ縺ョ繝ゥ繧ク繧ェ繝懊ち繝ウ繧偵ち繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@縺ヲ縺上□縺輔>縲

+

繝繧」繝ャ繧ッ繝医Μ

+

繧ソ繝シ繧イ繝繝医∪縺溘ッ繝槭せ繧ソ繝シ繝繧」繝ャ繧ッ繝医Μ繧貞・蜉帙@縺ヲ縺上□縺輔>縲ょュ伜惠縺励↑縺繝繧」繝ャ繧ッ繝医Μ繧呈欠螳壹@縺溷エ蜷医ッ縲∝酔譛溷ョ溯。梧凾縺ォ菴懈舌&繧後∪縺吶

+

繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

+

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

+

繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

+

縺薙ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧ウ繝斐シ縺セ縺溘ッ遘サ蜍輔ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺
繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

+

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺

+

謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭☆繧九→繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

+

繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

+

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

+
    +
  • 謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺
    蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧
  • +
  • 謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
  • + +
+

繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

+

繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

+
    +
  • 菴ソ逕ィ縺励↑縺
    鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺
  • +
  • 3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    001-999繧定ソス蜉縺吶k
  • +
  • 4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    0001-9999繧定ソス蜉縺吶k
  • +
  • 5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    00001-99999繧定ソス蜉縺吶k
  • +
  • 6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    000001-999999繧定ソス蜉縺吶k
  • + +
+

繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

+
    +
  • 蜈縺ョ蜷榊燕
    繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九
  • +
  • 蟷エ譛域律
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九
  • +
  • 譎ょ綾
    繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九
  • +
  • 繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝
    謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

+

繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

+

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

+
    +
  • 隘ソ證ヲ
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九
  • +

  • 繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九
  • +
  • 譌・
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九
  • +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝
    菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

隧ウ邏ー縺ッ荳玖ィ倥Μ繝ウ繧ッ蜈医ョPDF繧偵#蜿らァ縺上□縺輔>縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.htm b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.htm deleted file mode 100644 index ad9b8812..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.htm +++ /dev/null @@ -1,614 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

         -繝繧」繝ャ繧ッ繝医Μ荳隕ァ

- -

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲∝承遶ッ縺ョ繝ゥ繧ク繧ェ繝懊ち繝ウ繧偵ち繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@縺ヲ縺上□縺輔>縲

- -

 

- -

         -繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

- -

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

- -

 

- -

縺薙ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧ウ繝斐シ縺セ縺溘ッ遘サ蜍輔ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

- -

*         -繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

- -

 

- -

         -繝繧」繝ャ繧ッ繝医Μ

- -

繝槭せ繧ソ繝シ縺セ縺溘ッ繧ソ繝シ繧イ繝繝医ョ繝繧」繝ャ繧ッ繝医Μ蜷阪r謖螳壹@縺セ縺吶ゅち繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺悟ュ伜惠縺励※縺縺ェ縺譎ゅッ蜷梧悄譎ゅ↓菴懈舌@縺セ縺吶

- -

 

- -

         -SDCARD縺ョ驕ク謚

- -

SDCARD縺ク縺ョ繧「繧ッ繧サ繧ケ讓ゥ繧貞叙蠕励☆繧九◆繧√↓SDCARD縺ョ繝ォ繝シ繝医ョ繧」繝ャ繧ッ繝医Μ繧帝∈謚槭@縺セ縺吶る∈謚槭〒縺阪↑縺譎ゅッ縲後Γ繝九Η繝シシ搾シ槭す繧ケ繝繝諠蝣ア縲阪〒繧キ繧ケ繝繝諠蝣ア繧帝幕逋コ閠縺ォ騾√▲縺ヲ縺上□縺輔>縲

- -

 

- -

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

- -

*         -謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭@縺溷エ蜷医ッ繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

- -

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

- -

*        -謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺

- -

蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧

- -

*        -謦ョ蠖ア譌・縺7譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺30譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺60譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺90譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺180譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

- -

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

- -

 

- -

*         -繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

- -

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

- -

*        -菴ソ逕ィ縺励↑縺

- -

鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺

- -

*        -3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

001-999繧定ソス蜉縺吶k

- -

*        -4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

0001-9999繧定ソス蜉縺吶k

- -

*        -5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

00001-99999繧定ソス蜉縺吶k

- -

*        -6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

000001-999999繧定ソス蜉縺吶k

- -

 

- -

         -繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

        -蜈縺ョ蜷榊燕

- -

繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九

- -

        -蟷エ譛域律

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九

- -

        -譎ょ綾

- -

繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九

- -

        -繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

- -

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

         -繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

- -

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

         -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

- -

        -隘ソ證ヲ

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九

- -

        -

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九

- -

*        -譌・

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九

- -

        -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%

- -

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

 

- -

隧ウ邏ー縺ッ荳玖ィ倥r縺泌盾辣ァ縺上□縺輔>縲

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.html b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.html new file mode 100644 index 00000000..f1e0e47e --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_sdcard.html @@ -0,0 +1,67 @@ + + + + +SMBSync2_Help_JA_folder_sdcard +

繝繧」繝ャ繧ッ繝医Μ荳隕ァ

+

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲∝承遶ッ縺ョ繝ゥ繧ク繧ェ繝懊ち繝ウ繧偵ち繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@縺ヲ縺上□縺輔>縲

+

繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

+

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

+

繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

+

繝繧」繝ャ繧ッ繝医Μ

+

繝槭せ繧ソ繝シ縺セ縺溘ッ繧ソ繝シ繧イ繝繝医ョ繝繧」繝ャ繧ッ繝医Μ蜷阪r謖螳壹@縺セ縺吶ゅち繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺悟ュ伜惠縺励※縺縺ェ縺譎ゅッ蜷梧悄譎ゅ↓菴懈舌@縺セ縺吶

+

SDCARD縺ョ驕ク謚

+

SDCARD縺ク縺ョ繧「繧ッ繧サ繧ケ讓ゥ繧貞叙蠕励☆繧九◆繧√↓SDCARD縺ョ繝ォ繝シ繝医ョ繧」繝ャ繧ッ繝医Μ繧帝∈謚槭@縺セ縺吶る∈謚槭〒縺阪↑縺譎ゅッ縲後Γ繝九Η繝シシ搾シ槭す繧ケ繝繝諠蝣ア縲阪〒繧キ繧ケ繝繝諠蝣ア繧帝幕逋コ閠縺ォ騾√▲縺ヲ縺上□縺輔>縲

+

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

+

謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭@縺溷エ蜷医ッ繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

+

繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

+

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

+
    +
  • 謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺
    蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧
  • +
  • 謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
  • + +
+

繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

+

繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

+
    +
  • 菴ソ逕ィ縺励↑縺
    鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺
  • +
  • 3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    001-999繧定ソス蜉縺吶k
  • +
  • 4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    0001-9999繧定ソス蜉縺吶k
  • +
  • 5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    00001-99999繧定ソス蜉縺吶k
  • +
  • 6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    000001-999999繧定ソス蜉縺吶k
  • + +
+

繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

+
    +
  • 蜈縺ョ蜷榊燕
    繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九
  • +
  • 蟷エ譛域律
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九
  • +
  • 譎ょ綾
    繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九
  • +
  • 繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝
    謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

+

繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

+

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

+
    +
  • 隘ソ證ヲ
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九
  • +

  • 繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九
  • +
  • 譌・
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九
  • +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝
    菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

隧ウ邏ー縺ッ荳玖ィ倥Μ繝ウ繧ッ蜈医ョPDF繧偵#蜿らァ縺上□縺輔>縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.htm deleted file mode 100644 index 4bc1ab69..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.htm +++ /dev/null @@ -1,741 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -リモートサーバーの検索

- -

ネットワークをスキャンし、リモートホスト一覧を表示することができます。

- -

 

- -

*         -サーバー名/アドレス

- -

   リモートのホストを名前またはIPアドレスで指定する。名前でログオンできない場合はIPアドレスで指定してください。

- -

 

- -

*         -SMBプロトコル

- -

使用するSMBプロトコルを指定できます。

- -

   -SMB V1使用

- -

   SMB V2(2.01)使用(jcifs-ng-2.1.0)

- -

   SMB V2(2.11)使用(jcifs-ng-2.1.1)

- -

   SMB V2/3(2.12)使用(jcifs-ng-2.1.2)(SMB V2またはV3に対応)

- -

   SMB V2/3(2.14)使用(jcifs-ng-2.1.4)(SMB V2またはV3に対応)

- -

*         -ポート番号を指定する

- -

標準のポート番号が使用できない場合に指定します。標準のポート番号は445または139です。

- -

 

- -

*         -ユーザーID/パスワードを使用する

- -

ユーザーIDまたはパスワードを指定する必要があります。

- -

 

- -

*         -ユーザー名

- -

PC/NASで設定したユーザー名を指定する。Microsoftアカウントは使用できません、ローカルアカウントを作成して指定してください。

- -

 

- -

*         -パスワード

- -

PC/NASで設定したパスワードを指定する

- -

 

- -

*         -共有一覧

- -

ボタンを押すと選択可能な共有名が表示されますので、共有名をクリックし、了解を押す。

- -

 

- -

*         -共有名

- -

共有名を手で入力することができます。

- -

 

- -

*         -ディレクトリ一覧

- -

一覧ボタンを押すと選択可能なディレクトリが表示されますので、右端のラジオボタンをタップし選択してください。サブディレクトリを開くにはディレクトリ名をタップしてください。

- -

 

- -

*         -ディレクトリ

- -

PC/NASのディレクトリを手で入力することができます。

- -

 

- -

*         -キーワードの追加

- -

ターゲットディレクトリ%YEAR%, %MONTH%, %DAY%%DAY-OF-YEAR%が使用できます。キーワードは同期開始時に年月日に変換されます。

- -

 

- -

このオプションは同期タイプがコピーまたは移動の時だけ表示されます。

- -

*         -ターゲットフォルダーのディレクトリーに付加されたキーワード変換に写真/ビデオの撮影日時を使用する

- -

チェックした場合はExifから撮影日時を取得し同期開始日時の代わりに使用します。Exifから撮影日時を取得できない時はファイルの最終更新時刻を使用します。

- -

 

- -

以下のオプションは同期タイプがアーカイブの時だけ表示されます。

- -

*         -撮影日時がExifから取得できない時に確認メッセージを表示する

- -

チェックした場合はExifから撮影日時を取得できない時はファイルの最終更新時刻を使用するかどうかユーザーに確認メッセージを表示する。確認メッセージにキャンセルを選択した場合はファイルはアーカイブされません。

- -

 

- -

*         -アーカイブする対象

- -

アーカイブする写真の基準を選ぶ。

- -

*        -撮影日に関係なく

- -

全ての写真をアーカイブする

- -

*        -撮影日が7日以上古い

- -

現在の時刻より撮影日が7日以上古い

- -

*        -撮影日が30日以上古い

- -

現在の時刻より撮影日が30日以上古い

- -

*        -撮影日が60日以上古い

- -

現在の時刻より撮影日が60日以上古い

- -

*        -撮影日が90日以上古い

- -

現在の時刻より撮影日が90日以上古い

- -

*        -撮影日が180日以上古い

- -

現在の時刻より撮影日が180日以上古い

- -

*        -撮影日が1年以上古い

- -

現在の時刻より撮影日が1年以上古い

- -

 

- -

*         -アーカイブする際にファイル名を変更し指定したディレクトリーに格納する

- -

チェックするとアーカイブする時にファイル名を変更します。ファイル名は「ファイル名テンプレート」で日時や時刻を付けることができます。また、ディレクトリーを作成しファイルを格納することができます。ディレクトリーに格納するためには「アーカイブする時にディレクトリーに保存する」を有効にしてください。

- -

 

- -

*         -ファイル名の順序番号

- -

アーカイブする時にファイル名に順序番号を追加する。

- -

*        -使用しない

- -

順序番号を追加しない

- -

*        -3桁の番号を追加する

- -

001-999を追加する

- -

*        -4桁の番号を追加する

- -

0001-9999を追加する

- -

*        -5桁の番号を追加する

- -

00001-99999を追加する

- -

*        -6桁の番号を追加する

- -

000001-999999を追加する

- -

 

- -

*         -ファイル名テンプレート

- -

*        -元の名前

- -

テンプレートに改名前ファイル名を入力する。

- -

*        -年月日

- -

テンプレートに年月日(例:2018-04-16)を入力する。

- -

*        -時刻

- -

テンプレートに時刻(例:12-00-30)を入力する。

- -

*        -ファイル名テンプレート

- -

改名するファイルの雛形を入力する。省略時値はDSC_%DATE%です。ボタンを押すとカーソルの後ろにキーワードを入力する事ができます。

- -

最後の行は実際に保存されるディレクトリーとファイル名が表示されます。

- -

 

- -

*         -アーカイブする時にディレクトリーに保存する

- -

アーカイブする時にディレクトリーを作成し格納することができます。チェックすると「ディレクトリー名テンプレート」が表示されます。

- -

 

- -

*         -ディレクトリー名テンプレート

- -

作成するするディレクトリーの雛形を入力する。DIR-%YEAR%-%MONTH%などのように入力します。ボタンを押すとカーソルの後ろにキーワードを入力する事ができます。

- -

*        -西暦

- -

テンプレートに年(例:2018)を入力する。

- -

*        -

- -

テンプレートに年月(例:04)を入力する。

- -

*        -

- -

テンプレートに年月日(例:16)を入力する。

- -

*        -ディレクトリー名テンプレート

- -

作成するディレクトリーの雛形を入力する。省略時値は%YEAR%

- -

最後の行は実際に保存されるディレクトリーとファイル名が表示されます。

- -

 

- -

詳細は下記をご参照ください。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.html b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.html new file mode 100644 index 00000000..b7205cf8 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_smb.html @@ -0,0 +1,92 @@ + + + + +SMBSync2_Help_JA_folder_smb +

繝ェ繝「繝シ繝医し繝シ繝舌シ縺ョ讀懃エ「

+

繝阪ャ繝医Ρ繝シ繧ッ繧偵せ繧ュ繝」繝ウ縺励√Μ繝「繝シ繝医帙せ繝井ク隕ァ繧定。ィ遉コ縺吶k縺薙→縺後〒縺阪∪縺吶

+

繧オ繝シ繝舌シ蜷/繧「繝峨Ξ繧ケ

+

繝ェ繝「繝シ繝医ョ繝帙せ繝医r蜷榊燕縺セ縺溘ッIP繧「繝峨Ξ繧ケ縺ァ謖螳壹☆繧九ょ錐蜑阪〒繝ュ繧ー繧ェ繝ウ縺ァ縺阪↑縺蝣エ蜷医ッIP繧「繝峨Ξ繧ケ縺ァ謖螳壹@縺ヲ縺上□縺輔>縲

+

SMB繝励Ο繝医さ繝ォ

+

菴ソ逕ィ縺吶kSMB繝励Ο繝医さ繝ォ繧呈欠螳壹〒縺阪∪縺吶

+
    +
  • SMB V1菴ソ逕ィ
  • +
  • SMB V2(2.01)菴ソ逕ィ(jcifs-ng-2.1.0)
  • +
  • SMB V2(2.11)菴ソ逕ィ(jcifs-ng-2.1.1)
  • +
  • SMB V2/3(2.12)菴ソ逕ィ(jcifs-ng-2.1.2)(SMB V2縺セ縺溘ッV3縺ォ蟇セ蠢)
  • +
  • SMB V2/3(2.14)菴ソ逕ィ(jcifs-ng-2.1.4)(SMB V2縺セ縺溘ッV3縺ォ蟇セ蠢)
  • + +
+

繝昴シ繝育分蜿キ繧呈欠螳壹☆繧

+

讓呎コ悶ョ繝昴シ繝育分蜿キ縺御スソ逕ィ縺ァ縺阪↑縺蝣エ蜷医↓謖螳壹@縺セ縺吶よィ呎コ悶ョ繝昴シ繝育分蜿キ縺ッ445縺セ縺溘ッ139縺ァ縺吶

+

繝ヲ繝シ繧カ繝シID/繝代せ繝ッ繝シ繝峨r菴ソ逕ィ縺吶k

+

繝ヲ繝シ繧カ繝シID縺セ縺溘ッ繝代せ繝ッ繝シ繝峨r謖螳壹☆繧句ソ隕√′縺ゅj縺セ縺吶

+

繝ヲ繝シ繧カ繝シ蜷

+

PC/NAS縺ァ險ュ螳壹@縺溘Θ繝シ繧カ繝シ蜷阪r謖螳壹☆繧九Microsoft繧「繧ォ繧ヲ繝ウ繝医ッ菴ソ逕ィ縺ァ縺阪∪縺帙s縲√Ο繝シ繧ォ繝ォ繧「繧ォ繧ヲ繝ウ繝医r菴懈舌@縺ヲ謖螳壹@縺ヲ縺上□縺輔>縲

+

繝代せ繝ッ繝シ繝

+

PC/NAS縺ァ險ュ螳壹@縺溘ヱ繧ケ繝ッ繝シ繝峨r謖螳壹☆繧

+

蜈ア譛我ク隕ァ

+

繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ蜈ア譛牙錐縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲∝ア譛牙錐繧偵け繝ェ繝繧ッ縺励∽コ隗」繧呈款縺吶

+

蜈ア譛牙錐

+

蜈ア譛牙錐繧呈焔縺ァ蜈・蜉帙☆繧九%縺ィ縺後〒縺阪∪縺吶

+

繝繧」繝ャ繧ッ繝医Μ荳隕ァ

+

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲∝承遶ッ縺ョ繝ゥ繧ク繧ェ繝懊ち繝ウ繧偵ち繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@縺ヲ縺上□縺輔>縲

+

繝繧」繝ャ繧ッ繝医Μ

+

PC/NAS縺ョ繝繧」繝ャ繧ッ繝医Μ繧呈焔縺ァ蜈・蜉帙☆繧九%縺ィ縺後〒縺阪∪縺吶

+

繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

+

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

+

繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

+

縺薙ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧ウ繝斐シ縺セ縺溘ッ遘サ蜍輔ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶
繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

+

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

+

謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭@縺溷エ蜷医ッ繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

+

繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

+

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

+
    +
  • 謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺
    蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧
  • +
  • 謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
  • + +
+

繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

+

繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

+
    +
  • 菴ソ逕ィ縺励↑縺
    鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺
  • +
  • 3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    001-999繧定ソス蜉縺吶k
  • +
  • 4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    0001-9999繧定ソス蜉縺吶k
  • +
  • 5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    00001-99999繧定ソス蜉縺吶k
  • +
  • 6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    000001-999999繧定ソス蜉縺吶k
  • + +
+

繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

+
    +
  • 蜈縺ョ蜷榊燕
    繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九
  • +
  • 蟷エ譛域律
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九
  • +
  • 譎ょ綾
    繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九
  • +
  • 繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝
    謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

+

繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

+

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

+
    +
  • 隘ソ證ヲ
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九
  • +

  • 繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九
  • +
  • 譌・
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九
  • +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝
    菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

隧ウ邏ー縺ッ荳玖ィ倥Μ繝ウ繧ッ蜈医ョPDF繧偵#蜿らァ縺上□縺輔>縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.htm deleted file mode 100644 index 9f7a9bc6..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.htm +++ /dev/null @@ -1,622 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -繝繧」繝ャ繧ッ繝医Μ荳隕ァ

- -

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲√ョ繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪ョ蟾ヲ遶ッ繧偵ち繝繝励@縺ヲ縺上□縺輔>縲

- -

 

- -

*         -繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

- -

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

- -

 

- -

縺薙ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧ウ繝斐シ縺セ縺溘ッ遘サ蜍輔ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

- -

*         -繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

- -

 

- -

*         -繝繧」繝ャ繧ッ繝医Μ

- -

繝槭せ繧ソ繝シ縺セ縺溘ッ繧ソ繝シ繧イ繝繝医ョ繝繧」繝ャ繧ッ繝医Μ蜷阪r謖螳壹@縺セ縺吶ゅち繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺悟ュ伜惠縺励※縺縺ェ縺譎ゅッ蜷梧悄譎ゅ↓菴懈舌@縺セ縺吶

- -

 

- -

*         -USB繝。繝繧」繧「縺ョ驕ク謚

- -

USB繝。繝繧」繧「縺ク縺ョ繧「繧ッ繧サ繧ケ讓ゥ繧貞叙蠕励☆繧九◆繧√↓USB繝。繝繧」繧「縺ョ繝ォ繝シ繝医ョ繧」繝ャ繧ッ繝医Μ繧帝∈謚槭@縺セ縺吶る∈謚槭〒縺阪↑縺譎ゅッ縲後Γ繝九Η繝シシ搾シ槭す繧ケ繝繝諠蝣ア縲阪〒繧キ繧ケ繝繝諠蝣ア繧帝幕逋コ閠縺ォ騾√▲縺ヲ縺上□縺輔>縲

- -

USB繝。繝繧」繧「縺ョUUID縺ォ蟇セ蠢懊☆繧九槭え繝ウ繝医昴う繝ウ繝(/storage/0123-0123縺ェ縺ゥ)縺悟ュ伜惠縺励↑縺縺ィUSB繝。繝繧」繧「縺ッ菴ソ逕ィ縺ァ縺阪∪縺帙s縲

- -

 

- -

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

- -

*         -謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭@縺溷エ蜷医ッ繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

- -

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

- -

*        -謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺

- -

蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧

- -

*        -謦ョ蠖ア譌・縺7譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺30譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺60譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺90譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺180譌・莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺

- -

*        -謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺

- -

迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

- -

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

- -

 

- -

*         -繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

- -

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

- -

*        -菴ソ逕ィ縺励↑縺

- -

鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺

- -

*        -3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

001-999繧定ソス蜉縺吶k

- -

*        -4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

0001-9999繧定ソス蜉縺吶k

- -

*        -5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

00001-99999繧定ソス蜉縺吶k

- -

*        -6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k

- -

000001-999999繧定ソス蜉縺吶k

- -

 

- -

*         -繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

*        -蜈縺ョ蜷榊燕

- -

繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九

- -

*        -蟷エ譛域律

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九

- -

*        -譎ょ綾

- -

繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九

- -

*        -繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

- -

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

*         -繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

- -

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

*         -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

- -

*        -隘ソ證ヲ

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九

- -

*        -

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九

- -

*        -譌・

- -

繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九

- -

*        -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

- -

菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%

- -

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

- -

 

- -

隧ウ邏ー縺ッ荳玖ィ倥r縺泌盾辣ァ縺上□縺輔>縲

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.html b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.html new file mode 100644 index 00000000..77842be2 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_usb.html @@ -0,0 +1,68 @@ + + + + +SMBSync2_Help_JA_folder_usb +

繝繧」繝ャ繧ッ繝医Μ荳隕ァ

+

荳隕ァ繝懊ち繝ウ繧呈款縺吶→驕ク謚槫庄閭ス縺ェ繝繧」繝ャ繧ッ繝医Μ縺瑚。ィ遉コ縺輔l縺セ縺吶ョ縺ァ縲√ョ繧」繝ャ繧ッ繝医Μ蜷阪r繧ソ繝繝励@驕ク謚槭@縺ヲ縺上□縺輔>縲ゅし繝悶ョ繧」繝ャ繧ッ繝医Μ繧帝幕縺上↓縺ッ繝繧」繝ャ繧ッ繝医Μ蜷阪ョ蟾ヲ遶ッ繧偵ち繝繝励@縺ヲ縺上□縺輔>縲

+

繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

+

繧ソ繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺ォ%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ/蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

+

繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ莉伜刈縺輔l縺溘く繝シ繝ッ繝シ繝牙、画鋤縺ォ蜀咏悄/繝薙ョ繧ェ縺ョ謦ョ蠖ア譌・譎ゅr菴ソ逕ィ縺吶k

+

縺薙ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧ウ繝斐シ縺セ縺溘ッ遘サ蜍輔ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶
繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励@蜷梧悄髢句ァ区律譎ゅョ莉」繧上j縺ォ菴ソ逕ィ縺励∪縺吶Exif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺励∪縺吶

+

繝繧」繝ャ繧ッ繝医Μ

+

繝槭せ繧ソ繝シ縺セ縺溘ッ繧ソ繝シ繧イ繝繝医ョ繝繧」繝ャ繧ッ繝医Μ蜷阪r謖螳壹@縺セ縺吶ゅち繝シ繧イ繝繝医ョ繧」繝ャ繧ッ繝医Μ縺悟ュ伜惠縺励※縺縺ェ縺譎ゅッ蜷梧悄譎ゅ↓菴懈舌@縺セ縺吶

+

USB繝。繝繧」繧「縺ョ驕ク謚

+

USB繝。繝繧」繧「縺ク縺ョ繧「繧ッ繧サ繧ケ讓ゥ繧貞叙蠕励☆繧九◆繧√↓USB繝。繝繧」繧「縺ョ繝ォ繝シ繝医ョ繧」繝ャ繧ッ繝医Μ繧帝∈謚槭@縺セ縺吶る∈謚槭〒縺阪↑縺譎ゅッ縲後Γ繝九Η繝シシ搾シ槭す繧ケ繝繝諠蝣ア縲阪〒繧キ繧ケ繝繝諠蝣ア繧帝幕逋コ閠縺ォ騾√▲縺ヲ縺上□縺輔>縲
USB繝。繝繧」繧「縺ョUUID縺ォ蟇セ蠢懊☆繧九槭え繝ウ繝医昴う繝ウ繝(/storage/0123-0123縺ェ縺ゥ)縺悟ュ伜惠縺励↑縺縺ィUSB繝。繝繧」繧「縺ッ菴ソ逕ィ縺ァ縺阪∪縺帙s縲

+

莉・荳九ョ繧ェ繝励す繝ァ繝ウ縺ッ蜷梧悄繧ソ繧、繝励′繧「繝シ繧ォ繧、繝悶ョ譎ゅ□縺題。ィ遉コ縺輔l縺セ縺吶

+

謦ョ蠖ア譌・譎ゅ′Exif縺九i蜿門セ励〒縺阪↑縺譎ゅ↓遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッExif縺九i謦ョ蠖ア譌・譎ゅr蜿門セ励〒縺阪↑縺譎ゅッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧剃スソ逕ィ縺吶k縺九←縺縺九Θ繝シ繧カ繝シ縺ォ遒コ隱阪Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺吶k縲ら「コ隱阪Γ繝繧サ繝シ繧ク縺ォ繧ュ繝」繝ウ繧サ繝ォ繧帝∈謚槭@縺溷エ蜷医ッ繝輔ぃ繧、繝ォ縺ッ繧「繝シ繧ォ繧、繝悶&繧後∪縺帙s縲

+

繧「繝シ繧ォ繧、繝悶☆繧句ッセ雎。

+

繧「繝シ繧ォ繧、繝悶☆繧句咏悄縺ョ蝓コ貅悶r驕ク縺カ縲

+
    +
  • 謦ョ蠖ア譌・縺ォ髢「菫ゅ↑縺
    蜈ィ縺ヲ縺ョ蜀咏悄繧偵い繝シ繧ォ繧、繝悶☆繧
  • +
  • 謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺7譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺30譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺60譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺90譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺180譌・莉・荳雁商縺
  • +
  • 謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
    迴セ蝨ィ縺ョ譎ょ綾繧医j謦ョ蠖ア譌・縺1蟷エ莉・荳雁商縺
  • + +
+

繧「繝シ繧ォ繧、繝悶☆繧矩圀縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺玲欠螳壹@縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィ繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪r螟画峩縺励∪縺吶ゅヵ繧。繧、繝ォ蜷阪ッ縲後ヵ繧。繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪〒譌・譎ゅd譎ょ綾繧剃サ倥¢繧九%縺ィ縺後〒縺阪∪縺吶ゅ∪縺溘√ョ繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@繝輔ぃ繧、繝ォ繧呈シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ譬シ邏阪☆繧九◆繧√↓縺ッ縲後い繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧九阪r譛牙柑縺ォ縺励※縺上□縺輔>縲

+

繝輔ぃ繧、繝ォ蜷阪ョ鬆蠎冗分蜿キ

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝輔ぃ繧、繝ォ蜷阪↓鬆蠎冗分蜿キ繧定ソス蜉縺吶k縲

+
    +
  • 菴ソ逕ィ縺励↑縺
    鬆蠎冗分蜿キ繧定ソス蜉縺励↑縺
  • +
  • 3譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    001-999繧定ソス蜉縺吶k
  • +
  • 4譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    0001-9999繧定ソス蜉縺吶k
  • +
  • 5譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    00001-99999繧定ソス蜉縺吶k
  • +
  • 6譯√ョ逡ェ蜿キ繧定ソス蜉縺吶k
    000001-999999繧定ソス蜉縺吶k
  • + +
+

繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝

+
    +
  • 蜈縺ョ蜷榊燕
    繝繝ウ繝励Ξ繝シ繝医↓謾ケ蜷榊燕繝輔ぃ繧、繝ォ蜷阪r蜈・蜉帙☆繧九
  • +
  • 蟷エ譛域律
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ2018-04-16)繧貞・蜉帙☆繧九
  • +
  • 譎ょ綾
    繝繝ウ繝励Ξ繝シ繝医↓譎ょ綾(萓具シ12-00-30)繧貞・蜉帙☆繧九
  • +
  • 繝輔ぃ繧、繝ォ蜷阪ユ繝ウ繝励Ξ繝シ繝
    謾ケ蜷阪☆繧九ヵ繧。繧、繝ォ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッDSC_%DATE%縺ァ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ菫晏ュ倥☆繧

+

繧「繝シ繧ォ繧、繝悶☆繧区凾縺ォ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌@譬シ邏阪☆繧九%縺ィ縺後〒縺阪∪縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ縲後ョ繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝医阪′陦ィ遉コ縺輔l縺セ縺吶

+

繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝

+

菴懈舌☆繧九☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九DIR-%YEAR%-%MONTH%縺ェ縺ゥ縺ョ繧医≧縺ォ蜈・蜉帙@縺セ縺吶ゅ懊ち繝ウ繧呈款縺吶→繧ォ繝シ繧ス繝ォ縺ョ蠕後m縺ォ繧ュ繝シ繝ッ繝シ繝峨r蜈・蜉帙☆繧倶コ九′縺ァ縺阪∪縺吶

+
    +
  • 隘ソ證ヲ
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ(萓具シ2018)繧貞・蜉帙☆繧九
  • +

  • 繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛(萓具シ04)繧貞・蜉帙☆繧九
  • +
  • 譌・
    繝繝ウ繝励Ξ繝シ繝医↓蟷エ譛域律(萓具シ16)繧貞・蜉帙☆繧九
  • +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪ユ繝ウ繝励Ξ繝シ繝
    菴懈舌☆繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ髮帛ス「繧貞・蜉帙☆繧九ら怐逡・譎ょ、縺ッ%YEAR%
  • + +
+

譛蠕後ョ陦後ッ螳滄圀縺ォ菫晏ュ倥&繧後k繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ蜷阪′陦ィ遉コ縺輔l縺セ縺吶

+

隧ウ邏ー縺ッ荳玖ィ倥Μ繝ウ繧ッ蜈医ョPDF繧偵#蜿らァ縺上□縺輔>縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.htm b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.htm deleted file mode 100644 index 5898fdd8..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.htm +++ /dev/null @@ -1,315 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

縲後槭え繝ウ繝医昴う繝ウ繝医

- -

蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ァ菴ソ逕ィ縺吶k繝槭え繝ウ繝医昴う繝ウ繝医r驕ク謚槭@縺セ縺吶

- -

 

- -

SDCARD縺ォZIP繝輔ぃ繧、繝ォ繧剃ソ晏ュ倥☆繧九

- -

繝√ぉ繝繧ッ縺吶k縺ィZIP繝輔ぃ繧、繝ォ繧SDCARD縺ォ菫晏ュ倥@縺セ縺吶

- -

 

- -

SDCARD縺ョ驕ク謚槭

- -

ツツツツツツツツツ 繧ソ繝繝励☆繧九→SDCARD縺ョ驕ク謚樒判髱「縺瑚。ィ遉コ縺励∪縺吶

- -

 

- -

縲後ヵ繧。繧、繝ォ荳隕ァ

- -

繝輔ぃ繧、繝ォ縺ョ荳隕ァ繧定。ィ遉コ縺励∪縺吶

- -

 

- -

縲後く繝シ繝ッ繝シ繝峨ョ霑ス蜉縲

- -

繧ソ繝シ繧イ繝繝繝輔ぃ繧、繝ォ蜷阪↓%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

- -

 

- -

縲悟悸邵ョ繝ャ繝吶Ν縲

- -

蝨ァ邵ョ縺吶k繝ャ繝吶Ν繧帝∈謚槭@縺セ縺吶

- -

 

- -

縲梧囓蜿キ蛹悶

- -

證怜捷蛹匁婿豕輔r驕ク謚槭@縺セ縺吶

- -

 

- -

縲後ヱ繧ケ繝ッ繝シ繝峨

- -

證怜捷蛹悶ョ繝代せ繝ッ繝シ繝峨r謖螳壹@縺セ縺吶

- -

 

- -

隧ウ邏ー縺ッ荳玖ィ倥r縺泌盾辣ァ縺上□縺輔>縲

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.html b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.html new file mode 100644 index 00000000..0f6a7290 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_JA_folder_zip.html @@ -0,0 +1,40 @@ + + + + +SMBSync2_Help_JA_folder_zip +

繝槭え繝ウ繝医昴う繝ウ繝

+

蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ァ菴ソ逕ィ縺吶k繝槭え繝ウ繝医昴う繝ウ繝医r驕ク謚槭@縺セ縺吶

+

SDCARD縺ォZIP繝輔ぃ繧、繝ォ繧剃ソ晏ュ倥☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィZIP繝輔ぃ繧、繝ォ繧担DCARD縺ォ菫晏ュ倥@縺セ縺吶

+

SDCARD縺ョ驕ク謚

+

繧ソ繝繝励☆繧九→SDCARD縺ョ驕ク謚樒判髱「縺瑚。ィ遉コ縺輔l縺セ縺吶

+

繝輔ぃ繧、繝ォ荳隕ァ

+

繝輔ぃ繧、繝ォ縺ョ荳隕ァ繧定。ィ遉コ縺励∪縺吶

+

繧ュ繝シ繝ッ繝シ繝峨ョ霑ス蜉

+

繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ蜷阪↓%YEAR%, %MONTH%, %DAY%縺ィ%DAY-OF-YEAR%縺御スソ逕ィ縺ァ縺阪∪縺吶ゅく繝シ繝ッ繝シ繝峨ッ蜷梧悄髢句ァ区凾縺ォ蟷エ譛域律縺ォ螟画鋤縺輔l縺セ縺吶

+

蝨ァ邵ョ繝ャ繝吶Ν

+

蝨ァ邵ョ縺吶k繝ャ繝吶Ν繧帝∈謚槭@縺セ縺吶

+
    +
  • Fastest(鬮倬)
  • +
  • Fast(譌ゥ縺)
  • +
  • Normal(騾壼クク)
  • +
  • Maximum(驕縺)
  • +
  • Ultra(髱槫クク縺ォ驕縺)
  • + +
+

證怜捷蛹

+

證怜捷蛹匁婿豕輔r驕ク謚槭@縺セ縺吶

+
    +
  • ZIP2.0莠呈鋤
  • +
  • AES128繝薙ャ繝
  • +
  • AES256繝薙ャ繝
  • + +
+

繝代せ繝ッ繝シ繝

+

證怜捷蛹悶ョ繝代せ繝ッ繝シ繝峨r謖螳壹@縺セ縺吶

+

隧ウ邏ー縺ッ荳玖ィ倥Μ繝ウ繧ッ蜈医ョPDF繧偵#蜿らァ縺上□縺輔>縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.htm b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.htm deleted file mode 100644 index bec910d1..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.htm +++ /dev/null @@ -1,680 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*        -繝繧ケ繝医Δ繝シ繝

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ縺ョ蜑企勁縺ィ繧ウ繝斐シ縺瑚。後o繧後∪縺帙s縲ょ酔譛溘ち繧ケ繧ッ縺ァ蜷梧悄縺励◆蝣エ蜷医↓繧ウ繝斐シ繧蜑企勁縺輔l繧九ヵ繧。繧、繝ォ繧堤「コ隱阪☆繧九◆繧√↓菴ソ逕ィ縺励※縺上□縺輔>縲 -繧ウ繝斐シ繧蜑企勁縺輔l繧九ヵ繧。繧、繝ォ縺ッ螻・豁エ繧繝。繝繧サ繝シ繧ク縺ァ遒コ隱阪〒縺阪∪縺吶ゅユ繧ケ繝医Δ繝シ繝峨〒縺ッ閾ェ蜍募酔譛溘ち繧ケ繧ッ縺ォ險ュ螳壹〒縺阪∪縺帙s縲

- -

 

- -

*        -閾ェ蜍募酔譛溘ち繧ケ繧ッ

- -

繧ソ繧ケ繧ッ縺碁∈謚槭&繧後※縺縺ェ縺譎ゅ↓蜷梧悄繝懊ち繝ウ繧呈款縺吶→蜷梧悄繧帝幕蟋九☆繧九ち繧ケ繧ッ縺ォ縺ェ繧翫∪縺吶

- -

 

- -

*        -繧ソ繧ケ繧ッ蜷

- -

蜷梧悄繧ソ繧ケ繧ッ縺ョ蜷榊燕縺ァ縺吶ょ錐蜑阪ッ螟ァ譁蟄励→蟆乗枚蟄励ョ蛹コ蛻・繧定。後>縺セ縺帙s縲

- -

 

- -

*        -蜷梧悄譁ケ蠑

- -

繝溘Λ繝シ縲√さ繝斐シ縲∫ァサ蜍輔√い繝シ繧ォ繧、繝悶°繧画婿蠑上r驕ク謚槭☆繧九蜷梧悄縺ッ繝槭せ繧ソ繝シ縺九i繧ソ繝シ繧イ繝繝医ョ荳譁ケ蜷代〒陦後>縺セ縺吶

- -

*        -繝溘Λ繝シ

- -

繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ(*1)縺励√さ繝斐シ邨ゆコ蠕後↓繝槭せ繧ソ繝シ蛛エ縺ォ蟄伜惠縺励↑縺繧ソ繝シ繧イ繝繝亥エ縺ョ繝輔ぃ繧、繝ォ縺ィ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞炎髯、縺吶k縲

- -

*            -遘サ蜍

- -

繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ縺励√ち繝シ繧イ繝繝亥エ縺ォ繧ウ繝斐シ縺励◆繝槭せ繧ソ繝シ蛛エ縺ョ繝輔ぃ繧、繝ォ繧貞炎髯、縺吶k縲ゑシ医◆縺縺励√槭せ繧ソ繝シ縺ィ繧ソ繝シ繧イ繝繝医↓蜷悟錐縺ァ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ィ譖エ譁ー譌・譎ゅ′蜷後§繝輔ぃ繧、繝ォ縺ッ繧ウ繝斐シ縺帙★繝槭せ繧ソ繝シ蛛エ縺ョ繝輔ぃ繧、繝ォ繧貞炎髯、シ

- -

*             -繧ウ繝斐シ

- -

繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ縺吶k縲

- -

*             -繧「繝シ繧ォ繧、繝

- -

繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k蜀咏悄縺ィ繝薙ョ繧ェ繧偵い繝シ繧ォ繧、繝門ョ溯。梧律譎ゅh繧頑聴蠖ア譌・譎ゅ′シ玲律莉・蜑阪d30譌・莉・蜑阪↑縺ゥ縺ョ譚。莉カ縺ァ繧ソ繝シ繧イ繝繝医↓遘サ蜍輔☆繧九ゑシ医◆縺縺励√ち繝シ繧イ繝繝医↓ZIP縺ッ菴ソ逕ィ縺ァ縺阪∪縺帙sシ

- -

 

- -

*1荳玖ィ倥ョシ捺擅莉カ縺ョ縺縺。縺縺壹l縺九′謌千ォ九@縺溷エ蜷医↓蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ蛻、螳壹@縲√さ繝斐シ繧遘サ蜍輔r陦後>縺セ縺吶ゅ◆縺縺励∝酔譛溘ち繧ケ繧ッ縺ョ繧ェ繝励す繝ァ繝ウ縺ァ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ィ譛邨よ峩譁ー譎る俣繧堤┌隕悶☆繧九%縺ィ縺後〒縺阪∪縺吶

- -

   -繝輔ぃ繧、繝ォ縺悟ュ伜惠縺励↑縺

- -

   -繝輔ぃ繧、繝ォ繧オ繧、繧コ縺碁&縺

- -

   -譛邨よ峩譁ー譌・譎ゅ′3遘剃サ・荳企&縺(遘呈焚縺ッ蜷梧悄繧ソ繧ケ繧ッ縺ョ繧ェ繝励す繝ァ繝ウ縺ォ繧医j螟画峩蜿ッ閭ス)

- -

 

- -

 

- -

*        -繝槭せ繧ソ繝シ縺ィ繧ソ繝シ繧イ繝繝医r蜈・繧梧崛縺医k

- -

繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ィ繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ蜀螳ケ繧貞・繧梧崛縺医∪縺

- -

 

- -

*        -繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ

- -

蜷梧悄縺吶k繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ繧呈欠螳壹@縺セ縺吶ゅい繧、繧ウ繝ウ繧偵ち繝繝励☆繧九→蜷梧悄蜈縺ョ繝輔か繝ォ繝繝シ邱ィ髮逕サ髱「縺瑚。ィ遉コ縺輔l縺セ縺

- -

 

- -

*        -繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ

- -

蜷梧悄縺吶k繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ繧呈欠螳壹@縺セ縺吶ゅい繧、繧ウ繝ウ繧偵ち繝繝励☆繧九→蜷梧悄蜈医ョ繝輔か繝ォ繝繝シ邱ィ髮逕サ髱「縺瑚。ィ遉コ縺輔l縺セ縺

- -

 

- -

*        -蜷梧悄縺吶k繝輔ぃ繧、繝ォ繧帝∈謚槭☆繧

- -

繝√ぉ繝繧ッ縺励↑縺縺ィ蜈ィ縺ヲ縺ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ蜷梧悄縺吶k繝輔ぃ繧、繝ォ繧帝∈謚槭☆繧九%縺ィ縺後〒縺阪∪縺吶

- -

*       -繧ェ繝シ繝繧」繧ェ繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧

- -

繝√ぉ繝繧ッ縺吶k縺ィ荳玖ィ倥ョ諡。蠑オ蟄舌ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶

- -

aac, aif, aifc, -aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

- -

*       -繧、繝。繝シ繧ク繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧

- -

繝√ぉ繝繧ッ縺吶k縺ィ荳玖ィ倥ョ諡。蠑オ蟄舌ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶

- -

bmp, cgm, djv, -djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png,pnm, ppm, ras, rgb, svg, -tif, tiff, wbmp, xbm, xpm, xwd

- -

*       -繝薙ョ繧ェ繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧

- -

繝√ぉ繝繧ッ縺吶k縺ィ荳玖ィ倥ョ諡。蠑オ蟄舌ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶

- -

avi, m4u, mov, mp4, -movie, mpe, mpeg, mpg, mxu, qt, wmv

- -

*       -繝輔ぃ繧、繝ォ繝輔ぅ繝ォ繧ソ繝シ

- -

荳願ィ倅サ・螟悶〒蜷梧悄縺吶k繝輔ぃ繧、繝ォ縺ョ蜷榊燕繧諡。蠑オ蟄舌r驕ク謚槭〒縺阪∪縺

- -

 

- -

*        -蜷梧悄縺吶k繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧呈欠螳壹☆繧

- -

繝√ぉ繝繧ッ縺励↑縺縺ィ蜈ィ縺ヲ縺ョ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘@縺セ縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ繝懊ち繝ウ縺瑚。ィ遉コ縺輔l縺セ縺吶

- -

*       -繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ

- -

蜷梧悄縺吶k繝繧」繝ャ繧ッ繝医Μ繝シ繧帝∈謚槭〒縺阪∪縺

- -

 

- -

*        -蜈髮サ荳ュ縺ョ縺ソ蜷梧悄繧帝幕蟋九☆繧

- -

蜈髮サ荳ュ縺縺大酔譛溘r髢句ァ九〒縺阪∪縺吶ょ髮サ縺励※縺縺ェ縺譎ゅ↓蜍墓ゥ溘r髢句ァ九☆繧九→繧ィ繝ゥ繝シ縺ィ縺ェ繧雁セ檎カ壹ョ蜷梧悄繧ソ繧ケ繧ッ縺ョ髢句ァ九r荳ュ豁「縺励∪縺吶

- -

 

- -

*        -繝槭せ繧ソ繝シ縺ァ謖螳壹&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ョ逶エ荳九↓蟄伜惠縺吶k繝輔ぃ繧、繝ォ繧貞ヲ逅縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ァ謖螳壹&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蟄伜惠縺吶k繝輔ぃ繧、繝ォ縺ィ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺翫h縺ウ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ繧貞ヲ逅縺励∪縺吶ゅメ繧ァ繝繧ッ縺励※縺縺ェ縺蝣エ蜷医ッ繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ァ謖螳壹&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蟄伜惠縺吶k繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺翫h縺ウ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ縺縺代r蜃ヲ逅縺励∪縺吶

- -

萓具シ壼驛ィ繧ケ繝医Ξ繝シ繧ク縺ョ繝ォ繝シ繝医r繝槭せ繧ソ繝シ縺ォ縺励※縲∝酔譛溘☆繧九ョ繧」繝ャ繧ッ繝医Μ縺ッ繝繧」繝ャ繧ッ繝医Μ驕ク謚槭ヵ繧」繝ォ繧ソ繝シ縺ァ謖螳壹☆繧句エ蜷医ッ繝√ぉ繝繧ッ辟。縺励↓縺励※縺上□縺輔>縲√Ν繝シ繝医ョ繧」繝ャ繧ッ繝医Μ縺ョ繝輔ぃ繧、繝ォ縺ッ髯、螟悶&繧後∪縺吶

- -

 

- -

        -荳頑嶌繧ウ繝斐シ縺セ縺溘ッ蜑企勁縺ョ蜑阪↓遒コ隱阪☆繧

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ縺ョ蜑企勁縺ィ荳頑嶌縺阪☆繧句燕縺ォ遒コ隱阪ム繧、繧「繝ュ繧ー繧定。ィ遉コ縺励∪縺吶

- -

 

- -

*        -辟。邱LAN

- -

AP謗・邯壽凾縺ォ蜷梧悄縲阪ッ繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医↓謗・邯壹@縺ヲ縺縺ェ縺縺ィ蜷梧悄縺ッ繧ィ繝ゥ繝シ縺ァ邨ゆコ縺励∪縺吶

- -

縲後い繧ッ繧サ繧ケ繝昴う繝ウ繝医Μ繧ケ繝医阪ッ迚ケ螳壹ョ繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医↓謗・邯壹&繧後※縺繧九→縺阪↓蜷梧悄繧帝幕蟋九〒縺阪∪縺吶ら┌邱LAN繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医Μ繧ケ繝医懊ち繝ウ繧呈款縺励※繧「繧ッ繧サ繧ケ繝昴う繝ウ繝亥錐繧貞・蜉帙@縺ヲ縺上□縺輔>縲

- -

 

- -

*        -隧ウ邏ー縺ェ繧ェ繝励す繝ァ繝ウ繧定。ィ遉コ縺吶k

- -

荳玖ィ倥ョ繧ェ繝励す繝ァ繝ウ縺ッ隧ウ邏ー險ュ螳壹☆繧区凾縺縺台スソ逕ィ縺上□縺輔>縲

- -

 

- -

        -繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞ヲ逅縺吶k

- -

繝√ぉ繝繧ッ縺吶k縺ィ蜷梧悄繝輔ぅ繝ォ繧ソ繝シ縺ァ驕ク謚槭&繧後◆繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘☆繧九繝√ぉ繝繧ッ縺励↑縺縺ィ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺ッ蜷梧悄縺輔l縺セ縺帙s縲

- -

 

- -

        -遨コ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞ヲ逅縺吶k

- -

繝√ぉ繝繧ッ縺吶k縺ィ遨コ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘@縺セ縺吶ゑシ医ち繝シ繧イ繝繝医↓遨コ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌☆繧具シ

- -

 

- -

*        -髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞ヲ逅縺吶k

- -

繝√ぉ繝繧ッ縺吶k縺ィ髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘@縺セ縺吶ゑシAndroid縺ァ縺ッ髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ蜷榊燕縺ッ縲鯉シ弱阪°繧牙ァ九∪繧翫∪縺吶′縲WindowsSamba縺ァ縺ッ繝繧」繝ャ繧ッ繝医Μ繝シ縺ョ蜷榊燕縺ァ縺ッ縺ェ縺上ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ繝薙ャ繝医〒縺ゅi繧上&繧後∪縺吶ョ縺ァ縲∝酔譛溘↓繧医j菴懈舌&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ッ髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ縺ェ繧翫∪縺帙sシ

- -

 

- -

*        -髫縺励ヵ繧。繧、繝ォ繧貞ヲ逅縺吶k

- -

繝√ぉ繝繧ッ縺吶k縺ィ髫縺励ヵ繧。繧、繝ォ繧貞酔譛溘@縺セ縺吶ゑシAndroid縺ァ縺ッ髫縺励ヵ繧。繧、繝ォ縺ョ蜷榊燕縺ッ縲鯉シ弱阪°繧牙ァ九∪繧翫∪縺吶′縲WindowsSamba縺ァ縺ッ繝輔ぃ繧、繝ォ縺ョ蜷榊燕縺ァ縺ッ縺ェ縺上ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ繝薙ャ繝医〒縺ゅi繧上&繧後∪縺吶ョ縺ァ縲∝酔譛溘↓繧医j菴懈舌&繧後◆繝輔ぃ繧、繝ォ縺ッ髫縺励ヵ繧。繧、繝ォ縺ォ縺ェ繧翫∪縺帙sシ

- -

 

- -

*        -蜷梧悄荳ュ縺ォ繝阪ャ繝医Ρ繝シ繧ッ繧ィ繝ゥ繝シ縺檎匱逕溘@縺溘i繝ェ繝医Λ繧、縺吶k

- -

繝ェ繝「繝シ繝亥エ縺ョ繧ィ繝ゥ繝シ縺ォ髯舌j蜷梧悄繧偵Μ繝医Λ繧、縺吶k縲ゅΜ繝医Λ繧、縺ッ譛螟ァ3蝗櫁。後≧縲√◎繧後◇繧後ョ繝ェ繝医Λ繧、縺ッ繧ィ繝ゥ繝シ逋コ逕溘°繧30遘堤オ碁℃蠕後↓陦後≧縲

- -

 

- -

*        -諡。蠑オ縺輔l縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ驕ク謚/髯、螟悶ヵ繧」繝ォ繧ソ繝シ繧剃スソ逕ィ縺吶k

- -

荳贋ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ縺碁勁螟悶&繧後※縺繧区凾縺ォ荳倶ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ繧帝∈謚槭@縺ヲ縺繧句エ蜷医ッ荳倶ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘ョ蟇セ雎。縺ォ縺励∪縺吶

- -

 

- -

*        -繝溘Λ繝シ縺ョ譎ゅッ蜑企勁繧呈怙蛻昴↓陦後≧

- -

繝√ぉ繝繧ッ縺吶k縺ィ譛蛻昴↓繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ォ蟄伜惠縺励↑縺繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧貞炎髯、縺励√◎縺ョ蠕後↓繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ィ繝輔ぃ繧、繝ォ繧オ繧、繧コ繧譛邨よ峩譁ー譎る俣縺碁&縺繝輔ぃ繧、繝ォ繧偵さ繝斐シ縺励∪縺吶

- -

繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺SMB縺ョ蝣エ蜷医ッ繝阪ャ繝医Ρ繝シ繧ッ邨檎罰縺ァ繝輔ぃ繧、繝ォ縺ョ繧ケ繧ュ繝」繝ウ繧定。後≧縺溘a蜃ヲ逅譎る俣縺碁聞縺上↑繧翫∪縺吶ょ庄閭ス縺ェ繧峨ーSMB繝励Ο繝医さ繝ォ縺ッ縲SMB2縺ョ縺ソ菴ソ逕ィ縲阪r縺比スソ逕ィ縺上□縺輔>縲

- -

 

- -

        -繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧偵槭せ繧ソ繝シ縺ィ蜷後§縺ォ縺励↑縺

- -

SmbFile#setLastModified()File#setLastModified()縺悟、ア謨励☆繧句エ蜷医↓譛牙柑縺ォ縺励※縺上□縺輔>縲ゅ%繧後↓繧医j縲√ヵ繧。繧、繝ォ縺ョ蟾ョ蛻蛻、螳壹ッ繝輔ぃ繧、繝ォ縺ョ蟄伜惠縺ョ譛臥┌縺ィ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ァ蛻、螳壹&繧後∪縺吶

- -

 

- -

*        -蠑キ蛻カ逧縺ォSMBSync2縺ァ譛邨よ峩譁ー譌・譎ゅr蜿門セ

- -

豈主屓蜈ィ縺ヲ縺ョ繝輔ぃ繧、繝ォ縺後さ繝斐シ縺輔l繧句エ蜷医↓隧ヲ縺励※縺ソ縺ヲ縺上□縺輔>縲Java File#setLastModified()繧剃スソ逕ィ縺励↑縺縺ァ縲SMBSync2迢ャ閾ェ譁ケ蠑上〒繝ュ繝シ繧ォ繝ォ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譌・譎ゅr菫晏ョ医☆繧九

- -

 

- -

*        -SMB繝輔か繝ォ繝繝シ譖ク縺崎セシ縺ソ譎ゅョIO繝舌ャ繝輔ぃ繝シ繧16KB縺ォ蛻カ髯舌☆繧

- -

PC/NAS繝輔か繝ォ繝繝シ縺ク縺ョ譖ク縺崎セシ縺ソ譎ゅ↓窶Access is -denied窶繧ィ繝ゥ繝シ縺檎匱逕溘@縺滓凾縺ォ隧ヲ縺励※縺ソ縺ヲ縺上□縺輔>縲繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝ェ繝「繝シ繝医ヵ繧。繧、繝ォ譖ク縺崎セシ縺ソ譎ゅョIO繝舌ャ繝輔ぃ繝シ繧16KB縺ォ蛻カ髯舌@縺セ縺吶ゅ◆縺縺励√ヱ繝輔か繝シ繝槭Φ繧ケ縺ッ菴惹ク九@縺セ縺吶

- -

 

- -

*        -蟾ョ蛻蛻、螳壹↓繝輔ぃ繧、繝ォ繧オ繧、繧コ繧剃スソ逕ィ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺碁&縺蝣エ蜷医ッ蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧九

- -

 

- -

*        -繝槭せ繧ソ繝シ縺ョ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺悟、ァ縺阪>譎ゅ□縺大キョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝槭せ繧ソ繝シ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺悟、ァ縺阪>譎ゅ□縺大酔譛溘ョ蟇セ雎。縺ィ縺吶k縲

- -

 

- -

*        -蟾ョ蛻蛻、螳壹↓繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎る俣繧剃スソ逕ィ縺吶k

- -

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾縺碁&縺蝣エ蜷医ッ蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧九

- -

 

- -

*        -蟾ョ蛻繝輔ぃ繧、繝ォ縺ョ蛻、螳壹〒險ア螳ケ縺輔l繧区怙邨よ峩譁ー譎ょ綾縺ョ蟾ョ

- -

1遘偵3遘偵→10遘偵ョ縺縺。縺九i驕ク謚槭@縺セ縺吶ゅヵ繧。繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾縺ョ蟾ョ縺碁∈謚槭&繧後◆譎る俣蟾ョ蜀縺ァ縺ゅl縺ー螟画峩縺ェ縺励→縺励∪縺

- -

 

- -

*        -繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ縺後槭せ繧ソ繝シ繝輔ぃ繧、繝ォ繧医j繧よ眠縺励>譎ゅッ繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ繧剃ク頑嶌縺阪@縺ェ縺

- -

繝√ぉ繝繧ッ縺吶k縺ィ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺翫h縺ウ譛邨よ峩譁ー譎ょ綾縺碁&縺」縺ヲ縺縺ヲ繧ゅ槭せ繧ソ繝シ繝輔ぃ繧、繝ォ縺後ち繝シ繧イ繝繝医ヵ繧。繧、繝ォ繧医j繧よ眠縺励>譎ゅ□縺代ヵ繧。繧、繝ォ繧剃ク頑嶌縺阪@縺セ縺吶

- -

*        -繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪∪縺溘ッ繝輔ぃ繧、繝ォ蜷阪↓菴ソ逕ィ縺ァ縺阪↑縺譁蟄励′蜷ォ縺セ繧後※縺繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺セ縺溘ッ繝輔ぃ繧、繝ォ縺ョ蜃ヲ逅繧偵せ繧ュ繝繝励☆繧九 (", :, \, *, <, >, |)

- -

繝√ぉ繝繧ッ縺吶k縺ィ菴ソ逕ィ縺ァ縺阪↑縺譁蟄励′蜷ォ縺セ繧後※縺繧九ョ繧」繝ャ繧ッ繝医Μ繝シ/繝輔ぃ繧、繝ォ繧貞ヲ逅縺帙★隴ヲ蜻翫Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺玲ャ。縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ/繝輔ぃ繧、繝ォ繧貞ヲ逅縺励∪縺吶

- -

 

- -

隧ウ邏ー縺ッ荳玖ィ倥r縺泌盾辣ァ縺上□縺輔>縲

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.html b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.html new file mode 100644 index 00000000..9c854b0b --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_JA_task.html @@ -0,0 +1,118 @@ + + + + +SMBSync2_Help_JA_task +

繝繧ケ繝医Δ繝シ繝

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ縺ョ蜑企勁縺ィ繧ウ繝斐シ縺瑚。後o繧後∪縺帙s縲ょ酔譛溘ち繧ケ繧ッ縺ァ蜷梧悄縺励◆蝣エ蜷医↓繧ウ繝斐シ繧蜑企勁縺輔l繧九ヵ繧。繧、繝ォ繧堤「コ隱阪☆繧九◆繧√↓菴ソ逕ィ縺励※縺上□縺輔>縲 繧ウ繝斐シ繧蜑企勁縺輔l繧九ヵ繧。繧、繝ォ縺ッ螻・豁エ繧繝。繝繧サ繝シ繧ク縺ァ遒コ隱阪〒縺阪∪縺吶ゅユ繧ケ繝医Δ繝シ繝峨〒縺ッ閾ェ蜍募酔譛溘ち繧ケ繧ッ縺ォ險ュ螳壹〒縺阪∪縺帙s縲

+

閾ェ蜍募酔譛溘ち繧ケ繧ッ

+

繧ソ繧ケ繧ッ縺碁∈謚槭&繧後※縺縺ェ縺譎ゅ↓蜷梧悄繝懊ち繝ウ繧呈款縺吶→蜷梧悄繧帝幕蟋九☆繧九ち繧ケ繧ッ縺ォ縺ェ繧翫∪縺吶

+

繧ソ繧ケ繧ッ蜷

+

蜷梧悄繧ソ繧ケ繧ッ縺ョ蜷榊燕縺ァ縺吶ょ錐蜑阪ッ螟ァ譁蟄励→蟆乗枚蟄励ョ蛹コ蛻・繧定。後>縺セ縺帙s縲

+

蜷梧悄譁ケ蠑

+

繝溘Λ繝シ縲√さ繝斐シ縲∫ァサ蜍輔√い繝シ繧ォ繧、繝悶°繧画婿蠑上r驕ク謚槭☆繧九蜷梧悄縺ッ繝槭せ繧ソ繝シ縺九i繧ソ繝シ繧イ繝繝医ョ荳譁ケ蜷代〒陦後>縺セ縺吶

+
    +
  • 繝溘Λ繝シ
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ(*1)縺励√さ繝斐シ邨ゆコ蠕後↓繝槭せ繧ソ繝シ蛛エ縺ォ蟄伜惠縺励↑縺繧ソ繝シ繧イ繝繝亥エ縺ョ繝輔ぃ繧、繝ォ縺ィ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞炎髯、縺吶k縲
  • +
  • 遘サ蜍
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ縺励√ち繝シ繧イ繝繝亥エ縺ォ繧ウ繝斐シ縺励◆繝槭せ繧ソ繝シ蛛エ縺ョ繝輔ぃ繧、繝ォ繧貞炎髯、縺吶k縲ゑシ医◆縺縺励√槭せ繧ソ繝シ縺ィ繧ソ繝シ繧イ繝繝医↓蜷悟錐縺ァ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ィ譖エ譁ー譌・譎ゅ′蜷後§繝輔ぃ繧、繝ォ縺ッ繧ウ繝斐シ縺帙★繝槭せ繧ソ繝シ蛛エ縺ョ繝輔ぃ繧、繝ォ繧貞炎髯、シ
  • +
  • 繧ウ繝斐シ
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ繧偵ち繝シ繧イ繝繝亥エ縺ォ蟾ョ蛻繧ウ繝斐シ縺吶k縲
  • +
  • 繧「繝シ繧ォ繧、繝
    繝槭せ繧ソ繝シ蛛エ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k蜀咏悄縺ィ繝薙ョ繧ェ繧偵い繝シ繧ォ繧、繝門ョ溯。梧律譎ゅh繧頑聴蠖ア譌・譎ゅ′シ玲律莉・蜑阪d30譌・莉・蜑阪↑縺ゥ縺ョ譚。莉カ縺ァ繧ソ繝シ繧イ繝繝医↓遘サ蜍輔☆繧九ゑシ医◆縺縺励√ち繝シ繧イ繝繝医↓ZIP縺ッ菴ソ逕ィ縺ァ縺阪∪縺帙sシ
  • + +
+

*1荳玖ィ倥ョシ捺擅莉カ縺ョ縺縺。縺縺壹l縺九′謌千ォ九@縺溷エ蜷医↓蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ蛻、螳壹@縲√さ繝斐シ繧遘サ蜍輔r陦後>縺セ縺吶ゅ◆縺縺励∝酔譛溘ち繧ケ繧ッ縺ョ繧ェ繝励す繝ァ繝ウ縺ァ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ィ譛邨よ峩譁ー譎る俣繧堤┌隕悶☆繧九%縺ィ縺後〒縺阪∪縺吶

+
    +
  • 繝輔ぃ繧、繝ォ縺悟ュ伜惠縺励↑縺
  • +
  • 繝輔ぃ繧、繝ォ繧オ繧、繧コ縺碁&縺
  • +
  • 譛邨よ峩譁ー譌・譎ゅ′3遘剃サ・荳企&縺(遘呈焚縺ッ蜷梧悄繧ソ繧ケ繧ッ縺ョ繧ェ繝励す繝ァ繝ウ縺ォ繧医j螟画峩蜿ッ閭ス)
  • + +
+

繝槭せ繧ソ繝シ縺ィ繧ソ繝シ繧イ繝繝医r蜈・繧梧崛縺医k

+

繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ィ繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ縺ョ蜀螳ケ繧貞・繧梧崛縺医∪縺

+

繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ

+

蜷梧悄蜈繝繧」繝ャ繧ッ繝医Μ繝シ繧呈欠螳壹@縺セ縺吶ゅい繧、繧ウ繝ウ繧偵ち繝繝励☆繧九→繝輔か繝ォ繝繝シ邱ィ髮逕サ髱「縺瑚。ィ遉コ縺輔l縺セ縺

+

繧ソ繝シ繧イ繝繝医ヵ繧ゥ繝ォ繝繝シ

+

蜷梧悄蜈医ョ繧」繝ャ繧ッ繝医Μ繝シ繝シ繧呈欠螳壹@縺セ縺吶ゅい繧、繧ウ繝ウ繧偵ち繝繝励☆繧九→蜷梧悄蜈医ヵ繧ゥ繝ォ繝繝シ邱ィ髮逕サ髱「縺瑚。ィ遉コ縺輔l縺セ縺

+

繝輔ぃ繧、繝ォ繧帝∈謚槭☆繧

+

繝√ぉ繝繧ッ縺励↑縺縺ィ蜈ィ縺ヲ縺ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ蜷梧悄縺吶k繝輔ぃ繧、繝ォ繧帝∈謚槭☆繧九%縺ィ縺後〒縺阪∪縺吶

+
    +
  • 繧ェ繝シ繝繧」繧ェ繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧
    繝√ぉ繝繧ッ縺吶k縺ィ荳玖ィ倥ョ諡。蠑オ蟄舌ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶
    aac, aif, aifc, aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav
  • +
  • 繧、繝。繝シ繧ク繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧
    繝√ぉ繝繧ッ縺吶k縺ィ荳玖ィ倥ョ諡。蠑オ蟄舌ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶
    bmp, cgm, djv, djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png,pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, xbm, xpm, xwd
  • +
  • 繝薙ョ繧ェ繝輔ぃ繧、繝ォ繧貞酔譛溘☆繧
    繝√ぉ繝繧ッ縺吶k縺ィ荳玖ィ倥ョ諡。蠑オ蟄舌ョ繝輔ぃ繧、繝ォ繧貞酔譛溘@縺セ縺吶
    avi, m4u, mov, mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv
  • +
  • 繝輔ぃ繧、繝ォ繝輔ぅ繝ォ繧ソ繝シ
    荳願ィ倅サ・螟悶〒蜷梧悄縺吶k繝輔ぃ繧、繝ォ縺ョ蜷榊燕繧諡。蠑オ蟄舌r驕ク謚槭〒縺阪∪縺
  • + +
+

蜷梧悄縺吶k繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧呈欠螳壹☆繧

+

繝√ぉ繝繧ッ縺励↑縺縺ィ蜈ィ縺ヲ縺ョ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘@縺セ縺吶ゅメ繧ァ繝繧ッ縺吶k縺ィ繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ繝懊ち繝ウ縺瑚。ィ遉コ縺輔l縺セ縺吶

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ
    蜷梧悄縺吶k繝繧」繝ャ繧ッ繝医Μ繝シ繧帝∈謚槭〒縺阪∪縺吶ゅち繝繝励☆繧九→繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シ邱ィ髮逕サ髱「縺瑚。ィ遉コ縺輔l縺セ縺吶
  • + +
+

蜈髮サ荳ュ縺ョ譎ゅ□縺大酔譛溘r髢句ァ九☆繧

+

蜈髮サ荳ュ縺縺大酔譛溘r髢句ァ九〒縺阪∪縺吶ょ髮サ縺励※縺縺ェ縺譎ゅ↓蜷梧悄繧帝幕蟋九☆繧九→繧ィ繝ゥ繝シ縺ィ縺ェ繧雁セ檎カ壹ョ蜷梧悄繧ソ繧ケ繧ッ縺ョ髢句ァ九r荳ュ豁「縺励∪縺吶

+

繝槭せ繧ソ繝シ縺ァ謖螳壹&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ョ逶エ荳九↓蟄伜惠縺吶k繝輔ぃ繧、繝ォ繧貞ヲ逅縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ァ謖螳壹&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蟄伜惠縺吶k繝輔ぃ繧、繝ォ縺ィ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺翫h縺ウ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ繧貞ヲ逅縺励∪縺吶ゅメ繧ァ繝繧ッ縺励※縺縺ェ縺蝣エ蜷医ッ繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ァ謖螳壹&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ォ蟄伜惠縺吶k繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺翫h縺ウ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ蜷ォ縺セ繧後k繝輔ぃ繧、繝ォ縺縺代r蜃ヲ逅縺励∪縺吶
萓具シ壼驛ィ繧ケ繝医Ξ繝シ繧ク縺ョ繝ォ繝シ繝医r繝槭せ繧ソ繝シ縺ォ縺励※縲∝酔譛溘☆繧九ョ繧」繝ャ繧ッ繝医Μ縺ッ繝繧」繝ャ繧ッ繝医Μ驕ク謚槭ヵ繧」繝ォ繧ソ繝シ縺ァ謖螳壹☆繧句エ蜷医ッ繝√ぉ繝繧ッ辟。縺励↓縺励※縺上□縺輔>縲√Ν繝シ繝医ョ繧」繝ャ繧ッ繝医Μ縺ョ繝輔ぃ繧、繝ォ縺ッ髯、螟悶&繧後∪縺吶

+

荳頑嶌繧ウ繝斐シ縺セ縺溘ッ蜑企勁縺ョ蜑阪↓遒コ隱阪☆繧

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ縺ョ蜑企勁縺ィ荳頑嶌縺阪☆繧句燕縺ォ遒コ隱阪ム繧、繧「繝ュ繧ー繧定。ィ遉コ縺励∪縺吶

+

辟。邱哭AN

+
    +
  • 繧ェ繝輔〒繧ょョ溯。
    繝阪ャ繝医Ρ繝シ繧ッ縺ョ迥カ諷九↓髢「菫ゅ↑縺丞酔譛溘r髢句ァ九〒縺阪∪縺
  • +
  • AP縺ォ謗・邯壹&繧後※縺繧区凾
    繧「繧ッ繧サ繧ケ繝昴う繝ウ繝医↓謗・邯壹@縺ヲ縺繧後ー蜷梧悄繧帝幕蟋九〒縺阪∪縺
  • +
  • 繝励Λ繧、繝吶シ繝IP繧「繝峨Ξ繧ケ
    IP繧「繝峨Ξ繧ケ縺後励Λ繧、繝吶シ繝医い繝峨Ξ繧ケ縺ョ譎ゅ↓蜷梧悄繧帝幕蟋九〒縺阪∪縺
  • +
  • IP繧「繝峨Ξ繧ケ繝ェ繧ケ繝
    蜷梧悄繧帝幕蟋九〒縺阪kIP繧「繝峨Ξ繧ケ繧呈欠螳壹〒縺阪∪縺吶
    繝輔ぅ繝ォ繧ソ繝シ縺ッ繝ッ繧、繝ォ繝峨き繝シ繝峨′菴ソ逕ィ縺ァ縺阪∪縺吶 (萓:192.168.100.*, 192.168.*)
  • + +
+

迚ケ螳壹ョWiFi縺ォ謗・邯壹@縺滓凾縺ォ蜷梧悄縺吶k縺ォ縺ッ莉・荳九ョ譁ケ豕輔′縺ゅj縺セ縺吶りゥウ邏ー縺ッFAQ繧貞盾辣ァ縺上□縺輔>縲

+
    +
  1. WiFi繝ォ繝シ繧ソ繝シ縺ァIP繧「繝峨Ξ繧ケ繧192.168.0.0/24莉・螟悶↓縺励※IP繧「繝峨Ξ繧ケ繝ェ繧ケ繝医↓逋サ骭イ縺吶k
  2. +
  3. Android蛛エ縺ァIP繧「繝峨Ξ繧ケ繧貞崋螳壹@縺ヲIP繧「繝峨Ξ繧ケ繝ェ繧ケ繝医↓逋サ骭イ縺吶k
  4. + +
+

謖螳壹&繧後◆IP繧「繝峨Ξ繧ケ縺ァ辟。縺蝣エ蜷医ち繧ケ繧ッ繧偵せ繧ュ繝繝励@縲∵ャ。縺ョ繧ソ繧ケ繧ッ繧帝幕蟋九☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィ譚。莉カ縺九i螟悶l縺溷エ蜷医ッ繧ィ繝ゥ繝シ縺ィ縺帙★蠕檎カ壹ョ繧ソ繧ケ繧ッ繧帝幕蟋九@縺セ縺吶

+

繧ー繝ュ繝シ繝舌ΝIP繧「繝峨Ξ繧ケ縺ァ縺ョ蜷梧悄繧定ィア蜿ッ縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ繝励Λ繧、繝吶シ繝医い繝峨Ξ繧ケ莉・螟悶〒縺ョ蜷梧悄縺悟ョ溯。後〒縺阪∪縺吶

+

隧ウ邏ー縺ェ繧ェ繝励す繝ァ繝ウ繧定。ィ遉コ縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ謖螳壹〒縺阪k繧ェ繝励す繝ァ繝ウ縺瑚。ィ遉コ縺輔l縺セ縺吶

+

繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞ヲ逅縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ蜷梧悄繝輔ぅ繝ォ繧ソ繝シ縺ァ驕ク謚槭&繧後◆繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘☆繧九繝√ぉ繝繧ッ縺励↑縺縺ィ繧オ繝悶ョ繧」繝ャ繧ッ繝医Μ繝シ縺ッ蜷梧悄縺輔l縺セ縺帙s縲

+

遨コ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞ヲ逅縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ遨コ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘@縺セ縺吶ゑシ医ち繝シ繧イ繝繝医↓遨コ縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ繧剃ス懈舌☆繧具シ

+

髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞ヲ逅縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘@縺セ縺吶ゑシAndroid縺ァ縺ッ髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ蜷榊燕縺ッ縲鯉シ弱阪°繧牙ァ九∪繧翫∪縺吶′縲仝indows繧Тamba縺ァ縺ッ繝繧」繝ャ繧ッ繝医Μ繝シ縺ョ蜷榊燕縺ァ縺ッ縺ェ縺上ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ繝薙ャ繝医〒縺ゅi繧上&繧後∪縺吶ョ縺ァ縲∝酔譛溘↓繧医j菴懈舌&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ッ髫縺励ョ繧」繝ャ繧ッ繝医Μ繝シ縺ォ縺ェ繧翫∪縺帙sシ

+

髫縺励ヵ繧。繧、繝ォ繧貞ヲ逅縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ髫縺励ヵ繧。繧、繝ォ繧貞酔譛溘@縺セ縺吶ゑシAndroid縺ァ縺ッ髫縺励ヵ繧。繧、繝ォ縺ョ蜷榊燕縺ッ縲鯉シ弱阪°繧牙ァ九∪繧翫∪縺吶′縲仝indows繧Тamba縺ァ縺ッ繝輔ぃ繧、繝ォ縺ョ蜷榊燕縺ァ縺ッ縺ェ縺上ョ繧」繝ャ繧ッ繝医Μ繝シ縺ョ繝薙ャ繝医〒縺ゅi繧上&繧後∪縺吶ョ縺ァ縲∝酔譛溘↓繧医j菴懈舌&繧後◆繝輔ぃ繧、繝ォ縺ッ髫縺励ヵ繧。繧、繝ォ縺ォ縺ェ繧翫∪縺帙sシ

+

繝阪ャ繝医Ρ繝シ繧ッ繧ィ繝ゥ繝シ縺檎匱逕溘@縺溷エ蜷医↓繝ェ繝医Λ繧、縺吶k

+

SMB繧オ繝シ繝舌シ縺ョ繧ィ繝ゥ繝シ縺ォ髯舌j蜷梧悄繧偵Μ繝医Λ繧、縺吶k縲ゅΜ繝医Λ繧、縺ッ譛螟ァ3蝗櫁。後≧縲√◎繧後◇繧後ョ繝ェ繝医Λ繧、縺ッ繧ィ繝ゥ繝シ逋コ逕溘°繧30遘堤オ碁℃蠕後↓陦後≧縲

+

諡。蠑オ縺輔l縺溘ョ繧」繝ャ繧ッ繝医Μ繝シ驕ク謚/髯、螟悶ヵ繧」繝ォ繧ソ繝シ繧剃スソ逕ィ縺吶k

+

荳贋ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ縺碁勁螟悶&繧後※縺繧区凾縺ォ荳倶ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ繧帝∈謚槭@縺ヲ縺繧句エ蜷医ッ荳倶ス阪ョ繧」繝ャ繧ッ繝医Μ繝シ繧貞酔譛溘ョ蟇セ雎。縺ォ縺励∪縺吶

+

繝繧」繝ャ繧ッ繝医Μ繝シ繝輔ぅ繝ォ繧ソ繝シV2繧剃スソ逕ィ

+

繝√ぉ繝繧ッ縺吶k縺ィ譁ー縺励>繝輔ぅ繝ォ繧ソ繝シ縺御スソ逕ィ縺ァ縺阪∪縺吶莉・蜑阪ョ繝輔ぅ繝ォ繧ソ繝シ縺ィ謖吝虚縺碁&縺蝣エ蜷医′縺ゅj縺セ縺吶ョ縺ァ蜊∝縺ェ繝繧ケ繝医r陦後>菴ソ逕ィ縺励※縺上□縺輔>縲

+

繝輔ぅ繝ォ繧ソ繝シ縺ォ繧医j髯、螟悶&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ/繝輔ぃ繧、繝ォ繧貞炎髯、縺吶k

+

繝√ぉ繝繧ッ縺吶k縺ィ繝輔ぅ繝ォ繧ソ繝シ縺ァ髯、螟悶&繧後◆繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧貞炎髯、縺励∪縺吶

+

繝溘Λ繝シ縺ョ譎ゅッ蜑企勁繧呈怙蛻昴↓陦後≧

+

繝√ぉ繝繧ッ縺吶k縺ィ譛蛻昴↓繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ォ蟄伜惠縺励↑縺繝繧」繝ャ繧ッ繝医Μ繝シ縺ィ繝輔ぃ繧、繝ォ繧貞炎髯、縺励√◎縺ョ蠕後↓繝槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺ィ繝輔ぃ繧、繝ォ繧オ繧、繧コ繧譛邨よ峩譁ー譎る俣縺碁&縺繝輔ぃ繧、繝ォ繧偵さ繝斐シ縺励∪縺吶ゅ槭せ繧ソ繝シ繝輔か繝ォ繝繝シ縺郡MB縺ョ蝣エ蜷医ッ繝阪ャ繝医Ρ繝シ繧ッ邨檎罰縺ァ繝輔ぃ繧、繝ォ縺ョ繧ケ繧ュ繝」繝ウ繧定。後≧縺溘a蜃ヲ逅譎る俣縺碁聞縺上↑繧翫∪縺吶ょ庄閭ス縺ェ繧峨ーSMB繝励Ο繝医さ繝ォ縺ッ縲郡MBv2/3縲阪r縺比スソ逕ィ縺上□縺輔>縲

+

繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾繧偵槭せ繧ソ繝シ縺ィ蜷後§縺ォ縺励↑縺

+

SmbFile#setLastModified()繧Ёile#setLastModified()縺悟、ア謨励☆繧句エ蜷医↓譛牙柑縺ォ縺励※縺上□縺輔>縲ゅ%繧後↓繧医j縲√ヵ繧。繧、繝ォ縺ョ蟾ョ蛻蛻、螳壹ッ繝輔ぃ繧、繝ォ縺ョ蟄伜惠縺ョ譛臥┌縺ィ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺ァ蛻、螳壹&繧後∪縺吶

+

蠑キ蛻カ逧縺ォSMBSync2縺ァ譛邨よ峩譁ー譌・譎ゅr蜿門セ

+

豈主屓蜈ィ縺ヲ縺ョ繝輔ぃ繧、繝ォ縺後さ繝斐シ縺輔l繧句エ蜷医↓隧ヲ縺励※縺ソ縺ヲ縺上□縺輔>縲Java File#setLastModified()繧剃スソ逕ィ縺励↑縺縺ァ縲ヾMBSync2迢ャ閾ェ譁ケ蠑上〒繝ュ繝シ繧ォ繝ォ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譌・譎ゅr菫晏ョ医☆繧九

+

SMB繝輔か繝ォ繝繝シ譖ク縺崎セシ縺ソ譎ゅョIO繝舌ャ繝輔ぃ繝シ繧16KB縺ォ蛻カ髯舌☆繧

+

PC/NAS繝輔か繝ォ繝繝シ縺ク縺ョ譖ク縺崎セシ縺ソ譎ゅ↓窶廣ccess is denied窶昴お繝ゥ繝シ縺檎匱逕溘@縺滓凾縺ォ隧ヲ縺励※縺ソ縺ヲ縺上□縺輔>縲ゅメ繧ァ繝繧ッ縺励◆蝣エ蜷医ッ繝ェ繝「繝シ繝医ヵ繧。繧、繝ォ譖ク縺崎セシ縺ソ譎ゅョIO繝舌ャ繝輔ぃ繝シ繧16KB縺ォ蛻カ髯舌@縺セ縺吶ゅ◆縺縺励√ヱ繝輔か繝シ繝槭Φ繧ケ縺ッ菴惹ク九@縺セ縺吶

+

蟾ョ蛻蛻、螳壹↓繝輔ぃ繧、繝ォ繧オ繧、繧コ繧剃スソ逕ィ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺碁&縺蝣エ蜷医ッ蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧九

+

繝槭せ繧ソ繝シ縺ョ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺悟、ァ縺阪>譎ゅ□縺大キョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝槭せ繧ソ繝シ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺悟、ァ縺阪>譎ゅ□縺大酔譛溘ョ蟇セ雎。縺ィ縺吶k縲

+

蟾ョ蛻蛻、螳壹↓繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎る俣繧剃スソ逕ィ縺吶k

+

繝√ぉ繝繧ッ縺励◆蝣エ蜷医ッ繝輔ぃ繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾縺碁&縺蝣エ蜷医ッ蟾ョ蛻繝輔ぃ繧、繝ォ縺ィ縺励※蛻、螳壹☆繧九

+

蟾ョ蛻繝輔ぃ繧、繝ォ縺ョ蛻、螳壹〒險ア螳ケ縺輔l繧区怙邨よ峩譁ー譎ょ綾縺ョ蟾ョ

+

1遘偵3遘偵→10遘偵ョ縺縺。縺九i驕ク謚槭@縺セ縺吶ゅヵ繧。繧、繝ォ縺ョ譛邨よ峩譁ー譎ょ綾縺ョ蟾ョ縺碁∈謚槭&繧後◆譎る俣蟾ョ蜀縺ァ縺ゅl縺ー螟画峩縺ェ縺励→縺励∪縺

+

繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ縺後槭せ繧ソ繝シ繝輔ぃ繧、繝ォ繧医j繧よ眠縺励>譎ゅッ繧ソ繝シ繧イ繝繝医ヵ繧。繧、繝ォ繧剃ク頑嶌縺阪@縺ェ縺

+

繝√ぉ繝繧ッ縺吶k縺ィ繝輔ぃ繧、繝ォ繧オ繧、繧コ縺翫h縺ウ譛邨よ峩譁ー譎ょ綾縺碁&縺」縺ヲ縺縺ヲ繧ゅ槭せ繧ソ繝シ繝輔ぃ繧、繝ォ縺後ち繝シ繧イ繝繝医ヵ繧。繧、繝ォ繧医j繧よ眠縺励>譎ゅ□縺代ヵ繧。繧、繝ォ繧剃ク頑嶌縺阪@縺セ縺吶

+

螟乗凾髢薙→讓呎コ匁凾縺ョ譎る俣蟾ョ繧堤┌隕悶☆繧

+

繝√ぉ繝繧ッ縺吶k縺ィ螟乗凾髢薙→讓呎コ匁凾縺ョ譎る俣蟾ョ繧堤┌隕悶@縺セ縺吶

+

螟乗凾髢薙→讓呎コ匁凾縺ョ譎る俣蟾ョ(蛻)

+

辟。隕悶☆繧区凾髢灘キョ繧呈欠螳壹@縺セ縺吶

+

繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪∪縺溘ッ繝輔ぃ繧、繝ォ蜷阪↓菴ソ逕ィ縺ァ縺阪↑縺譁蟄励′蜷ォ縺セ繧後※縺繧九ョ繧」繝ャ繧ッ繝医Μ繝シ縺セ縺溘ッ繝輔ぃ繧、繝ォ縺ョ蜃ヲ逅繧偵せ繧ュ繝繝励☆繧九 (", :, \, *, <, >, |)

+

繝√ぉ繝繧ッ縺吶k縺ィ菴ソ逕ィ縺ァ縺阪↑縺譁蟄励′蜷ォ縺セ繧後※縺繧九ョ繧」繝ャ繧ッ繝医Μ繝シ/繝輔ぃ繧、繝ォ繧貞ヲ逅縺帙★隴ヲ蜻翫Γ繝繧サ繝シ繧ク繧定。ィ遉コ縺玲ャ。縺ョ繝繧」繝ャ繧ッ繝医Μ繝シ/繝輔ぃ繧、繝ォ繧貞ヲ逅縺励∪縺吶

+

隧ウ邏ー縺ッ荳玖ィ倥Μ繝ウ繧ッ蜈医ョPDF繧偵#蜿らァ縺上□縺輔>縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.htm b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.htm deleted file mode 100644 index ab5407c9..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.htm +++ /dev/null @@ -1,596 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -точка крепления

- -

Выберите точку крепления, которая будет использоваться -для внутреннего хранения.

- -

 

- -

*         -список каталогов

- -

Нажмите на радиокнопку в правой части экрана, чтобы -выбрать интересующую вас директорию. Чтобы открыть подкаталог, нажмите на имя -каталога.

- -

 

- -

*         -каталог

- -

Введите -целевой или основной каталог. Если указан несуществующий каталог, то он будет -создан во время выполнения синхронизации.

- -

 

- -

*         -Добавить ключевое слово

- -

ы -можете использовать %YEAR%, %MONTH%, %DAY% и %DAY-OF-YEAR% в целевом каталоге. -Ключевые слова конвертируются в даты в начале синхронизации.

- -

 

- -

Этот параметр отображается только при копировании или перемещении типа -синхронизации.

- -

Если этот флажок установлен, то -дата и время съемки извлекаются из Exif и используются вместо даты и времени -начала синхронизации. Если дату и время съемки нельзя извлечь из Exif, -используется последнее измененное время файла.

- -

 

- -

Следующие опции отображаются только при архивировании типа -синхронизации.

- -

*         -Отображение подтверждающего сообщения, когда дату и время съемки -невозможно получить из Exif.

- -

Если этот флажок установлен, -пользователю будет показано сообщение, подтверждающее использование последнего -измененного времени файла, если дата и время съемки не могут быть получены из -Exif. При выборе пункта Отмена в сообщении подтверждения файл не будет -заархивирован.

- -

 

- -

*         -Цель для архивирования

- -

Выберите критерии архивирования -фотографий.

- -

*        -Неважно, в какой день это было сделано.

- -

Архивировать все фотографии

- -

*        -Дата съёмки - более 7 дней.

- -

Более чем на 7 дней старше -текущего времени

- -

*        -Дата съёмки - более 30 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 60 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 90 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 180 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки больше года.

- -

Дата фотографии более чем на -год старше текущего времени.

- -

 

- -

*         -Переименовать файл и сохранить его в указанном каталоге при -архивировании

- -

Если эта опция установлена, то -при архивировании файл будет переименован. Имя файла может быть указано в -качестве даты и времени в "Шаблоне имени файла". Вы также можете -создать каталог для хранения файлов. Пожалуйста, включите "Сохранять в -каталог при архивировании", чтобы хранить его в каталоге.

- -

 

- -

*         -Имя файла номер заказа

- -

Добавьте номер заказа к имени -файла при архивировании.

- -

*        -Я им не пользуюсь.

- -

Не добавляйте номер заказа.

- -

*        -Добавь трехзначное число.

- -

Добавить 001-999.

- -

*        -Добавь четырехзначное число.

- -

Добавить 0001-9999.

- -

*        -Добавь пятизначное число.

- -

Добавить 00001-99999.

- -

*        -Добавь шестизначное число.

- -

Добавить 000001-999999.

- -

 

- -

*         -Шаблон имени файла

- -

*        -Оригинальное имя

- -

Введите -имя файла перед переименованием в шаблоне.

- -

*        -Свидание

- -

Введите -в шаблон дату (например, 2018-04-16).

- -

*        -время

- -

Введите -время (например, 12-00-30) в шаблон.

- -

*        -Шаблон имени файла

- -

Введите -шаблон переименовываемого файла. Значение по умолчанию DSC_%DATE%. Вы можете -ввести ключевое слово за курсором, нажав кнопку .

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

*         -При архивировании он будет сохранен в каталог

- -

Вы -можете создать и сохранить каталог при архивировании. Если поставить галочку в -этом поле, то отобразится "Шаблон названия каталога".

- -

 

- -

*         -Шаблон имени каталога

- -

Введите -шаблон создаваемой директории, например DIR-%YEAR%-%MONTH%. Вы можете ввести -ключевое слово за курсором, нажав кнопку .

- -

*        -западный календарь

- -

Укажите -год (например, 2018) в шаблоне.

- -

*        -месяц (года)

- -

Введите -в шаблоне месяц (например, 04).

- -

*        -день

- -

Введите в шаблон дату -(например, 16).

- -

*        -Шаблон имени каталога

- -

Введите -шаблон создаваемого каталога. Значения по умолчанию – %ГОДА%.

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

Пожалуйста, смотрите ниже для -получения дополнительной информации.

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.html b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.html new file mode 100644 index 00000000..aee61e97 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_internal.html @@ -0,0 +1,120 @@ + + + + +SMBSync2_Help_RU_folder_internal +

ムひセムミコミー ミコムミオミソミサミオミスミクム

+

ミ柘巾アミオムミクムひオ ムひセムミコム ミコムミオミソミサミオミスミクム, ミコミセムひセムミーム ミアムσエミオム ミクムミソミセミサム糊キミセミイミームび袴ム ミエミサム ミイミスムτびミオミスミスミオミウミセ ムムミーミスミオミスミクム.

+

+

ムミソミクムミセミコ ミコミームひーミサミセミウミセミイ

+

ミ斷ーミカミシミクムひオ ミスミー ムミーミエミクミセミコミスミセミソミコム ミイ ミソムミーミイミセミケ ムミームムひク ム災コムミーミスミー, ムムひセミアム ミイム巾アムミームび ミクミスムひオムミオムムτ紗禾τ ミイミーム ミエミクムミオミコムひセムミクム. ミァムひセミアム ミセムひコムム錦び ミソミセミエミコミームひーミサミセミウ, ミスミーミカミシミクムひオ ミスミー ミクミシム ミコミームひーミサミセミウミー.

+

+

ミコミームひーミサミセミウ

+

ミ漬イミオミエミクムひオ ムミオミサミオミイミセミケ ミクミサミク ミセムミスミセミイミスミセミケ ミコミームひーミサミセミウ. ミ篇ミサミク ムσコミーミキミーミス ミスミオムムτ禍オムムひイムτ紗禍クミケ ミコミームひーミサミセミウ, ムひセ ミセミス ミアムσエミオム ムミセミキミエミーミス ミイミセ ミイムミオミシム ミイム巾ソミセミサミスミオミスミクム ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミ頒セミアミーミイミクムび ミコミサム紗ミオミイミセミオ ムミサミセミイミセ

+

ム ミシミセミカミオムひオ ミクムミソミセミサム糊キミセミイミームび %YEAR%, %MONTH%, %DAY% ミク %DAY-OF-YEAR% ミイ ムミオミサミオミイミセミシ ミコミームひーミサミセミウミオ. ミ墟サム紗ミオミイム巾オ ムミサミセミイミー ミコミセミスミイミオムムひクムムτ紗びム ミイ ミエミームび ミイ ミスミームミーミサミオ ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミュムひセム ミソミームミーミシミオムび ミセムひセミアムミーミカミーミオムびム ムひセミサム糊コミセ ミソムミク ミコミセミソミクムミセミイミーミスミクミク ミクミサミク ミソミオムミオミシミオム禍オミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムひセ ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミクミキミイミサミオミコミーム紗びム ミクミキ Exif ミク ミクムミソミセミサム糊キムτ紗びム ミイミシミオムムひセ ミエミームび ミク ミイムミオミシミオミスミク ミスミームミーミサミー ムミクミスムムミセミスミクミキミームミクミク. ミ篇ミサミク ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミサム糊キム ミクミキミイミサミオムム ミクミキ Exif, ミクムミソミセミサム糊キムσオムびム ミソミセムミサミオミエミスミオミオ ミクミキミシミオミスミオミスミスミセミオ ミイムミオミシム ムミーミケミサミー.

+

+

ミ。ミサミオミエムτ紗禍クミオ ミセミソムミクミク ミセムひセミアムミーミカミーム紗びム ムひセミサム糊コミセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ樮ひセミアムミーミカミオミスミクミオ ミソミセミエムひイミオムミカミエミーム紗禍オミウミセ ムミセミセミアム禍オミスミクム, ミコミセミウミエミー ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミイミセミキミシミセミカミスミセ ミソミセミサムτミクムび ミクミキ Exif.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ミソミセミサム糊キミセミイミームひオミサム ミアムσエミオム ミソミセミコミーミキミーミスミセ ムミセミセミアム禍オミスミクミオ, ミソミセミエムひイミオムミカミエミーム紗禍オミオ ミクムミソミセミサム糊キミセミイミーミスミクミオ ミソミセムミサミオミエミスミオミウミセ ミクミキミシミオミスミオミスミスミセミウミセ ミイムミオミシミオミスミク ムミーミケミサミー, ミオムミサミク ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミスミオ ミシミセミウムτ ミアム錦び ミソミセミサムτミオミスム ミクミキ Exif. ミ湲ミク ミイム巾アミセムミオ ミソムσスミコムひー ミ樮ひシミオミスミー ミイ ムミセミセミアム禍オミスミクミク ミソミセミエムひイミオムミカミエミオミスミクム ムミーミケミサ ミスミオ ミアムσエミオム ミキミーミームムミクミイミクムミセミイミーミス.

+

+

ミヲミオミサム ミエミサム ミームムミクミイミクムミセミイミーミスミクム

+

ミ柘巾アミオムミクムひオ ミコムミクムひオムミクミク ミームムミクミイミクムミセミイミーミスミクム ムミセムひセミウムミームミクミケ.

+
    +
  • ミ斷オミイミーミカミスミセ, ミイ ミコミーミコミセミケ ミエミオミスム ム采ひセ ミアム巾サミセ ムミエミオミサミーミスミセ.

    +

    ミ績ムミクミイミクムミセミイミームび ミイムミオ ムミセムひセミウムミームミクミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 7 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 7 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 30 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 60 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 90 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 180 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク ミアミセミサム袴威オ ミウミセミエミー.

    +

    ミ頒ームひー ムミセムひセミウムミームミクミク ミアミセミサミオミオ ムミオミシ ミスミー ミウミセミエ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク.

    +
  • + +
+

+

ミ渙オムミオミクミシミオミスミセミイミームび ムミーミケミサ ミク ムミセムムミーミスミクムび ミオミウミセ ミイ ムσコミーミキミーミスミスミセミシ ミコミームひーミサミセミウミオ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムひセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムミーミケミサ ミアムσエミオム ミソミオムミオミクミシミオミスミセミイミーミス. ミ侑シム ムミーミケミサミー ミシミセミカミオム ミアム錦び ムσコミーミキミーミスミセ ミイ ミコミームミオムムひイミオ ミエミームび ミク ミイムミオミシミオミスミク ミイ "ミィミーミアミサミセミスミオ ミクミシミオミスミク ムミーミケミサミー". ミ柘 ムひーミコミカミオ ミシミセミカミオムひオ ムミセミキミエミームび ミコミームひーミサミセミウ ミエミサム ムムミーミスミオミスミクム ムミーミケミサミセミイ. ミ渙セミカミーミサムσケムムひー, ミイミコミサム紗ミクムひオ "ミ。ミセムムミーミスム肖び ミイ ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク", ムムひセミアム ムムミーミスミクムび ミオミウミセ ミイ ミコミームひーミサミセミウミオ.

+

+

ミ侑シム ムミーミケミサミー ミスミセミシミオム ミキミーミコミーミキミー

+

ミ頒セミアミーミイム袴ひオ ミスミセミシミオム ミキミーミコミーミキミー ミコ ミクミシミオミスミク ムミーミケミサミー ミソムミク ミームムミクミイミクムミセミイミーミスミクミク.

+
    +
  • ミッ ミクミシ ミスミオ ミソミセミサム糊キムτ紗ム.

    +

    ミ斷オ ミエミセミアミーミイミサム紹ケムひオ ミスミセミシミオム ミキミーミコミーミキミー.

    +
  • +
  • ミ頒セミアミーミイム ムびミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 001-999.

    +
  • +
  • ミ頒セミアミーミイム ムミオムび錦ミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 0001-9999.

    +
  • +
  • ミ頒セミアミーミイム ミソム肖ひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 00001-99999.

    +
  • +
  • ミ頒セミアミーミイム ム威オムムひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 000001-999999.

    +
  • + +
+

+

ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

+
    +
  • ミ樮ミクミウミクミスミーミサム糊スミセミオ ミクミシム

    +

    ミ漬イミオミエミクムひオ ミクミシム ムミーミケミサミー ミソミオムミオミエ ミソミオムミオミクミシミオミスミセミイミーミスミクミオミシ ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミ。ミイミクミエミーミスミクミオ

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 2018-04-16).

    +
  • +
  • ミイムミオミシム

    +

    ミ漬イミオミエミクムひオ ミイムミオミシム (ミスミーミソムミクミシミオム, 12-00-30) ミイ ム威ーミアミサミセミス.

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ミソミオムミオミクミシミオミスミセミイム巾イミーミオミシミセミウミセ ムミーミケミサミー. ミ厘スミームミオミスミクミオ ミソミセ ムσシミセミサムミーミスミクム DSC_%DATE%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム .

    +

    ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

    +
  • + +
+

+

ミ湲ミク ミームムミクミイミクムミセミイミーミスミクミク ミセミス ミアムσエミオム ムミセムムミーミスミオミス ミイ ミコミームひーミサミセミウ

+

ミ柘 ミシミセミカミオムひオ ムミセミキミエミームび ミク ムミセムムミーミスミクムび ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク. ミ篇ミサミク ミソミセムムひーミイミクムび ミウミーミサミセムミコム ミイ ム采ひセミシ ミソミセミサミオ, ムひセ ミセムひセミアムミーミキミクムびム "ミィミーミアミサミセミス ミスミーミキミイミーミスミクム ミコミームひーミサミセミウミー".

+

+

ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

+

ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミケ ミエミクムミオミコムひセムミクミク, ミスミーミソムミクミシミオム DIR-%YEAR%-%MONTH%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム .

+
    +
  • ミキミーミソミーミエミスム巾ケ ミコミーミサミオミスミエミームム

    +

    ミ」ミコミーミカミクムひオ ミウミセミエ (ミスミーミソムミクミシミオム, 2018) ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミシミオムム肖 (ミウミセミエミー)

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミスミオ ミシミオムム肖 (ミスミーミソムミクミシミオム, 04).

    +
  • +
  • ミエミオミスム

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 16).

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミウミセ ミコミームひーミサミセミウミー. ミ厘スミームミオミスミクム ミソミセ ムσシミセミサムミーミスミクム 窶 %ミ寅榧頒%.

    +
  • + +
+

ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

+

+

ミ渙セミカミーミサムσケムムひー, ムミシミセムびミクムひオ ミスミクミカミオ ミエミサム ミソミセミサムτミオミスミクム ミエミセミソミセミサミスミクムひオミサム糊スミセミケ ミクミスムミセムミシミームミクミク.

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.htm b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.htm deleted file mode 100644 index 32771650..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.htm +++ /dev/null @@ -1,603 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -список каталогов

- -

Нажмите -на радиокнопку в правой части экрана, чтобы выбрать интересующую вас -директорию. Чтобы открыть подкаталог, нажмите на имя каталога.

- -

 

- -

*         -Добавить ключевое слово

- -

Вы -можете использовать %YEAR%, %MONTH%, %DAY% и %DAY-OF-YEAR% в целевом каталоге. -Ключевые слова конвертируются в даты в начале синхронизации.

- -

 

- -

Этот параметр отображается только при копировании или перемещении типа -синхронизации.

- -

*         -Используйте дату и время фото/видеосъемки для преобразования -ключевых слов, добавленных в каталог целевой папки.

- -

Если этот флажок установлен, то -дата и время съемки извлекаются из Exif и используются вместо даты и времени -начала синхронизации. Если дату и время съемки нельзя извлечь из Exif, -используется последнее измененное время файла.

- -

 

- -

*         -каталог

- -

Укажите имя главного или целевого каталога. Если -целевой каталог не существует, то он будет создан при синхронизации.

- -

 

- -

*         -SDCARD-опция

- -

Выберите корневую директорию SDCARD, чтобы получить -доступ к SDCARD. Если вы не можете его выбрать, перейдите в "Меню -> -Информация о системе" и отправьте информацию о системе разработчику.

- -

 

- -

Следующие опции отображаются только при архивировании типа -синхронизации.

- -

*         -Отображение подтверждающего сообщения, когда дату и время съемки -невозможно получить из Exif.

- -

Если этот флажок установлен, -пользователю будет показано сообщение, подтверждающее использование последнего -измененного времени файла, если дата и время съемки не могут быть получены из -Exif. При выборе пункта Отмена в сообщении подтверждения файл не будет -заархивирован.

- -

 

- -

*         -Цель для архивирования

- -

Выберите критерии архивирования -фотографий.

- -

*        -Неважно, в какой день это было сделано.

- -

Архивировать все фотографии

- -

*        -Дата съёмки - более 7 дней.

- -

Более чем на 7 дней старше -текущего времени

- -

*        -Дата съёмки - более 30 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 60 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 90 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 180 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки больше года.

- -

Дата фотографии более чем на -год старше текущего времени.

- -

 

- -

*         -Переименовать файл и сохранить его в указанном каталоге при -архивировании

- -

Если эта опция установлена, то -при архивировании файл будет переименован. Имя файла может быть указано в -качестве даты и времени в "Шаблоне имени файла". Вы также можете -создать каталог для хранения файлов. Пожалуйста, включите "Сохранять в -каталог при архивировании", чтобы хранить его в каталоге.

- -

 

- -

*         -Имя файла номер заказа

- -

Добавьте номер заказа к имени -файла при архивировании.

- -

*        -Я им не пользуюсь.

- -

Не добавляйте номер заказа.

- -

*        -Добавь трехзначное число.

- -

Добавить 001-999.

- -

*        -Добавь четырехзначное число.

- -

Добавить 0001-9999.

- -

*        -Добавь пятизначное число.

- -

Добавить 00001-99999.

- -

*        -Добавь шестизначное число.

- -

Добавить 000001-999999.

- -

 

- -

*         -Шаблон имени файла

- -

*        -Оригинальное имя

- -

Введите -имя файла перед переименованием в шаблоне.

- -

*        -Свидание

- -

Введите -в шаблон дату (например, 2018-04-16).

- -

*        -время

- -

Введите -время (например, 12-00-30) в шаблон.

- -

*        -Шаблон имени файла

- -

Введите -шаблон переименовываемого файла. Значение по умолчанию DSC_%DATE%. Вы можете -ввести ключевое слово за курсором, нажав кнопку .

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

*         -При архивировании он будет сохранен в каталог

- -

Вы -можете создать и сохранить каталог при архивировании. Если поставить галочку в -этом поле, то отобразится "Шаблон названия каталога".

- -

 

- -

*         -Шаблон имени каталога

- -

Введите -шаблон создаваемой директории, например DIR-%YEAR%-%MONTH%. Вы можете ввести -ключевое слово за курсором, нажав кнопку .

- -

*        -западный календарь

- -

Укажите -год (например, 2018) в шаблоне.

- -

*        -месяц (года)

- -

Введите -в шаблоне месяц (например, 04).

- -

*        -день

- -

Введите в шаблон дату -(например, 16).

- -

*        -Шаблон имени каталога

- -

Введите -шаблон создаваемого каталога. Значения по умолчанию – %ГОДА%.

- -

В -последней строке будут показаны реальная директория и имя файла, который будет сохранен.

- -

 

- -

Пожалуйста, смотрите ниже для -получения дополнительной информации.

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.html b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.html new file mode 100644 index 00000000..36e70583 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_sdcard.html @@ -0,0 +1,120 @@ + + + + +SMBSync2_Help_RU_folder_sdcard +

ムミソミクムミセミコ ミコミームひーミサミセミウミセミイ

+

ミ斷ーミカミシミクムひオ ミスミー ムミーミエミクミセミコミスミセミソミコム ミイ ミソムミーミイミセミケ ムミームムひク ム災コムミーミスミー, ムムひセミアム ミイム巾アムミームび ミクミスムひオムミオムムτ紗禾τ ミイミーム ミエミクムミオミコムひセムミクム. ミァムひセミアム ミセムひコムム錦び ミソミセミエミコミームひーミサミセミウ, ミスミーミカミシミクムひオ ミスミー ミクミシム ミコミームひーミサミセミウミー.

+

+

ミ頒セミアミーミイミクムび ミコミサム紗ミオミイミセミオ ムミサミセミイミセ

+

ミ柘 ミシミセミカミオムひオ ミクムミソミセミサム糊キミセミイミームび %YEAR%, %MONTH%, %DAY% ミク %DAY-OF-YEAR% ミイ ムミオミサミオミイミセミシ ミコミームひーミサミセミウミオ. ミ墟サム紗ミオミイム巾オ ムミサミセミイミー ミコミセミスミイミオムムひクムムτ紗びム ミイ ミエミームび ミイ ミスミームミーミサミオ ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミュムひセム ミソミームミーミシミオムび ミセムひセミアムミーミカミーミオムびム ムひセミサム糊コミセ ミソムミク ミコミセミソミクムミセミイミーミスミクミク ミクミサミク ミソミオムミオミシミオム禍オミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ佯ミソミセミサム糊キムσケムひオ ミエミームび ミク ミイムミオミシム ムミセムひセ/ミイミクミエミオミセムム諌オミシミコミク ミエミサム ミソムミオミセミアムミーミキミセミイミーミスミクム ミコミサム紗ミオミイム錦 ムミサミセミイ, ミエミセミアミーミイミサミオミスミスム錦 ミイ ミコミームひーミサミセミウ ムミオミサミオミイミセミケ ミソミーミソミコミク.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムひセ ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミクミキミイミサミオミコミーム紗びム ミクミキ Exif ミク ミクムミソミセミサム糊キムτ紗びム ミイミシミオムムひセ ミエミームび ミク ミイムミオミシミオミスミク ミスミームミーミサミー ムミクミスムムミセミスミクミキミームミクミク. ミ篇ミサミク ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミサム糊キム ミクミキミイミサミオムム ミクミキ Exif, ミクムミソミセミサム糊キムσオムびム ミソミセムミサミオミエミスミオミオ ミクミキミシミオミスミオミスミスミセミオ ミイムミオミシム ムミーミケミサミー.

+

+

ミコミームひーミサミセミウ

+

ミ」ミコミーミカミクムひオ ミクミシム ミウミサミーミイミスミセミウミセ ミクミサミク ムミオミサミオミイミセミウミセ ミコミームひーミサミセミウミー. ミ篇ミサミク ムミオミサミオミイミセミケ ミコミームひーミサミセミウ ミスミオ ムムτ禍オムムひイムσオム, ムひセ ミセミス ミアムσエミオム ムミセミキミエミーミス ミソムミク ムミクミスムムミセミスミクミキミームミクミク.

+

+

SDCARD-ミセミソムミクム

+

ミ柘巾アミオムミクムひオ ミコミセムミスミオミイムτ ミエミクムミオミコムひセムミクム SDCARD, ムムひセミアム ミソミセミサムτミクムび ミエミセムムびσソ ミコ SDCARD. ミ篇ミサミク ミイム ミスミオ ミシミセミカミオムひオ ミオミウミセ ミイム巾アムミームび, ミソミオムミオミケミエミクムひオ ミイ "ミ慴オミスム -> ミ侑スムミセムミシミームミクム ミセ ムミクムムひオミシミオ" ミク ミセムひソムミーミイム袴ひオ ミクミスムミセムミシミームミクム ミセ ムミクムムひオミシミオ ムミーミキムミーミアミセムびミクミコム.

+

+

ミ。ミサミオミエムτ紗禍クミオ ミセミソムミクミク ミセムひセミアムミーミカミーム紗びム ムひセミサム糊コミセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ樮ひセミアムミーミカミオミスミクミオ ミソミセミエムひイミオムミカミエミーム紗禍オミウミセ ムミセミセミアム禍オミスミクム, ミコミセミウミエミー ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミイミセミキミシミセミカミスミセ ミソミセミサムτミクムび ミクミキ Exif.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ミソミセミサム糊キミセミイミームひオミサム ミアムσエミオム ミソミセミコミーミキミーミスミセ ムミセミセミアム禍オミスミクミオ, ミソミセミエムひイミオムミカミエミーム紗禍オミオ ミクムミソミセミサム糊キミセミイミーミスミクミオ ミソミセムミサミオミエミスミオミウミセ ミクミキミシミオミスミオミスミスミセミウミセ ミイムミオミシミオミスミク ムミーミケミサミー, ミオムミサミク ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミスミオ ミシミセミウムτ ミアム錦び ミソミセミサムτミオミスム ミクミキ Exif. ミ湲ミク ミイム巾アミセムミオ ミソムσスミコムひー ミ樮ひシミオミスミー ミイ ムミセミセミアム禍オミスミクミク ミソミセミエムひイミオムミカミエミオミスミクム ムミーミケミサ ミスミオ ミアムσエミオム ミキミーミームムミクミイミクムミセミイミーミス.

+

+

ミヲミオミサム ミエミサム ミームムミクミイミクムミセミイミーミスミクム

+

ミ柘巾アミオムミクムひオ ミコムミクムひオムミクミク ミームムミクミイミクムミセミイミーミスミクム ムミセムひセミウムミームミクミケ.

+
    +
  • ミ斷オミイミーミカミスミセ, ミイ ミコミーミコミセミケ ミエミオミスム ム采ひセ ミアム巾サミセ ムミエミオミサミーミスミセ.

    +

    ミ績ムミクミイミクムミセミイミームび ミイムミオ ムミセムひセミウムミームミクミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 7 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 7 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 30 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 60 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 90 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 180 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク ミアミセミサム袴威オ ミウミセミエミー.

    +

    ミ頒ームひー ムミセムひセミウムミームミクミク ミアミセミサミオミオ ムミオミシ ミスミー ミウミセミエ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク.

    +
  • + +
+

+

ミ渙オムミオミクミシミオミスミセミイミームび ムミーミケミサ ミク ムミセムムミーミスミクムび ミオミウミセ ミイ ムσコミーミキミーミスミスミセミシ ミコミームひーミサミセミウミオ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムひセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムミーミケミサ ミアムσエミオム ミソミオムミオミクミシミオミスミセミイミーミス. ミ侑シム ムミーミケミサミー ミシミセミカミオム ミアム錦び ムσコミーミキミーミスミセ ミイ ミコミームミオムムひイミオ ミエミームび ミク ミイムミオミシミオミスミク ミイ "ミィミーミアミサミセミスミオ ミクミシミオミスミク ムミーミケミサミー". ミ柘 ムひーミコミカミオ ミシミセミカミオムひオ ムミセミキミエミームび ミコミームひーミサミセミウ ミエミサム ムムミーミスミオミスミクム ムミーミケミサミセミイ. ミ渙セミカミーミサムσケムムひー, ミイミコミサム紗ミクムひオ "ミ。ミセムムミーミスム肖び ミイ ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク", ムムひセミアム ムムミーミスミクムび ミオミウミセ ミイ ミコミームひーミサミセミウミオ.

+

+

ミ侑シム ムミーミケミサミー ミスミセミシミオム ミキミーミコミーミキミー

+

ミ頒セミアミーミイム袴ひオ ミスミセミシミオム ミキミーミコミーミキミー ミコ ミクミシミオミスミク ムミーミケミサミー ミソムミク ミームムミクミイミクムミセミイミーミスミクミク.

+
    +
  • ミッ ミクミシ ミスミオ ミソミセミサム糊キムτ紗ム.

    +

    ミ斷オ ミエミセミアミーミイミサム紹ケムひオ ミスミセミシミオム ミキミーミコミーミキミー.

    +
  • +
  • ミ頒セミアミーミイム ムびミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 001-999.

    +
  • +
  • ミ頒セミアミーミイム ムミオムび錦ミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 0001-9999.

    +
  • +
  • ミ頒セミアミーミイム ミソム肖ひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 00001-99999.

    +
  • +
  • ミ頒セミアミーミイム ム威オムムひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 000001-999999.

    +
  • + +
+

+

ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

+
    +
  • ミ樮ミクミウミクミスミーミサム糊スミセミオ ミクミシム

    +

    ミ漬イミオミエミクムひオ ミクミシム ムミーミケミサミー ミソミオムミオミエ ミソミオムミオミクミシミオミスミセミイミーミスミクミオミシ ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミ。ミイミクミエミーミスミクミオ

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 2018-04-16).

    +
  • +
  • ミイムミオミシム

    +

    ミ漬イミオミエミクムひオ ミイムミオミシム (ミスミーミソムミクミシミオム, 12-00-30) ミイ ム威ーミアミサミセミス.

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ミソミオムミオミクミシミオミスミセミイム巾イミーミオミシミセミウミセ ムミーミケミサミー. ミ厘スミームミオミスミクミオ ミソミセ ムσシミセミサムミーミスミクム DSC_%DATE%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム . ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

    +
  • + +
+

+

ミ湲ミク ミームムミクミイミクムミセミイミーミスミクミク ミセミス ミアムσエミオム ムミセムムミーミスミオミス ミイ ミコミームひーミサミセミウ

+

ミ柘 ミシミセミカミオムひオ ムミセミキミエミームび ミク ムミセムムミーミスミクムび ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク. ミ篇ミサミク ミソミセムムひーミイミクムび ミウミーミサミセムミコム ミイ ム采ひセミシ ミソミセミサミオ, ムひセ ミセムひセミアムミーミキミクムびム "ミィミーミアミサミセミス ミスミーミキミイミーミスミクム ミコミームひーミサミセミウミー".

+

+

ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

+

ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミケ ミエミクムミオミコムひセムミクミク, ミスミーミソムミクミシミオム DIR-%YEAR%-%MONTH%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム .

+
    +
  • ミキミーミソミーミエミスム巾ケ ミコミーミサミオミスミエミームム

    +

    ミ」ミコミーミカミクムひオ ミウミセミエ (ミスミーミソムミクミシミオム, 2018) ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミシミオムム肖 (ミウミセミエミー)

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミスミオ ミシミオムム肖 (ミスミーミソムミクミシミオム, 04).

    +
  • +
  • ミエミオミスム

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 16).

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミウミセ ミコミームひーミサミセミウミー. ミ厘スミームミオミスミクム ミソミセ ムσシミセミサムミーミスミクム 窶 %ミ寅榧頒%.

    +
  • + +
+

ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

+

+

ミ渙セミカミーミサムσケムムひー, ムミシミセムびミクムひオ ミスミクミカミオ ミエミサム ミソミセミサムτミオミスミクム ミエミセミソミセミサミスミクムひオミサム糊スミセミケ ミクミスムミセムミシミームミクミク.

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.htm deleted file mode 100644 index 2332cef3..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.htm +++ /dev/null @@ -1,716 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -Поиск удаленных серверов

- -

Вы -можете сканировать сеть и просматривать список удаленных хостов.

- -

 

- -

*         -Имя/адрес сервера

- -

Укажите удаленный хост по имени или IP-адресу. Если вы -не можете войти в систему по имени, пожалуйста, укажите IP-адрес.

- -

 

- -

*         -протокол SMB

- -

Вы -можете указать протокол SMB, который будет использоваться.

- -

   Используется -SMB V1.

- -

   Если Вы -используете SMB V2(2.01) (jcifs-ng-2.1.0).

- -

   Использовать -СМБ V2(2.11) (jcifs-ng-2.1.1) (jcifs-ng-2.1.1)

- -

   Если Вы -используете SMB V2/3(2.12)(jcifs-ng-2.1.2)(совместимый с SMB V2 или V3), Вы -можете использовать SMB V2/3(2.12)(jcifs-ng-2.1.2).

- -

   Используйте SMB -V2/3(2.14)(jcifs-ng-2.1.4)(совместимый с SMB V2 или V3).

- -

 

- -

*         -Укажите номер порта

- -

Укажите, -если стандартный номер порта недоступен. Стандартный номер порта - 445 или 139.

- -

 

- -

*         -Используйте ваш идентификатор пользователя/пароль

- -

Вам -необходимо будет предоставить идентификатор пользователя или пароль.

- -

 

- -

*         -имя пользователя

- -

Имя -учетной записи пользователя для подключения к хосту. Учетная запись Microsoft -не может использоваться с SMBSync2. Создайте локальную учетную запись и -используйте ее.

- -

 

- -

*         -пароль

- -

Укажите -пароль, установленный на ПК/NAS.

- -

 

- -

*         -Общий список

- -

Нажмите -кнопку, чтобы отобразить имя ресурса, который можно выбрать, нажмите на имя -ресурса и нажмите "ОК".

- -

 

- -

*         -общее имя

- -

Имя -акции можно ввести вручную.

- -

 

- -

*         -список каталогов

- -

Нажмите -на радиокнопку в правой части экрана, чтобы выбрать интересующую вас -директорию. Чтобы открыть подкаталог, нажмите на имя каталога.

- -

 

- -

*         -каталог

- -

Вы -можете войти в каталог PC/NAS вручную.

- -

 

- -

*         -Добавить ключевое слово

- -

Вы -можете использовать %YEAR%, %MONTH%, %DAY% и %DAY-OF-YEAR% в целевом каталоге. -Ключевые слова конвертируются в даты в начале синхронизации.

- -

 

- -

Этот параметр отображается только при копировании или перемещении типа -синхронизации.

- -

Используйте дату и время -фото/видеосъемки для преобразования ключевых слов, добавленных в каталог -целевой папки.

- -

Если этот флажок установлен, то -дата и время съемки извлекаются из Exif и используются вместо даты и времени начала -синхронизации. Если дату и время съемки нельзя извлечь из Exif, используется -последнее измененное время файла.

- -

 

- -

Следующие опции отображаются только при архивировании типа -синхронизации.

- -

*         -Отображение подтверждающего сообщения, когда дату и время съемки невозможно -получить из Exif.

- -

Если этот флажок установлен, -пользователю будет показано сообщение, подтверждающее использование последнего -измененного времени файла, если дата и время съемки не могут быть получены из -Exif. При выборе пункта Отмена в сообщении подтверждения файл не будет -заархивирован.

- -

 

- -

*         -Цель для архивирования

- -

Выберите критерии архивирования -фотографий.

- -

*        -Неважно, в какой день это было сделано.

- -

Архивировать все фотографии

- -

*        -Дата съёмки - более 7 дней.

- -

Более чем на 7 дней старше -текущего времени

- -

*        -Дата съёмки - более 30 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 60 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 90 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 180 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки больше года.

- -

Дата фотографии более чем на -год старше текущего времени.

- -

 

- -

*         -Переименовать файл и сохранить его в указанном каталоге при -архивировании

- -

Если эта опция установлена, то -при архивировании файл будет переименован. Имя файла может быть указано в -качестве даты и времени в "Шаблоне имени файла". Вы также можете -создать каталог для хранения файлов. Пожалуйста, включите "Сохранять в -каталог при архивировании", чтобы хранить его в каталоге.

- -

 

- -

*         -Имя файла номер заказа

- -

Добавьте номер заказа к имени -файла при архивировании.

- -

*        -Я им не пользуюсь.

- -

Не добавляйте номер заказа.

- -

*        -Добавь трехзначное число.

- -

Добавить 001-999.

- -

*        -Добавь четырехзначное число.

- -

Добавить 0001-9999.

- -

*        -Добавь пятизначное число.

- -

Добавить 00001-99999.

- -

*        -Добавь шестизначное число.

- -

Добавить 000001-999999.

- -

 

- -

*         -Шаблон имени файла

- -

*        -Оригинальное имя

- -

Введите -имя файла перед переименованием в шаблоне.

- -

*        -Свидание

- -

Введите -в шаблон дату (например, 2018-04-16).

- -

*        -время

- -

Введите -время (например, 12-00-30) в шаблон.

- -

*        -Шаблон имени файла

- -

Введите -шаблон переименовываемого файла. Значение по умолчанию DSC_%DATE%. Вы можете -ввести ключевое слово за курсором, нажав кнопку .

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

*         -При архивировании он будет сохранен в каталог

- -

Вы -можете создать и сохранить каталог при архивировании. Если поставить галочку в -этом поле, то отобразится "Шаблон названия каталога".

- -

 

- -

*         -Шаблон имени каталога

- -

Введите -шаблон создаваемой директории, например DIR-%YEAR%-%MONTH%. Вы можете ввести -ключевое слово за курсором, нажав кнопку .

- -

*        -западный календарь

- -

Укажите -год (например, 2018) в шаблоне.

- -

*        -месяц (года)

- -

Введите -в шаблоне месяц (например, 04).

- -

*        -день

- -

Введите в шаблон дату -(например, 16).

- -

*        -Шаблон имени каталога

- -

Введите -шаблон создаваемого каталога. Значения по умолчанию – %ГОДА%.

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

Пожалуйста, смотрите ниже для -получения дополнительной информации.

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.html b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.html new file mode 100644 index 00000000..0fd65f33 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_smb.html @@ -0,0 +1,151 @@ + + + + +SMBSync2_Help_RU_folder_smb +

ミ渙セミクムミコ ムσエミーミサミオミスミスム錦 ムミオムミイミオムミセミイ

+

ミ柘 ミシミセミカミオムひオ ムミコミーミスミクムミセミイミームび ムミオムび ミク ミソムミセムミシミームびミクミイミームび ムミソミクムミセミコ ムσエミーミサミオミスミスム錦 ムミセムムひセミイ.

+

+

ミ侑シム/ミーミエムミオム ムミオムミイミオムミー

+

ミ」ミコミーミカミクムひオ ムσエミーミサミオミスミスム巾ケ ムミセムム ミソミセ ミクミシミオミスミク ミクミサミク IP-ミーミエムミオムム. ミ篇ミサミク ミイム ミスミオ ミシミセミカミオムひオ ミイミセミケムひク ミイ ムミクムムひオミシム ミソミセ ミクミシミオミスミク, ミソミセミカミーミサムσケムムひー, ムσコミーミカミクムひオ IP-ミーミエムミオム.

+

+

ミソムミセムひセミコミセミサ SMB

+

ミ柘 ミシミセミカミオムひオ ムσコミーミキミームび ミソムミセムひセミコミセミサ SMB, ミコミセムひセムム巾ケ ミアムσエミオム ミクムミソミセミサム糊キミセミイミームび袴ム.

+
    +
  • ミ佯ミソミセミサム糊キムσオムびム SMB V1.
  • +
  • ミ篇ミサミク ミ柘 ミクムミソミセミサム糊キムσオムひオ SMB V2(2.01) (jcifs-ng-2.1.0).
  • +
  • ミ佯ミソミセミサム糊キミセミイミームび ミ。ミ慴 V2(2.11) (jcifs-ng-2.1.1) (jcifs-ng-2.1.1)
  • +
  • ミ篇ミサミク ミ柘 ミクムミソミセミサム糊キムσオムひオ SMB V2/3(2.12)(jcifs-ng-2.1.2)(ムミセミイミシミオムムひクミシム巾ケ ム SMB V2 ミクミサミク V3), ミ柘 ミシミセミカミオムひオ ミクムミソミセミサム糊キミセミイミームび SMB V2/3(2.12)(jcifs-ng-2.1.2).
  • +
  • ミ佯ミソミセミサム糊キムσケムひオ SMB V2/3(2.14)(jcifs-ng-2.1.4)(ムミセミイミシミオムムひクミシム巾ケ ム SMB V2 ミクミサミク V3).
  • + +
+

+

ミ」ミコミーミカミクムひオ ミスミセミシミオム ミソミセムムひー

+

ミ」ミコミーミカミクムひオ, ミオムミサミク ムムひーミスミエミームムひスム巾ケ ミスミセミシミオム ミソミセムムひー ミスミオミエミセムムびσソミオミス. ミ。ムひーミスミエミームムひスム巾ケ ミスミセミシミオム ミソミセムムひー - 445 ミクミサミク 139.

+

+

ミ佯ミソミセミサム糊キムσケムひオ ミイミーム ミクミエミオミスムひクムミクミコミームひセム ミソミセミサム糊キミセミイミームひオミサム/ミソミームミセミサム

+

ミ漬ーミシ ミスミオミセミアムミセミエミクミシミセ ミアムσエミオム ミソムミオミエミセムムひーミイミクムび ミクミエミオミスムひクムミクミコミームひセム ミソミセミサム糊キミセミイミームひオミサム ミクミサミク ミソミームミセミサム.

+

+

ミクミシム ミソミセミサム糊キミセミイミームひオミサム

+

ミ侑シム ムτミオムひスミセミケ ミキミーミソミクムミク ミソミセミサム糊キミセミイミームひオミサム ミエミサム ミソミセミエミコミサム紗ミオミスミクム ミコ ムミセムムび. ミ」ムミオムひスミーム ミキミーミソミクムム Microsoft ミスミオ ミシミセミカミオム ミクムミソミセミサム糊キミセミイミームび袴ム ム SMBSync2. ミ。ミセミキミエミーミケムひオ ミサミセミコミーミサム糊スムτ ムτミオムひスムτ ミキミーミソミクムム ミク ミクムミソミセミサム糊キムσケムひオ ミオミオ.

+

+

ミソミームミセミサム

+

ミ」ミコミーミカミクムひオ ミソミームミセミサム, ムτムひーミスミセミイミサミオミスミスム巾ケ ミスミー ミ渙/NAS.

+

+

ミ榧アム禍クミケ ムミソミクムミセミコ

+

ミ斷ーミカミシミクムひオ ミコミスミセミソミコム, ムムひセミアム ミセムひセミアムミーミキミクムび ミクミシム ムミオムムτムミー, ミコミセムひセムム巾ケ ミシミセミカミスミセ ミイム巾アムミームび, ミスミーミカミシミクムひオ ミスミー ミクミシム ムミオムムτムミー ミク ミスミーミカミシミクムひオ "ミ榧".

+

+

ミセミアム禍オミオ ミクミシム

+

ミ侑シム ミーミコムミクミク ミシミセミカミスミセ ミイミイミオムムひク ミイムムτミスムτ.

+

+

ムミソミクムミセミコ ミコミームひーミサミセミウミセミイ

+

ミ斷ーミカミシミクムひオ ミスミー ムミーミエミクミセミコミスミセミソミコム ミイ ミソムミーミイミセミケ ムミームムひク ム災コムミーミスミー, ムムひセミアム ミイム巾アムミームび ミクミスムひオムミオムムτ紗禾τ ミイミーム ミエミクムミオミコムひセムミクム. ミァムひセミアム ミセムひコムム錦び ミソミセミエミコミームひーミサミセミウ, ミスミーミカミシミクムひオ ミスミー ミクミシム ミコミームひーミサミセミウミー.

+

+

ミコミームひーミサミセミウ

+

ミ柘 ミシミセミカミオムひオ ミイミセミケムひク ミイ ミコミームひーミサミセミウ PC/NAS ミイムムτミスムτ.縲

+

+

ミ頒セミアミーミイミクムび ミコミサム紗ミオミイミセミオ ムミサミセミイミセ

+

ミ柘 ミシミセミカミオムひオ ミクムミソミセミサム糊キミセミイミームび %YEAR%, %MONTH%, %DAY% ミク %DAY-OF-YEAR% ミイ ムミオミサミオミイミセミシ ミコミームひーミサミセミウミオ. ミ墟サム紗ミオミイム巾オ ムミサミセミイミー ミコミセミスミイミオムムひクムムτ紗びム ミイ ミエミームび ミイ ミスミームミーミサミオ ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミュムひセム ミソミームミーミシミオムび ミセムひセミアムミーミカミーミオムびム ムひセミサム糊コミセ ミソムミク ミコミセミソミクムミセミイミーミスミクミク ミクミサミク ミソミオムミオミシミオム禍オミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ佯ミソミセミサム糊キムσケムひオ ミエミームび ミク ミイムミオミシム ムミセムひセ/ミイミクミエミオミセムム諌オミシミコミク ミエミサム ミソムミオミセミアムミーミキミセミイミーミスミクム ミコミサム紗ミオミイム錦 ムミサミセミイ, ミエミセミアミーミイミサミオミスミスム錦 ミイ ミコミームひーミサミセミウ ムミオミサミオミイミセミケ ミソミーミソミコミク.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムひセ ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミクミキミイミサミオミコミーム紗びム ミクミキ Exif ミク ミクムミソミセミサム糊キムτ紗びム ミイミシミオムムひセ ミエミームび ミク ミイムミオミシミオミスミク ミスミームミーミサミー ムミクミスムムミセミスミクミキミームミクミク. ミ篇ミサミク ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミサム糊キム ミクミキミイミサミオムム ミクミキ Exif, ミクムミソミセミサム糊キムσオムびム ミソミセムミサミオミエミスミオミオ ミクミキミシミオミスミオミスミスミセミオ ミイムミオミシム ムミーミケミサミー.

+

+

ミ。ミサミオミエムτ紗禍クミオ ミセミソムミクミク ミセムひセミアムミーミカミーム紗びム ムひセミサム糊コミセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ樮ひセミアムミーミカミオミスミクミオ ミソミセミエムひイミオムミカミエミーム紗禍オミウミセ ムミセミセミアム禍オミスミクム, ミコミセミウミエミー ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミイミセミキミシミセミカミスミセ ミソミセミサムτミクムび ミクミキ Exif.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ミソミセミサム糊キミセミイミームひオミサム ミアムσエミオム ミソミセミコミーミキミーミスミセ ムミセミセミアム禍オミスミクミオ, ミソミセミエムひイミオムミカミエミーム紗禍オミオ ミクムミソミセミサム糊キミセミイミーミスミクミオ ミソミセムミサミオミエミスミオミウミセ ミクミキミシミオミスミオミスミスミセミウミセ ミイムミオミシミオミスミク ムミーミケミサミー, ミオムミサミク ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミスミオ ミシミセミウムτ ミアム錦び ミソミセミサムτミオミスム ミクミキ Exif. ミ湲ミク ミイム巾アミセムミオ ミソムσスミコムひー ミ樮ひシミオミスミー ミイ ムミセミセミアム禍オミスミクミク ミソミセミエムひイミオムミカミエミオミスミクム ムミーミケミサ ミスミオ ミアムσエミオム ミキミーミームムミクミイミクムミセミイミーミス.

+

+

ミヲミオミサム ミエミサム ミームムミクミイミクムミセミイミーミスミクム

+

ミ柘巾アミオムミクムひオ ミコムミクムひオムミクミク ミームムミクミイミクムミセミイミーミスミクム ムミセムひセミウムミームミクミケ.

+
    +
  • ミ斷オミイミーミカミスミセ, ミイ ミコミーミコミセミケ ミエミオミスム ム采ひセ ミアム巾サミセ ムミエミオミサミーミスミセ.

    +

    ミ績ムミクミイミクムミセミイミームび ミイムミオ ムミセムひセミウムミームミクミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 7 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 7 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 30 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 60 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 90 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 180 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク ミアミセミサム袴威オ ミウミセミエミー.

    +

    ミ頒ームひー ムミセムひセミウムミームミクミク ミアミセミサミオミオ ムミオミシ ミスミー ミウミセミエ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク.

    +
  • + +
+

+

ミ渙オムミオミクミシミオミスミセミイミームび ムミーミケミサ ミク ムミセムムミーミスミクムび ミオミウミセ ミイ ムσコミーミキミーミスミスミセミシ ミコミームひーミサミセミウミオ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムひセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムミーミケミサ ミアムσエミオム ミソミオムミオミクミシミオミスミセミイミーミス. ミ侑シム ムミーミケミサミー ミシミセミカミオム ミアム錦び ムσコミーミキミーミスミセ ミイ ミコミームミオムムひイミオ ミエミームび ミク ミイムミオミシミオミスミク ミイ "ミィミーミアミサミセミスミオ ミクミシミオミスミク ムミーミケミサミー". ミ柘 ムひーミコミカミオ ミシミセミカミオムひオ ムミセミキミエミームび ミコミームひーミサミセミウ ミエミサム ムムミーミスミオミスミクム ムミーミケミサミセミイ. ミ渙セミカミーミサムσケムムひー, ミイミコミサム紗ミクムひオ "ミ。ミセムムミーミスム肖び ミイ ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク", ムムひセミアム ムムミーミスミクムび ミオミウミセ ミイ ミコミームひーミサミセミウミオ.

+

+

ミ侑シム ムミーミケミサミー ミスミセミシミオム ミキミーミコミーミキミー

+

ミ頒セミアミーミイム袴ひオ ミスミセミシミオム ミキミーミコミーミキミー ミコ ミクミシミオミスミク ムミーミケミサミー ミソムミク ミームムミクミイミクムミセミイミーミスミクミク.

+
    +
  • ミッ ミクミシ ミスミオ ミソミセミサム糊キムτ紗ム.

    +

    ミ斷オ ミエミセミアミーミイミサム紹ケムひオ ミスミセミシミオム ミキミーミコミーミキミー.

    +
  • +
  • ミ頒セミアミーミイム ムびミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 001-999.

    +
  • +
  • ミ頒セミアミーミイム ムミオムび錦ミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 0001-9999.

    +
  • +
  • ミ頒セミアミーミイム ミソム肖ひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 00001-99999.

    +
  • +
  • ミ頒セミアミーミイム ム威オムムひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 000001-999999.

    +
  • + +
+

+

ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

+
    +
  • ミ樮ミクミウミクミスミーミサム糊スミセミオ ミクミシム

    +

    ミ漬イミオミエミクムひオ ミクミシム ムミーミケミサミー ミソミオムミオミエ ミソミオムミオミクミシミオミスミセミイミーミスミクミオミシ ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミ。ミイミクミエミーミスミクミオ

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 2018-04-16).

    +
  • +
  • ミイムミオミシム

    +

    ミ漬イミオミエミクムひオ ミイムミオミシム (ミスミーミソムミクミシミオム, 12-00-30) ミイ ム威ーミアミサミセミス.

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ミソミオムミオミクミシミオミスミセミイム巾イミーミオミシミセミウミセ ムミーミケミサミー. ミ厘スミームミオミスミクミオ ミソミセ ムσシミセミサムミーミスミクム DSC_%DATE%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム . ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

    +
  • + +
+

+

ミ湲ミク ミームムミクミイミクムミセミイミーミスミクミク ミセミス ミアムσエミオム ムミセムムミーミスミオミス ミイ ミコミームひーミサミセミウ

+

ミ柘 ミシミセミカミオムひオ ムミセミキミエミームび ミク ムミセムムミーミスミクムび ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク. ミ篇ミサミク ミソミセムムひーミイミクムび ミウミーミサミセムミコム ミイ ム采ひセミシ ミソミセミサミオ, ムひセ ミセムひセミアムミーミキミクムびム "ミィミーミアミサミセミス ミスミーミキミイミーミスミクム ミコミームひーミサミセミウミー".

+

+

ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

+

ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミケ ミエミクムミオミコムひセムミクミク, ミスミーミソムミクミシミオム DIR-%YEAR%-%MONTH%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム .

+
    +
  • ミキミーミソミーミエミスム巾ケ ミコミーミサミオミスミエミームム

    +

    ミ」ミコミーミカミクムひオ ミウミセミエ (ミスミーミソムミクミシミオム, 2018) ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミシミオムム肖 (ミウミセミエミー)

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミスミオ ミシミオムム肖 (ミスミーミソムミクミシミオム, 04).

    +
  • +
  • ミエミオミスム

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 16).

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミウミセ ミコミームひーミサミセミウミー. ミ厘スミームミオミスミクム ミソミセ ムσシミセミサムミーミスミクム 窶 %ミ寅榧頒%.

    +
  • + +
+

ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

+

+

ミ渙セミカミーミサムσケムムひー, ムミシミセムびミクムひオ ミスミクミカミオ ミエミサム ミソミセミサムτミオミスミクム ミエミセミソミセミサミスミクムひオミサム糊スミセミケ ミクミスムミセムミシミームミクミク.

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.htm deleted file mode 100644 index 56e03564..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.htm +++ /dev/null @@ -1,609 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -список каталогов

- -

Нажмите имя записной книжки, чтобы выбрать ее. Чтобы -открыть подкаталог, коснитесь левого края имени каталога.

- -

 

- -

*         -Добавить ключевое слово

- -

Вы -можете использовать %YEAR%, %MONTH%, %DAY% и %DAY-OF-YEAR% в целевом каталоге. -Ключевые слова конвертируются в даты в начале синхронизации.

- -

 

- -

Этот параметр отображается только при копировании или перемещении типа -синхронизации.

- -

*         -Используйте дату и время фото/видеосъемки для преобразования -ключевых слов, добавленных в каталог целевой папки.

- -

Если этот флажок установлен, то -дата и время съемки извлекаются из Exif и используются вместо даты и времени -начала синхронизации. Если дату и время съемки нельзя извлечь из Exif, -используется последнее измененное время файла.

- -

 

- -

*         -каталог

- -

Укажите имя главного или целевого каталога. Если -целевой каталог не существует, то он будет создан при синхронизации.

- -

 

- -

*         -выбор USB носителя

- -

Выберите корневую директорию USB-носителя, чтобы -получить права доступа к USB-носителю. Если вы не можете его выбрать, перейдите -в "Меню -> Информация о системе" и отправьте информацию о системе -разработчику.

- -

USB-носитель нельзя использовать, если нет точки -крепления (например, / Хранилище/0123-0123-0123), которая соответствует UUID -USB-носителя.

- -

 

- -

Следующие опции отображаются только при архивировании типа -синхронизации.

- -

*         -Отображение подтверждающего сообщения, когда дату и время съемки -невозможно получить из Exif.

- -

Если этот флажок установлен, -пользователю будет показано сообщение, подтверждающее использование последнего -измененного времени файла, если дата и время съемки не могут быть получены из -Exif. При выборе пункта Отмена в сообщении подтверждения файл не будет -заархивирован.

- -

 

- -

*         -Цель для архивирования

- -

Выберите критерии архивирования -фотографий.

- -

*        -Неважно, в какой день это было сделано.

- -

Архивировать все фотографии

- -

*        -Дата съёмки - более 7 дней.

- -

Более чем на 7 дней старше -текущего времени

- -

*        -Дата съёмки - более 30 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 60 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 90 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки - более 180 дней.

- -

Более чем на 30 дней старше -текущего времени

- -

*        -Дата съёмки больше года.

- -

Дата фотографии более чем на -год старше текущего времени.

- -

 

- -

*         -Переименовать файл и сохранить его в указанном каталоге при -архивировании

- -

Если эта опция установлена, то -при архивировании файл будет переименован. Имя файла может быть указано в -качестве даты и времени в "Шаблоне имени файла". Вы также можете -создать каталог для хранения файлов. Пожалуйста, включите "Сохранять в -каталог при архивировании", чтобы хранить его в каталоге.

- -

 

- -

*         -Имя файла номер заказа

- -

Добавьте номер заказа к имени -файла при архивировании.

- -

*        -Я им не пользуюсь.

- -

Не добавляйте номер заказа.

- -

*        -Добавь трехзначное число.

- -

Добавить 001-999.

- -

*        -Добавь четырехзначное число.

- -

Добавить 0001-9999.

- -

*        -Добавь пятизначное число.

- -

Добавить 00001-99999.

- -

*        -Добавь шестизначное число.

- -

Добавить 000001-999999.

- -

 

- -

*         -Шаблон имени файла

- -

*        -Оригинальное имя

- -

Введите -имя файла перед переименованием в шаблоне.

- -

*        -Свидание

- -

Введите -в шаблон дату (например, 2018-04-16).

- -

*        -время

- -

Введите -время (например, 12-00-30) в шаблон.

- -

*        -Шаблон имени файла

- -

Введите -шаблон переименовываемого файла. Значение по умолчанию DSC_%DATE%. Вы можете -ввести ключевое слово за курсором, нажав кнопку .

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

*         -При архивировании он будет сохранен в каталог

- -

Вы -можете создать и сохранить каталог при архивировании. Если поставить галочку в -этом поле, то отобразится "Шаблон названия каталога".

- -

 

- -

*         -Шаблон имени каталога

- -

Введите -шаблон создаваемой директории, например DIR-%YEAR%-%MONTH%. Вы можете ввести -ключевое слово за курсором, нажав кнопку .

- -

*        -западный календарь

- -

Укажите -год (например, 2018) в шаблоне.

- -

*        -месяц (года)

- -

Введите -в шаблоне месяц (например, 04).

- -

*        -день

- -

Введите в шаблон дату -(например, 16).

- -

*        -Шаблон имени каталога

- -

Введите -шаблон создаваемого каталога. Значения по умолчанию – %ГОДА%.

- -

В -последней строке будут показаны реальная директория и имя файла, который будет -сохранен.

- -

 

- -

Пожалуйста, смотрите ниже для -получения дополнительной информации.

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.html b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.html new file mode 100644 index 00000000..d41d9f95 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_usb.html @@ -0,0 +1,121 @@ + + + + +SMBSync2_Help_RU_folder_usb +

ムミソミクムミセミコ ミコミームひーミサミセミウミセミイ

+

ミ斷ーミカミシミクムひオ ミクミシム ミキミーミソミクムミスミセミケ ミコミスミクミカミコミク, ムムひセミアム ミイム巾アムミームび ミオミオ. ミァムひセミアム ミセムひコムム錦び ミソミセミエミコミームひーミサミセミウ, ミコミセムミスミクムひオムム ミサミオミイミセミウミセ ミコムミーム ミクミシミオミスミク ミコミームひーミサミセミウミー.

+

+

ミ頒セミアミーミイミクムび ミコミサム紗ミオミイミセミオ ムミサミセミイミセ

+

ミ柘 ミシミセミカミオムひオ ミクムミソミセミサム糊キミセミイミームび %YEAR%, %MONTH%, %DAY% ミク %DAY-OF-YEAR% ミイ ムミオミサミオミイミセミシ ミコミームひーミサミセミウミオ. ミ墟サム紗ミオミイム巾オ ムミサミセミイミー ミコミセミスミイミオムムひクムムτ紗びム ミイ ミエミームび ミイ ミスミームミーミサミオ ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミュムひセム ミソミームミーミシミオムび ミセムひセミアムミーミカミーミオムびム ムひセミサム糊コミセ ミソムミク ミコミセミソミクムミセミイミーミスミクミク ミクミサミク ミソミオムミオミシミオム禍オミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ佯ミソミセミサム糊キムσケムひオ ミエミームび ミク ミイムミオミシム ムミセムひセ/ミイミクミエミオミセムム諌オミシミコミク ミエミサム ミソムミオミセミアムミーミキミセミイミーミスミクム ミコミサム紗ミオミイム錦 ムミサミセミイ, ミエミセミアミーミイミサミオミスミスム錦 ミイ ミコミームひーミサミセミウ ムミオミサミオミイミセミケ ミソミーミソミコミク.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムひセ ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミクミキミイミサミオミコミーム紗びム ミクミキ Exif ミク ミクムミソミセミサム糊キムτ紗びム ミイミシミオムムひセ ミエミームび ミク ミイムミオミシミオミスミク ミスミームミーミサミー ムミクミスムムミセミスミクミキミームミクミク. ミ篇ミサミク ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミサム糊キム ミクミキミイミサミオムム ミクミキ Exif, ミクムミソミセミサム糊キムσオムびム ミソミセムミサミオミエミスミオミオ ミクミキミシミオミスミオミスミスミセミオ ミイムミオミシム ムミーミケミサミー.

+

+

ミコミームひーミサミセミウ

+

ミ」ミコミーミカミクムひオ ミクミシム ミウミサミーミイミスミセミウミセ ミクミサミク ムミオミサミオミイミセミウミセ ミコミームひーミサミセミウミー. ミ篇ミサミク ムミオミサミオミイミセミケ ミコミームひーミサミセミウ ミスミオ ムムτ禍オムムひイムσオム, ムひセ ミセミス ミアムσエミオム ムミセミキミエミーミス ミソムミク ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミイム巾アミセム USB ミスミセムミクムひオミサム

+

ミ柘巾アミオムミクムひオ ミコミセムミスミオミイムτ ミエミクムミオミコムひセムミクム USB-ミスミセムミクムひオミサム, ムムひセミアム ミソミセミサムτミクムび ミソムミーミイミー ミエミセムムびσソミー ミコ USB-ミスミセムミクムひオミサム. ミ篇ミサミク ミイム ミスミオ ミシミセミカミオムひオ ミオミウミセ ミイム巾アムミームび, ミソミオムミオミケミエミクムひオ ミイ "ミ慴オミスム -> ミ侑スムミセムミシミームミクム ミセ ムミクムムひオミシミオ" ミク ミセムひソムミーミイム袴ひオ ミクミスムミセムミシミームミクム ミセ ムミクムムひオミシミオ ムミーミキムミーミアミセムびミクミコム.

+

USB-ミスミセムミクムひオミサム ミスミオミサム糊キム ミクムミソミセミサム糊キミセミイミームび, ミオムミサミク ミスミオム ムひセムミコミク ミコムミオミソミサミオミスミクム (ミスミーミソムミクミシミオム, / ミ・ムミーミスミクミサミクム禍オ/0123-0123-0123), ミコミセムひセムミーム ムミセミセムひイミオムびムひイムσオム UUID USB-ミスミセムミクムひオミサム.

+

+

ミ。ミサミオミエムτ紗禍クミオ ミセミソムミクミク ミセムひセミアムミーミカミーム紗びム ムひセミサム糊コミセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムひクミソミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミ樮ひセミアムミーミカミオミスミクミオ ミソミセミエムひイミオムミカミエミーム紗禍オミウミセ ムミセミセミアム禍オミスミクム, ミコミセミウミエミー ミエミームび ミク ミイムミオミシム ムム諌オミシミコミク ミスミオミイミセミキミシミセミカミスミセ ミソミセミサムτミクムび ミクミキ Exif.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ミソミセミサム糊キミセミイミームひオミサム ミアムσエミオム ミソミセミコミーミキミーミスミセ ムミセミセミアム禍オミスミクミオ, ミソミセミエムひイミオムミカミエミーム紗禍オミオ ミクムミソミセミサム糊キミセミイミーミスミクミオ ミソミセムミサミオミエミスミオミウミセ ミクミキミシミオミスミオミスミスミセミウミセ ミイムミオミシミオミスミク ムミーミケミサミー, ミオムミサミク ミエミームひー ミク ミイムミオミシム ムム諌オミシミコミク ミスミオ ミシミセミウムτ ミアム錦び ミソミセミサムτミオミスム ミクミキ Exif. ミ湲ミク ミイム巾アミセムミオ ミソムσスミコムひー ミ樮ひシミオミスミー ミイ ムミセミセミアム禍オミスミクミク ミソミセミエムひイミオムミカミエミオミスミクム ムミーミケミサ ミスミオ ミアムσエミオム ミキミーミームムミクミイミクムミセミイミーミス.

+

+

ミヲミオミサム ミエミサム ミームムミクミイミクムミセミイミーミスミクム

+

ミ柘巾アミオムミクムひオ ミコムミクムひオムミクミク ミームムミクミイミクムミセミイミーミスミクム ムミセムひセミウムミームミクミケ.

+
    +
  • ミ斷オミイミーミカミスミセ, ミイ ミコミーミコミセミケ ミエミオミスム ム采ひセ ミアム巾サミセ ムミエミオミサミーミスミセ.

    +

    ミ績ムミクミイミクムミセミイミームび ミイムミオ ムミセムひセミウムミームミクミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 7 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 7 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 30 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 60 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 90 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク - ミアミセミサミオミオ 180 ミエミスミオミケ.

    +

    ミ岱セミサミオミオ ムミオミシ ミスミー 30 ミエミスミオミケ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク

    +
  • +
  • ミ頒ームひー ムム貫岱シミコミク ミアミセミサム袴威オ ミウミセミエミー.

    +

    ミ頒ームひー ムミセムひセミウムミームミクミク ミアミセミサミオミオ ムミオミシ ミスミー ミウミセミエ ムムひームム威オ ムひオミコムτ禍オミウミセ ミイムミオミシミオミスミク.

    +
  • + +
+

+

ミ渙オムミオミクミシミオミスミセミイミームび ムミーミケミサ ミク ムミセムムミーミスミクムび ミオミウミセ ミイ ムσコミーミキミーミスミスミセミシ ミコミームひーミサミセミウミオ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムひセ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク ムミーミケミサ ミアムσエミオム ミソミオムミオミクミシミオミスミセミイミーミス. ミ侑シム ムミーミケミサミー ミシミセミカミオム ミアム錦び ムσコミーミキミーミスミセ ミイ ミコミームミオムムひイミオ ミエミームび ミク ミイムミオミシミオミスミク ミイ "ミィミーミアミサミセミスミオ ミクミシミオミスミク ムミーミケミサミー". ミ柘 ムひーミコミカミオ ミシミセミカミオムひオ ムミセミキミエミームび ミコミームひーミサミセミウ ミエミサム ムムミーミスミオミスミクム ムミーミケミサミセミイ. ミ渙セミカミーミサムσケムムひー, ミイミコミサム紗ミクムひオ "ミ。ミセムムミーミスム肖び ミイ ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク", ムムひセミアム ムムミーミスミクムび ミオミウミセ ミイ ミコミームひーミサミセミウミオ.

+

+

ミ侑シム ムミーミケミサミー ミスミセミシミオム ミキミーミコミーミキミー

+

ミ頒セミアミーミイム袴ひオ ミスミセミシミオム ミキミーミコミーミキミー ミコ ミクミシミオミスミク ムミーミケミサミー ミソムミク ミームムミクミイミクムミセミイミーミスミクミク.

+
    +
  • ミッ ミクミシ ミスミオ ミソミセミサム糊キムτ紗ム.

    +

    ミ斷オ ミエミセミアミーミイミサム紹ケムひオ ミスミセミシミオム ミキミーミコミーミキミー.

    +
  • +
  • ミ頒セミアミーミイム ムびミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 001-999.

    +
  • +
  • ミ頒セミアミーミイム ムミオムび錦ミオムミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 0001-9999.

    +
  • +
  • ミ頒セミアミーミイム ミソム肖ひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 00001-99999.

    +
  • +
  • ミ頒セミアミーミイム ム威オムムひクミキミスミームミスミセミオ ムミクムミサミセ.

    +

    ミ頒セミアミーミイミクムび 000001-999999.

    +
  • + +
+

+

ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

+
    +
  • ミ樮ミクミウミクミスミーミサム糊スミセミオ ミクミシム

    +

    ミ漬イミオミエミクムひオ ミクミシム ムミーミケミサミー ミソミオムミオミエ ミソミオムミオミクミシミオミスミセミイミーミスミクミオミシ ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミ。ミイミクミエミーミスミクミオ

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 2018-04-16).

    +
  • +
  • ミイムミオミシム

    +

    ミ漬イミオミエミクムひオ ミイムミオミシム (ミスミーミソムミクミシミオム, 12-00-30) ミイ ム威ーミアミサミセミス.

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ムミーミケミサミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ミソミオムミオミクミシミオミスミセミイム巾イミーミオミシミセミウミセ ムミーミケミサミー. ミ厘スミームミオミスミクミオ ミソミセ ムσシミセミサムミーミスミクム DSC_%DATE%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム . ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

    +
  • + +
+

+

ミ湲ミク ミームムミクミイミクムミセミイミーミスミクミク ミセミス ミアムσエミオム ムミセムムミーミスミオミス ミイ ミコミームひーミサミセミウ

+

ミ柘 ミシミセミカミオムひオ ムミセミキミエミームび ミク ムミセムムミーミスミクムび ミコミームひーミサミセミウ ミソムミク ミームムミクミイミクムミセミイミーミスミクミク. ミ篇ミサミク ミソミセムムひーミイミクムび ミウミーミサミセムミコム ミイ ム采ひセミシ ミソミセミサミオ, ムひセ ミセムひセミアムミーミキミクムびム "ミィミーミアミサミセミス ミスミーミキミイミーミスミクム ミコミームひーミサミセミウミー".

+

+

ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

+

ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミケ ミエミクムミオミコムひセムミクミク, ミスミーミソムミクミシミオム DIR-%YEAR%-%MONTH%. ミ柘 ミシミセミカミオムひオ ミイミイミオムムひク ミコミサム紗ミオミイミセミオ ムミサミセミイミセ ミキミー ミコムτムミセムミセミシ, ミスミーミカミーミイ ミコミスミセミソミコム .

+
    +
  • ミキミーミソミーミエミスム巾ケ ミコミーミサミオミスミエミームム

    +

    ミ」ミコミーミカミクムひオ ミウミセミエ (ミスミーミソムミクミシミオム, 2018) ミイ ム威ーミアミサミセミスミオ.

    +
  • +
  • ミシミオムム肖 (ミウミセミエミー)

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミスミオ ミシミオムム肖 (ミスミーミソムミクミシミオム, 04).

    +
  • +
  • ミエミオミスム

    +

    ミ漬イミオミエミクムひオ ミイ ム威ーミアミサミセミス ミエミームび (ミスミーミソムミクミシミオム, 16).

    +
  • +
  • ミィミーミアミサミセミス ミクミシミオミスミク ミコミームひーミサミセミウミー

    +

    ミ漬イミオミエミクムひオ ム威ーミアミサミセミス ムミセミキミエミーミイミーミオミシミセミウミセ ミコミームひーミサミセミウミー. ミ厘スミームミオミスミクム ミソミセ ムσシミセミサムミーミスミクム 窶 %ミ寅榧頒%.

    +
  • + +
+

ミ ミソミセムミサミオミエミスミオミケ ムムびミセミコミオ ミアムσエムτ ミソミセミコミーミキミーミスム ムミオミーミサム糊スミーム ミエミクムミオミコムひセムミクム ミク ミクミシム ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミセムムミーミスミオミス.

+

+

ミ渙セミカミーミサムσケムムひー, ムミシミセムびミクムひオ ミスミクミカミオ ミエミサム ミソミセミサムτミオミスミクム ミエミセミソミセミサミスミクムひオミサム糊スミセミケ ミクミスムミセムミシミームミクミク.

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.htm b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.htm deleted file mode 100644 index 67577892..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.htm +++ /dev/null @@ -1,309 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

Маунт Пойнт.

- -

Выберите -точку крепления, которая будет использоваться для внутреннего хранения.

- -

 

- -

Сохранить zip-файл в SDCARD

- -

Если эта опция установлена, -ZIP-файл будет сохранен в SDCARD.

- -

 

- -

Выбор SDCARD

- -

          При -нажатии появится экран выбора SDCARD.

- -

 

- -

Список файлов

- -

Отображает список файлов.

- -

 

- -

Добавить ключевые слова.

- -

В качестве имен целевых файлов -можно использовать %YEAR%, %MONTH%, %DAY% и %DAY-OF-YEAR%. Ключевые слова -конвертируются в даты в начале синхронизации.

- -

 

- -

Степень сжатия

- -

Выберите уровень сжатия.

- -

 

- -

Шифрование

- -

Выберите метод шифрования.

- -

 

- -

Пароль

- -

Укажите пароль для шифрования.

- -

 

- -

Пожалуйста, смотрите ниже для -получения дополнительной информации.

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.html b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.html new file mode 100644 index 00000000..558c8121 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_RU_folder_zip.html @@ -0,0 +1,34 @@ + + + + +SMBSync2_Help_RU_folder_zip +

ミ慴ームσスム ミ渙セミケミスム.

+

ミ柘巾アミオムミクムひオ ムひセムミコム ミコムミオミソミサミオミスミクム, ミコミセムひセムミーム ミアムσエミオム ミクムミソミセミサム糊キミセミイミームび袴ム ミエミサム ミイミスムτびミオミスミスミオミウミセ ムムミーミスミオミスミクム.

+

+

ミ。ミセムムミーミスミクムび zip-ムミーミケミサ ミイ SDCARD

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ZIP-ムミーミケミサ ミアムσエミオム ムミセムムミーミスミオミス ミイ SDCARD.

+

+

ミ柘巾アミセム SDCARD

+

ミ湲ミク ミスミーミカミームひクミク ミソミセム紹イミクムびム ム災コムミーミス ミイム巾アミセムミー SDCARD.

+

+

ミ。ミソミクムミセミコ ムミーミケミサミセミイ

+

ミ樮ひセミアムミーミカミーミオム ムミソミクムミセミコ ムミーミケミサミセミイ.

+

+

ミ頒セミアミーミイミクムび ミコミサム紗ミオミイム巾オ ムミサミセミイミー.

+

ミ ミコミームミオムムひイミオ ミクミシミオミス ムミオミサミオミイム錦 ムミーミケミサミセミイ ミシミセミカミスミセ ミクムミソミセミサム糊キミセミイミームび %YEAR%, %MONTH%, %DAY% ミク %DAY-OF-YEAR%. ミ墟サム紗ミオミイム巾オ ムミサミセミイミー ミコミセミスミイミオムムひクムムτ紗びム ミイ ミエミームび ミイ ミスミームミーミサミオ ムミクミスムムミセミスミクミキミームミクミク.

+

+

ミ。ムひオミソミオミスム ムミカミームひクム

+

ミ柘巾アミオムミクムひオ ムτミセミイミオミスム ムミカミームひクム.

+

+

ミィミクムムミセミイミーミスミクミオ

+

ミ柘巾アミオムミクムひオ ミシミオムひセミエ ム威クムムミセミイミーミスミクム.

+

+

ミ渙ームミセミサム

+

ミ」ミコミーミカミクムひオ ミソミームミセミサム ミエミサム ム威クムムミセミイミーミスミクム.

+

+

ミ渙セミカミーミサムσケムムひー, ムミシミセムびミクムひオ ミスミクミカミオ ミエミサム ミソミセミサムτミオミスミクム ミエミセミソミセミサミスミクムひオミサム糊スミセミケ ミクミスムミセムミシミームミクミク.

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.htm b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.htm deleted file mode 100644 index cc001ab0..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.htm +++ /dev/null @@ -1,747 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*        -режим тестирования

- -

Если этот флажок установлен, файл -не будет удален или скопирован. Используйте эту функцию, чтобы увидеть, какие -файлы копируются или удаляются при синхронизации в задаче синхронизации. Вы -можете увидеть, какие файлы копируются или удаляются по истории и сообщениям. В -тестовом режиме не может быть установлено автоматическое задание синхронизации.

- -

 

- -

*        -автосинхронная задача

- -

Если нажать кнопку Sync, когда ни -одно задание не выбрано, оно становится заданием для начала синхронизации.

- -

 

- -

*        -имя задачи

- -

Имя задачи синхронизации. Имена -не чувствительны к регистру.

- -

 

- -

*        -метод синхронизации

- -

Выберите метод из Зеркало, Копировать, Переместить или Архивировать. Синхронизация осуществляется в одностороннем направлении от -ведущего к цели.

- -

*        -Миллер

- -

Каталог и файлы на основной -стороне будут скопированы на целевую сторону (*1), а файлы и каталоги на -целевой стороне, которые не существуют на основной стороне, будут удалены после -завершения копирования.

- -

*            -движение

- -

Каталоги и файлы на ведущей -стороне копируются на целевую сторону, а файлы на ведущей стороне, -скопированные на целевую сторону, удаляются. (Однако, если файл имеет то же -имя, что и ведущий и целевой, размер файла и дата обновления одинаковы, то -ведущий файл удаляется, а не копируется.

- -

*             -копия

- -

Файлы в главном каталоге -копируются в целевую директорию.

- -

*             -архив

- -

Фотографии и видео в основном каталоге -будут перемещены к цели, если дата съемки 7 дней или на 30 дней раньше, чем -была выполнена запись в архив. (Но ты не можешь использовать молнию на цели.)

- -

 

- -

*1 При выполнении любого из -следующих трех условий файл оценивается как файл разницы и копируется или -перемещается. Однако, вы можете игнорировать размер файла и время последнего -обновления в опциях задачи синхронизации.

- -

Ÿ  -Файл не существует.

- -

Ÿ  -Размер файла отличается.

- -

Ÿ  -Дата и время последнего обновления отличаются более чем на 3 -секунды (количество секунд может быть изменено с помощью опции задачи -синхронизации).

- -

 

- -

*        -Поменяйте хозяина и цель

- -

Поменяйте местами содержимое -основной и целевой папок.

- -

 

- -

*        -основная папка

- -

Укажите основную папку для -синхронизации. Коснитесь значка, чтобы отобразить экран редактирования исходной -папки.

- -

 

- -

*        -целевая папка

- -

Укажите целевую папку для -синхронизации. Коснитесь значка, чтобы отобразить экран редактирования папки -назначения.

- -

 

- -

*        -Выбор файла для синхронизации

- -

Если не проверить, все файлы -будут синхронизированы. Если Вы установите этот флажок, Вы можете выбрать файлы -для синхронизации.

- -

*       -Синхронизация аудио файлов

- -

При установке -флажка он будет синхронизировать файлы со следующими расширениями.

- -

aac, aif, aifc, aiff, flac, kar, -m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

- -

*       -Синхронизация файлов изображений

- -

При установке флажка он будет -синхронизировать файлы со следующими расширениями.

- -

bmp, cgm, djv, djvu, gif, ico, -ief, jpe, jpeg, jpg, pbm, pgm, png,pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, -xbm, xpm, xwd

- -

*       -Синхронизировать видеофайлы

- -

При установке флажка он будет -синхронизировать файлы со следующими расширениями.

- -

avi, m4u, mov, -mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

- -

*       -файловый фильтр

- -

Кроме вышеуказанного, вы можете -выбрать имя и расширение файла, который будет синхронизироваться

- -

 

- -

*        -Укажите подкаталог, который будет -синхронизирован

- -

Если не проверить, все -подкаталоги будут синхронизированы. Если вы отметите это, то на экране появится -кнопка фильтрации каталогов.

- -

*       -каталожный фильтр

- -

Вы можете -выбрать каталог для синхронизации

- -

 

- -

*        -Начинайте синхронизацию только во -время зарядки

- -

Вы можете запустить синхронизацию -только во время зарядки. Запуск мотива, когда он не заряжается, приводит к -ошибке и останавливает запуск последующих синхронных задач.

- -

 

- -

*        -Обрабатывать файлы в директории -непосредственно под директорией, указанной ведущим устройством

- -

Если флажок установлен, то будут -обрабатываться файлы в каталоге, указанном в основной папке, и его -подкаталогах, а также файлы в подкаталогах. Если флажок не установлен, будут -обрабатываться только подкаталоги и файлы в подкаталогах в каталоге, указанном -в главной папке.

- -

Например: -Если корень внутреннего хранилища должен быть главным, а каталог для -синхронизации указан в фильтре выбора каталога, то оставьте его неотмеченным, -файлы в корневом каталоге будут исключены.

- -

 

- -

*        -Проверка перед копированием или -удалением

- -

Если этот -флажок установлен, перед удалением и перезаписью файла отобразится диалоговое -окно подтверждения.

- -

 

- -

*        -беспроводная ЛВС

- -

В разделе "Синхронизация при -подключении по точке доступа", если соединение с точкой доступа -отсутствует, синхронизация завершится с ошибкой.

- -

Список точек доступа" может -начать синхронизацию, когда он подключен к определенной точке доступа. Нажмите -кнопку списка точек доступа беспроводной локальной сети и введите имя точки -доступа.

- -

 

- -

*        -Показать больше вариантов

- -

Следующие -опции должны использоваться только для расширенных настроек.

- -

 

- -

*        -Подкаталоги обработки

- -

При установке флажка подкаталог, выбранный фильтром -синхронизации, будет синхронизирован. Если это не будет проверено, подкаталоги -не будут синхронизированы.

- -

 

- -

*        -Обращаться с пустым каталогом

- -

Если эта опция установлена, будет синхронизирована -пустая директория. (Создает пустую директорию на цели.)

- -

 

- -

*        -Обработка скрытых директорий

- -

Если эта опция установлена, скрытый каталог будет синхронизирован. (На -Android имя скрытого каталога - ". (Директория, созданная при -синхронизации, не является скрытой директорией, поскольку она представлена -битами директории, а не именем директории в Windows и Samba.

- -

 

- -

*        -Обработка скрытых файлов

- -

Если эта опция установлена, скрытые файлы будут синхронизированы. (На -Android имя скрытого файла "...". (Файл, созданный при синхронизации, -не является скрытым файлом, так как в Windows и Samba он представлен битами в -каталоге, а не именем файла.

- -

 

- -

*        -Восстановление, если во время синхронизации -возникает сетевая ошибка.

- -

Повторная синхронизация только в случае ошибки на удаленной стороне. -Каждая повторная попытка должна быть сделана через 30 секунд после -возникновения ошибки.

- -

 

- -

*        -Используйте фильтры -выбора/исключения расширенной директории

- -

Если при исключении верхнего каталога выбрана нижняя директория, то -нижняя будет настроена на синхронизацию.

- -

 

- -

*        -При зеркальном отображении сначала -удалите.

- -

При проверке сначала удаляются каталоги и файлы, которые не существуют -в основной папке, а затем копируются файлы, отличающиеся по размеру или времени -последнего изменения, из основной папки.

- -

Если основной папкой является SMB, то сканирование файлов по сети -занимает много времени. По возможности используйте протокол SMB -"SMB2".

- -

 

- -

*        -Не синхронизируйте время последнего -обновления целевого файла с ведущим.

- -

Включите его, если SmbFile#setLastModified() или -File#setLastModified() выйдет из строя. Таким образом, разница между файлом и -файлом определяется существованием файла и его размером.

- -

 

- -

*        -Заставить SMBSSync2 получить -последнюю измененную дату и время.

- -

Попробуйте каждый раз копировать все файлы: сохраняйте последнюю -измененную дату и время локального файла по-своему SMBSync2, без использования -Java File#setLastModified().

- -

 

- -

*        -Ограничить буфер IO до 16KB при -записи SMB папок.

- -

Если при записи в папку PC/NAS Вы получили -ошибку "Доступ запрещен", -пожалуйста, попробуйте. Если эта опция установлена, то она ограничивает IO -буфер для удаленной записи файлов до 16 КБ. Тем не менее, производительность -будет ухудшаться.

- -

 

- -

*        -Используйте размер файла для -определения разницы

- -

Если размер файла отличается, то при проверке он будет считаться -разным.

- -

 

- -

*        -Только когда размер файла ведущего -велик, он оценивается как файл разницы.

- -

Если эта опция установлена, то синхронизация будет осуществляться только -при большом размере главного файла.

- -

 

- -

*        -Использовать для определения -разницы последнее измененное время файла

- -

Если время последнего обновления файла отличается, то при проверке оно -оценивается как разница.

- -

 

- -

*        -Разница в разрешённом времени -последнего обновления в суждении о файле разницы

- -

Выберите между 1 секундой, 3 секундами и 10 секундами. Если разница в -последнем измененном времени файла находится в пределах выбранной разницы во -времени, то предполагается, что она не меняется.

- -

 

- -

*        -Не перезаписывайте целевой файл, -если он новый, чем основной.

- -

Если этот флажок установлен, он перезаписывает файл только в том -случае, если главный файл новее целевого, даже если размер файла и время -последнего изменения отличаются.

- -

 

- -

*        -Пропустить обработку каталогов или -файлов, содержащих недоступные символы в имени каталога или файла. (", -:,\fnDroid, *, <, >, |)

- -

Если этот флажок установлен, то вместо обработки директории/файла, -содержащего недоступные символы, будет отображаться предупреждающее сообщение и -обрабатываться следующий каталог/файл.

- -

 

- -

Пожалуйста, смотрите ниже для получения дополнительной -информации.

- -

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.html b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.html new file mode 100644 index 00000000..b663695f --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_RU_task.html @@ -0,0 +1,155 @@ + + + + +SMBSync2_Help_RU_task +

ムミオミカミクミシ ムひオムムひクムミセミイミーミスミクム

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムミーミケミサ ミスミオ ミアムσエミオム ムσエミーミサミオミス ミクミサミク ムミコミセミソミクムミセミイミーミス. ミ佯ミソミセミサム糊キムσケムひオ ム采び ムムσスミコムミクム, ムムひセミアム ムσイミクミエミオムび, ミコミーミコミクミオ ムミーミケミサム ミコミセミソミクムムτ紗びム ミクミサミク ムσエミーミサム肖紗びム ミソムミク ムミクミスムムミセミスミクミキミームミクミク ミイ ミキミーミエミームミオ ムミクミスムムミセミスミクミキミームミクミク. ミ柘 ミシミセミカミオムひオ ムσイミクミエミオムび, ミコミーミコミクミオ ムミーミケミサム ミコミセミソミクムムτ紗びム ミクミサミク ムσエミーミサム肖紗びム ミソミセ ミクムムひセムミクミク ミク ムミセミセミアム禍オミスミクム紹シ. ミ ムひオムムひセミイミセミシ ムミオミカミクミシミオ ミスミオ ミシミセミカミオム ミアム錦び ムτムひーミスミセミイミサミオミスミセ ミーミイムひセミシミームひクムミオムミコミセミオ ミキミーミエミーミスミクミオ ムミクミスムムミセミスミクミキミームミクミク.

+

ミーミイムひセムミクミスムムミセミスミスミーム ミキミーミエミームミー

+

ミ篇ミサミク ミスミーミカミームび ミコミスミセミソミコム Sync, ミコミセミウミエミー ミスミク ミセミエミスミセ ミキミーミエミーミスミクミオ ミスミオ ミイム巾アムミーミスミセ, ミセミスミセ ムムひーミスミセミイミクムびム ミキミーミエミーミスミクミオミシ ミエミサム ミスミームミーミサミー ムミクミスムムミセミスミクミキミームミクミク.

+

ミクミシム ミキミーミエミームミク

+

ミ侑シム ミキミーミエミームミク ムミクミスムムミセミスミクミキミームミクミク. ミ侑シミオミスミー ミスミオ ムムσイムムひイミクムひオミサム糊スム ミコ ムミオミウミクムムびム.

+

ミシミオムひセミエ ムミクミスムムミセミスミクミキミームミクミク

+

ミ柘巾アミオムミクムひオ ミシミオムひセミエ ミクミキ ミ厘オムミコミーミサミセ, ミ墟セミソミクムミセミイミームび, ミ渙オムミオミシミオムムひクムび ミクミサミク ミ績ムミクミイミクムミセミイミームび. ミ。ミクミスムムミセミスミクミキミームミクム ミセムムτ禍オムムひイミサム紹オムびム ミイ ミセミエミスミセムムひセムミセミスミスミオミシ ミスミーミソムミーミイミサミオミスミクミク ミセム ミイミオミエムτ禍オミウミセ ミコ ムミオミサミク.

+
    +
  • ミ慴クミサミサミオム

    +

    ミ墟ームひーミサミセミウ ミク ムミーミケミサム ミスミー ミセムミスミセミイミスミセミケ ムムひセムミセミスミオ ミアムσエムτ ムミコミセミソミクムミセミイミーミスム ミスミー ムミオミサミオミイムτ ムムひセムミセミスム (*1), ミー ムミーミケミサム ミク ミコミームひーミサミセミウミク ミスミー ムミオミサミオミイミセミケ ムムひセムミセミスミオ, ミコミセムひセムム巾オ ミスミオ ムムτ禍オムムひイムτ紗 ミスミー ミセムミスミセミイミスミセミケ ムムひセムミセミスミオ, ミアムσエムτ ムσエミーミサミオミスム ミソミセムミサミオ ミキミーミイミオムム威オミスミクム ミコミセミソミクムミセミイミーミスミクム.

    +
  • +
  • ミエミイミクミカミオミスミクミオ

    +

    ミ墟ームひーミサミセミウミク ミク ムミーミケミサム ミスミー ミイミオミエムτ禍オミケ ムムひセムミセミスミオ ミコミセミソミクムムτ紗びム ミスミー ムミオミサミオミイムτ ムムひセムミセミスム, ミー ムミーミケミサム ミスミー ミイミオミエムτ禍オミケ ムムひセムミセミスミオ, ムミコミセミソミクムミセミイミーミスミスム巾オ ミスミー ムミオミサミオミイムτ ムムひセムミセミスム, ムσエミーミサム肖紗びム. (ミ榧エミスミーミコミセ, ミオムミサミク ムミーミケミサ ミクミシミオミオム ムひセ ミカミオ ミクミシム, ムムひセ ミク ミイミオミエムτ禍クミケ ミク ムミオミサミオミイミセミケ, ムミーミキミシミオム ムミーミケミサミー ミク ミエミームひー ミセミアミスミセミイミサミオミスミクム ミセミエミクミスミーミコミセミイム, ムひセ ミイミオミエムτ禍クミケ ムミーミケミサ ムσエミーミサム紹オムびム, ミー ミスミオ ミコミセミソミクムムσオムびム.

    +
  • +
  • ミコミセミソミクム

    +

    ミ、ミーミケミサム ミイ ミウミサミーミイミスミセミシ ミコミームひーミサミセミウミオ ミコミセミソミクムムτ紗びム ミイ ムミオミサミオミイムτ ミエミクムミオミコムひセムミクム.

    +
  • +
  • ミームムミクミイ

    +

    ミ、ミセムひセミウムミームミクミク ミク ミイミクミエミオミセ ミイ ミセムミスミセミイミスミセミシ ミコミームひーミサミセミウミオ ミアムσエムτ ミソミオムミオミシミオム禍オミスム ミコ ムミオミサミク, ミオムミサミク ミエミームひー ムム諌オミシミコミク 7 ミエミスミオミケ ミクミサミク ミスミー 30 ミエミスミオミケ ムミーミスム袴威オ, ムミオミシ ミアム巾サミー ミイム巾ソミセミサミスミオミスミー ミキミーミソミクムム ミイ ミームムミクミイ. (ミ斷セ ムび ミスミオ ミシミセミカミオム尉 ミクムミソミセミサム糊キミセミイミームび ミシミセミサミスミクム ミスミー ムミオミサミク.)

    +
  • + +
+

*1 ミ湲ミク ミイム巾ソミセミサミスミオミスミクミク ミサム社アミセミウミセ ミクミキ ムミサミオミエムτ紗禍クム ムびミオム ムτミサミセミイミクミケ ムミーミケミサ ミセムミオミスミクミイミーミオムびム ミコミーミコ ムミーミケミサ ムミーミキミスミクムム ミク ミコミセミソミクムムσオムびム ミクミサミク ミソミオムミオミシミオム禍ーミオムびム. ミ榧エミスミーミコミセ, ミイム ミシミセミカミオムひオ ミクミウミスミセムミクムミセミイミームび ムミーミキミシミオム ムミーミケミサミー ミク ミイムミオミシム ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ミイ ミセミソムミクム肖 ミキミーミエミームミク ムミクミスムムミセミスミクミキミームミクミク.

+
    +
  • ミ、ミーミケミサ ミスミオ ムムτ禍オムムひイムσオム.
  • +
  • ミミーミキミシミオム ムミーミケミサミー ミセムひサミクムミーミオムびム.
  • +
  • ミ頒ームひー ミク ミイムミオミシム ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ミセムひサミクムミーム紗びム ミアミセミサミオミオ ムミオミシ ミスミー 3 ムミオミコムσスミエム (ミコミセミサミクムミオムムひイミセ ムミオミコムσスミエ ミシミセミカミオム ミアム錦び ミクミキミシミオミスミオミスミセ ム ミソミセミシミセム禾袴 ミセミソムミクミク ミキミーミエミームミク ムミクミスムムミセミスミクミキミームミクミク).
  • + +
+

ミ渙セミシミオミスム紹ケムひオ ムミセミキム紹クミスミー ミク ムミオミサム

+

ミ渙セミシミオミスム紹ケムひオ ミシミオムムひーミシミク ムミセミエミオムミカミクミシミセミオ ミセムミスミセミイミスミセミケ ミク ムミオミサミオミイミセミケ ミソミーミソミセミコ.

+

ミセムミスミセミイミスミーム ミソミーミソミコミー

+

ミ」ミコミーミカミクムひオ ミセムミスミセミイミスムτ ミソミーミソミコム ミエミサム ムミクミスムムミセミスミクミキミームミクミク. ミ墟セムミスミクムひオムム ミキミスミームミコミー, ムムひセミアム ミセムひセミアムミーミキミクムび ム災コムミーミス ムミオミエミーミコムひクムミセミイミーミスミクム ミクムムミセミエミスミセミケ ミソミーミソミコミク.

+

ムミオミサミオミイミーム ミソミーミソミコミー

+

ミ」ミコミーミカミクムひオ ムミオミサミオミイムτ ミソミーミソミコム ミエミサム ムミクミスムムミセミスミクミキミームミクミク. ミ墟セムミスミクムひオムム ミキミスミームミコミー, ムムひセミアム ミセムひセミアムミーミキミクムび ム災コムミーミス ムミオミエミーミコムひクムミセミイミーミスミクム ミソミーミソミコミク ミスミーミキミスミームミオミスミクム.

+

ミ柘巾アミセム ムミーミケミサミー ミエミサム ムミクミスムムミセミスミクミキミームミクミク

+

ミ篇ミサミク ミスミオ ミソムミセミイミオムミクムび, ミイムミオ ムミーミケミサム ミアムσエムτ ムミクミスムムミセミスミクミキミクムミセミイミーミスム. ミ篇ミサミク ミ柘 ムτムひーミスミセミイミクムひオ ム采ひセム ムミサミーミカミセミコ, ミ柘 ミシミセミカミオムひオ ミイム巾アムミームび ムミーミケミサム ミエミサム ムミクミスムムミセミスミクミキミームミクミク.

+
    +
  • ミ。ミクミスムムミセミスミクミキミームミクム ミームσエミクミセ ムミーミケミサミセミイ

    +

    ミ湲ミク ムτムひーミスミセミイミコミオ ムミサミーミカミコミー ミセミス ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミームび ムミーミケミサム ムミセ ムミサミオミエムτ紗禍クミシミク ムミームム威クムミオミスミクム紹シミク.
    aac, aif, aifc, aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

    +
  • +
  • ミ。ミクミスムムミセミスミクミキミームミクム ムミーミケミサミセミイ ミクミキミセミアムミーミカミオミスミクミケ

    +

    ミ湲ミク ムτムひーミスミセミイミコミオ ムミサミーミカミコミー ミセミス ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミームび ムミーミケミサム ムミセ ムミサミオミエムτ紗禍クミシミク ムミームム威クムミオミスミクム紹シミク.
    bmp, cgm, djv, djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png,pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, xbm, xpm, xwd

    +
  • +
  • ミ。ミクミスムムミセミスミクミキミクムミセミイミームび ミイミクミエミオミセムミーミケミサム

    +

    ミ湲ミク ムτムひーミスミセミイミコミオ ムミサミーミカミコミー ミセミス ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミームび ムミーミケミサム ムミセ ムミサミオミエムτ紗禍クミシミク ムミームム威クムミオミスミクム紹シミク.
    avi, m4u, mov, mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

    +
  • +
  • ムミーミケミサミセミイム巾ケ ムミクミサム袴び

    +

    ミ墫ミセミシミオ ミイム錦威オムσコミーミキミーミスミスミセミウミセ, ミイム ミシミセミカミオムひオ ミイム巾アムミームび ミクミシム ミク ムミームム威クムミオミスミクミオ ムミーミケミサミー, ミコミセムひセムム巾ケ ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミームび袴ム

    +
  • + +
+

ミ」ミコミーミカミクムひオ ミソミセミエミコミームひーミサミセミウ, ミコミセムひセムム巾ケ ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミーミス

+

ミ篇ミサミク ミスミオ ミソムミセミイミオムミクムび, ミイムミオ ミソミセミエミコミームひーミサミセミウミク ミアムσエムτ ムミクミスムムミセミスミクミキミクムミセミイミーミスム. ミ篇ミサミク ミイム ミセムひシミオムひクムひオ ム采ひセ, ムひセ ミスミー ム災コムミーミスミオ ミソミセム紹イミクムびム ミコミスミセミソミコミー ムミクミサム袴びミームミクミク ミコミームひーミサミセミウミセミイ.

+
    +
  • ミコミームひーミサミセミカミスム巾ケ ムミクミサム袴び
  • + +
+

ミ柘 ミシミセミカミオムひオ ミイム巾アムミームび ミコミームひーミサミセミウ ミエミサム ムミクミスムムミセミスミクミキミームミクミク

+

ミ斷ームミクミスミーミケムひオ ムミクミスムムミセミスミクミキミームミクム ムひセミサム糊コミセ ミイミセ ミイムミオミシム ミキミームム紹エミコミク

+

ミ柘 ミシミセミカミオムひオ ミキミーミソムτムひクムび ムミクミスムムミセミスミクミキミームミクム ムひセミサム糊コミセ ミイミセ ミイムミオミシム ミキミームム紹エミコミク. ミ厘ーミソムτミコ ミシミセムひクミイミー, ミコミセミウミエミー ミセミス ミスミオ ミキミームム紹カミーミオムびム, ミソムミクミイミセミエミクム ミコ ミセム威クミアミコミオ ミク ミセムムひーミスミーミイミサミクミイミーミオム ミキミーミソムτミコ ミソミセムミサミオミエムτ紗禍クム ムミクミスムムミセミスミスム錦 ミキミーミエミーム.

+

ミ榧アムミーミアミームび巾イミームび ムミーミケミサム ミイ ミエミクムミオミコムひセムミクミク ミスミオミソミセムムミオミエムムひイミオミスミスミセ ミソミセミエ ミエミクムミオミコムひセムミクミオミケ, ムσコミーミキミーミスミスミセミケ ミイミオミエムτ禍クミシ ムτムびミセミケムムひイミセミシ

+

ミ篇ミサミク ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムひセ ミアムσエムτ ミセミアムミーミアミームび巾イミームび袴ム ムミーミケミサム ミイ ミコミームひーミサミセミウミオ, ムσコミーミキミーミスミスミセミシ ミイ ミセムミスミセミイミスミセミケ ミソミーミソミコミオ, ミク ミオミウミセ ミソミセミエミコミームひーミサミセミウミーム, ミー ムひーミコミカミオ ムミーミケミサム ミイ ミソミセミエミコミームひーミサミセミウミーム. ミ篇ミサミク ムミサミーミカミセミコ ミスミオ ムτムひーミスミセミイミサミオミス, ミアムσエムτ ミセミアムミーミアミームび巾イミームび袴ム ムひセミサム糊コミセ ミソミセミエミコミームひーミサミセミウミク ミク ムミーミケミサム ミイ ミソミセミエミコミームひーミサミセミウミーム ミイ ミコミームひーミサミセミウミオ, ムσコミーミキミーミスミスミセミシ ミイ ミウミサミーミイミスミセミケ ミソミーミソミコミオ.

+

ミ斷ーミソムミクミシミオム: ミ篇ミサミク ミコミセムミオミスム ミイミスムτびミオミスミスミオミウミセ ムムミーミスミクミサミクム禍ー ミエミセミサミカミオミス ミアム錦び ミウミサミーミイミスム巾シ, ミー ミコミームひーミサミセミウ ミエミサム ムミクミスムムミセミスミクミキミームミクミク ムσコミーミキミーミス ミイ ムミクミサム袴びミオ ミイム巾アミセムミー ミコミームひーミサミセミウミー, ムひセ ミセムムひーミイム袴ひオ ミオミウミセ ミスミオミセムひシミオムミオミスミスム巾シ, ムミーミケミサム ミイ ミコミセムミスミオミイミセミシ ミコミームひーミサミセミウミオ ミアムσエムτ ミクムミコミサム紗ミオミスム.

+

ミ湲ミセミイミオムミコミー ミソミオムミオミエ ミコミセミソミクムミセミイミーミスミクミオミシ ミクミサミク ムσエミーミサミオミスミクミオミシ

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ミソミオムミオミエ ムσエミーミサミオミスミクミオミシ ミク ミソミオムミオミキミーミソミクムム袴 ムミーミケミサミー ミセムひセミアムミーミキミクムびム ミエミクミーミサミセミウミセミイミセミオ ミセミコミスミセ ミソミセミエムひイミオムミカミエミオミスミクム.

+

ミアミオムミソムミセミイミセミエミスミーム ミ嶢漬。

+
    +
  • ミ岱オミウミクムひオ ミエミーミカミオ ミイ ミイム巾コミサム紗ミオミスミスミセミシ ムミセムムひセム紹スミクミク

    +

    ミ渙セミソムミセミアムσオム ミキミーミソムτムひクムび ムミクミスムムミセミスミクミキミームミクム, ミエミーミカミオ ミオムミサミク Wifi ミイム巾コミサム紗ミオミス.

    +
  • +
  • ミ渙セミエミコミサム紗ミクムび袴ム ミコ ミサム社アミセミケ ムひセムミコミオ ミエミセムムびσソミー

    +

    ミ帯σエミオム ムミクミスムムミセミスミクミキミクムミセミイミームび袴ム ムひセミサム糊コミセ ミソムミク ミソミセミエミコミサム紗ミオミスミクミク ミコ ムミオムひク Wi-Fi. ミ榧ス ミソムミクミシミオム ミサム社アミセミオ ミクミシム WLAN SSID.

    +
  • +
  • ミ侑シミオミオム ムミームムひスム巾ケ ミーミエムミオム

    +

    ミ柘 ミシミセミカミオムひオ ミクミスミクムミクミクムミセミイミームび ムミクミスムムミセミスミクミキミームミクム ムひセミサム糊コミセ ミイ ムひセミシ ムミサムτミーミオ, ミオムミサミク IP-ミーミエムミオム, ミソムミクムミイミセミオミスミスム巾ケ ムミオムひク WiFi, ミスミームミセミエミクムびム ミイ ムミサミオミエムτ紗禍クム ミエミクミーミソミーミキミセミスミーム: 10.0.0.0 - 10.255.255.255, 172.16.0.0 - 172.31.255.255 ミクミサミク 192.168.0.0 - 192.168.255.255.

    +
  • +
  • ムミソミクムミセミコ IP-ミーミエムミオムミセミイ

    +

    ミ。ミクミスムムミセミスミクミキミームミクム ミシミセミカミスミセ ミスミームミームび ムひセミサム糊コミセ ミイ ムひセミシ ムミサムτミーミオ, ミオムミサミク IP-ミーミエムミオム WiFi ムミセミイミソミーミエミーミオム ム ミセミエミスミクミシ ミクミキ ムσコミーミキミーミスミスム錦 ミーミエムミオムミセミイ. ミ柘 ムひーミコミカミオ ミシミセミカミオムひオ ミスミーミソムム紹シムτ ミエミセミアミーミイミクムび ムひオミコムτ禍クミケ IP-ミーミエムミオム, ミコ ミコミセムひセムミセミシム ミソミセミエミコミサム紗ミオミスミセ ミイミーム威オ ムτムびミセミケムムひイミセ ムミオムミオミキ ムミソミクムミセミコ ミイム巾アミセムミー IP-ミーミエムミオムミセミイ.
    ミ頒サム ムミクミサム袴びミー ミシミセミカミスミセ ミクムミソミセミサム糊キミセミイミームび ミソミセミエムムひーミスミセミイミセムミスム巾オ ミキミスミーミコミク. (ミスミーミソムミクミシミオム, 192.168.100.*, 192.168.*)

    +
  • + +
+

ミ。ムτ禍オムムひイムσオム ミスミオムミコミセミサム糊コミセ ムミソミセムミセミアミセミイ ムミクミスムムミセミスミクミキミームミクミク ミソムミク ミソミセミエミコミサム紗ミオミスミクミク ミコ ミセミソムミオミエミオミサミオミスミスミセミシム WiFi. ミ渙セミエムミセミアミスミセムムひク ムミシ. ミイ ムミーミキミエミオミサミオ FAQ.

+
    +
  1. ミ侑キミシミオミスミクムひオ IP-ミーミエムミオム ミスミー ムムひセ-ムひセ ミコムミセミシミオ 192.168.0.0/24 ミスミー ミイミーム威オミシ WiFi-ミシミームム尉ムτひクミキミームひセムミオ ミク ミエミセミアミーミイム袴ひオ ミオミウミセ ミイ ムミソミクムミセミコ IP-ミーミエムミオムミセミイ
  2. +
  3. ミ、ミクミコムミームミクム IP-ミーミエムミオムミー ミスミー ムムひセムミセミスミオ Android ミク ミオミウミセ ムミオミウミクムムびミームミクム ミイ ムミソミクムミコミオ IP-ミーミエムミオムミセミイ
  4. + +
+

ミ湲ミセミソムτムひクムひオ ミキミーミエミームム, ミオムミサミク IP-ミーミエムミオム WLAN ミスミオ ムミセミイミソミーミエミーミオム ム ムσコミーミキミーミスミスム巾シ IP-ミーミエムミオムミセミシ.

+

ミ。ミクミスムムミセミスミクミキミームミクム ミソムミセミソムτムひクム ミキミーミエミームム, ミオムミサミク ミセミスミー ミスミオ ムミセミセムひイミオムびムひイムσオム ミキミーミエミーミスミスム巾シ ミコムミクムひオムミクム紹シ.

+

ミミーミキムミオム威クムび ムミクミスムムミセミスミクミキミームミクム ムミセ ミイムミオミシミク IP-ミーミエムミオムミーミシミク (ミイミコミサム紗ミーム ミソムσアミサミクムミスム巾オ)

+

ミ。ミクミスムムミセミスミクミキミームミクム ミアムσエミオム ムミーミキムミオム威オミスミー ミイムム紹コミクミケ ムミーミキ, ミコミセミウミエミー Wifi ミソミセミエミコミサム紗ミオミス ミコ ミサム社アミセミケ ムミオムひク, ミエミーミカミオ ミスミー ミソムσアミサミクムミスム錦 IP-ミエミクミーミソミーミキミセミスミーム (ミコミーミコ ミイ ミソムσアミサミクムミスミセミシ Wifi).

+

ミ渙セミコミーミキミームび ミアミセミサム袴威オ ミイミームミクミーミスムひセミイ

+

ミ。ミサミオミエムτ紗禍クミオ ミセミソムミクミク ミエミセミサミカミスム ミクムミソミセミサム糊キミセミイミームび袴ム ムひセミサム糊コミセ ミエミサム ムミームム威クムミオミスミスム錦 ミスミームムびミセミオミコ. +ミ湲ミセミソムτムひクムひオ ミキミーミエミームム, ミオムミサミク IP-ミーミエムミオム WLAN ミスミオ ムミセミイミソミーミエミーミオム ム ムσコミーミキミーミスミスム巾シ IP-ミーミエムミオムミセミシ.

+

ミ渙セミエミコミームひーミサミセミウミク ミセミアムミーミアミセムひコミク

+

ミ湲ミク ムτムひーミスミセミイミコミオ ムミサミーミカミコミー ミソミセミエミコミームひーミサミセミウ, ミイム巾アムミーミスミスム巾ケ ムミクミサム袴びミセミシ ムミクミスムムミセミスミクミキミームミクミク, ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミーミス. ミ篇ミサミク ム采ひセ ミスミオ ミアムσエミオム ミソムミセミイミオムミオミスミセ, ミソミセミエミコミームひーミサミセミウミク ミスミオ ミアムσエムτ ムミクミスムムミセミスミクミキミクムミセミイミーミスム.

+

+

ミ榧アムミーム禍ームび袴ム ム ミソムτムび巾シ ミコミームひーミサミセミウミセミシ

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミーミスミー ミソムτムひーム ミエミクムミオミコムひセムミクム. (ミ。ミセミキミエミーミオム ミソムτムびτ ミエミクムミオミコムひセムミクム ミスミー ムミオミサミク.)

+

+

ミ榧アムミーミアミセムひコミー ムミコムム錦び錦 ミエミクムミオミコムひセムミクミケ

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムミコムム錦び巾ケ ミコミームひーミサミセミウ ミアムσエミオム ムミクミスムムミセミスミクミキミクムミセミイミーミス. (ミ斷ー Android ミクミシム ムミコムム錦ひセミウミセ ミコミームひーミサミセミウミー - ". (ミ頒クムミオミコムひセムミクム, ムミセミキミエミーミスミスミーム ミソムミク ムミクミスムムミセミスミクミキミームミクミク, ミスミオ ム紹イミサム紹オムびム ムミコムム錦ひセミケ ミエミクムミオミコムひセムミクミオミケ, ミソミセムミコミセミサム糊コム ミセミスミー ミソムミオミエムムひーミイミサミオミスミー ミアミクムひーミシミク ミエミクムミオミコムひセムミクミク, ミー ミスミオ ミクミシミオミスミオミシ ミエミクムミオミコムひセムミクミク ミイ Windows ミク Samba.

+

+

ミ榧アムミーミアミセムひコミー ムミコムム錦び錦 ムミーミケミサミセミイ

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムミコムム錦び巾オ ムミーミケミサム ミアムσエムτ ムミクミスムムミセミスミクミキミクムミセミイミーミスム. (ミ斷ー Android ミクミシム ムミコムム錦ひセミウミセ ムミーミケミサミー "...". (ミ、ミーミケミサ, ムミセミキミエミーミスミスム巾ケ ミソムミク ムミクミスムムミセミスミクミキミームミクミク, ミスミオ ム紹イミサム紹オムびム ムミコムム錦び巾シ ムミーミケミサミセミシ, ムひーミコ ミコミーミコ ミイ Windows ミク Samba ミセミス ミソムミオミエムムひーミイミサミオミス ミアミクムひーミシミク ミイ ミコミームひーミサミセミウミオ, ミー ミスミオ ミクミシミオミスミオミシ ムミーミケミサミー.

+

+

ミ漬セムムムひーミスミセミイミサミオミスミクミオ, ミオムミサミク ミイミセ ミイムミオミシム ムミクミスムムミセミスミクミキミームミクミク ミイミセミキミスミクミコミーミオム ムミオムひオミイミーム ミセム威クミアミコミー.

+

ミ渙セミイムひセムミスミーム ムミクミスムムミセミスミクミキミームミクム ムひセミサム糊コミセ ミイ ムミサムτミーミオ ミセム威クミアミコミク ミスミー ムσエミーミサミオミスミスミセミケ ムムひセムミセミスミオ. ミ墟ーミカミエミーム ミソミセミイムひセムミスミーム ミソミセミソム錦ひコミー ミエミセミサミカミスミー ミアム錦び ムミエミオミサミーミスミー ムミオムミオミキ 30 ムミオミコムσスミエ ミソミセムミサミオ ミイミセミキミスミクミコミスミセミイミオミスミクム ミセム威クミアミコミク.

+

+

ミ佯ミソミセミサム糊キムσケムひオ ムミクミサム袴びム ミイム巾アミセムミー/ミクムミコミサム紗ミオミスミクム ムミームム威クムミオミスミスミセミケ ミエミクムミオミコムひセムミクミク

+

ミ篇ミサミク ミソムミク ミクムミコミサム紗ミオミスミクミク ミイミオムムミスミオミウミセ ミコミームひーミサミセミウミー ミイム巾アムミーミスミー ミスミクミカミスム肖 ミエミクムミオミコムひセムミクム, ムひセ ミスミクミカミスム肖 ミアムσエミオム ミスミームムびミセミオミスミー ミスミー ムミクミスムムミセミスミクミキミームミクム.

+

ミ佯ミソミセミサム糊キミセミイミームび ミスミセミイムτ ミイミオムムミクム ムミクミサム袴びミー 2

+

ミ渙セムミサミオ ミイミコミサム紗ミオミスミクム ミシミセミカミスミセ ミクムミソミセミサム糊キミセミイミームび ミスミセミイム巾ケ ムミクミサム袴び. ミ榧ス ミシミセミカミオム ミイミオムムひク ムミオミアム ミクミスミームミオ, ムミオミシ ムムひームム巾ケ ムミクミサム袴び, ミソミセム采ひセミシム, ミソミセミカミーミサムσケムムひー, ムび禍ームひオミサム糊スミセ ミソムミセミイミオムム袴ひオ ミオミウミセ ミソミオムミオミエ ミクムミソミセミサム糊キミセミイミーミスミクミオミシ.

+

ミ湲ミク ミキミオムミコミーミサム糊スミセミシ ミセムひセミアムミーミカミオミスミクミク ムミスミームミーミサミー ムσエミーミサミクムひオ.

+

ミ湲ミク ミソムミセミイミオムミコミオ ムミスミームミーミサミー ムσエミーミサム肖紗びム ミコミームひーミサミセミウミク ミク ムミーミケミサム, ミコミセムひセムム巾オ ミスミオ ムムτ禍オムムひイムτ紗 ミイ ミセムミスミセミイミスミセミケ ミソミーミソミコミオ, ミー ミキミームひオミシ ミコミセミソミクムムτ紗びム ムミーミケミサム, ミセムひサミクムミーム紗禍クミオムム ミソミセ ムミーミキミシミオムム ミクミサミク ミイムミオミシミオミスミク ミソミセムミサミオミエミスミオミウミセ ミクミキミシミオミスミオミスミクム, ミクミキ ミセムミスミセミイミスミセミケ ミソミーミソミコミク.

+

ミ篇ミサミク ミセムミスミセミイミスミセミケ ミソミーミソミコミセミケ ム紹イミサム紹オムびム SMB, ムひセ ムミコミーミスミクムミセミイミーミスミクミオ ムミーミケミサミセミイ ミソミセ ムミオムひク ミキミーミスミクミシミーミオム ミシミスミセミウミセ ミイムミオミシミオミスミク. ミ渙セ ミイミセミキミシミセミカミスミセムムひク ミクムミソミセミサム糊キムσケムひオ ミソムミセムひセミコミセミサ SMB "SMB2".

+

+

ミ斷オ ムミクミスムムミセミスミクミキミクムムσケムひオ ミイムミオミシム ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ムミオミサミオミイミセミウミセ ムミーミケミサミー ム ミイミオミエムτ禍クミシ.

+

ミ漬コミサム紗ミクムひオ ミオミウミセ, ミオムミサミク SmbFile#setLastModified() ミクミサミク File#setLastModified() ミイム巾ケミエミオム ミクミキ ムムびミセム. ミ「ミーミコミクミシ ミセミアムミーミキミセミシ, ムミーミキミスミクムミー ミシミオミカミエム ムミーミケミサミセミシ ミク ムミーミケミサミセミシ ミセミソムミオミエミオミサム紹オムびム ムムτ禍オムムひイミセミイミーミスミクミオミシ ムミーミケミサミー ミク ミオミウミセ ムミーミキミシミオムミセミシ.

+

+

ミ厘ームムひーミイミクムび SMBSSync2 ミソミセミサムτミクムび ミソミセムミサミオミエミスム紗 ミクミキミシミオミスミオミスミスムτ ミエミームび ミク ミイムミオミシム.

+

ミ渙セミソムミセミアムσケムひオ ミコミーミカミエム巾ケ ムミーミキ ミコミセミソミクムミセミイミームび ミイムミオ ムミーミケミサム: ムミセムムミーミスム紹ケムひオ ミソミセムミサミオミエミスム紗 ミクミキミシミオミスミオミスミスムτ ミエミームび ミク ミイムミオミシム ミサミセミコミーミサム糊スミセミウミセ ムミーミケミサミー ミソミセ-ムミイミセミオミシム SMBSync2, ミアミオミキ ミクムミソミセミサム糊キミセミイミーミスミクム Java File#setLastModified().

+

+

ミ榧ウムミーミスミクムミクムび ミアムτミオム IO ミエミセ 16KB ミソムミク ミキミーミソミクムミク SMB ミソミーミソミセミコ.

+

ミ篇ミサミク ミソムミク ミキミーミソミクムミク ミイ ミソミーミソミコム PC/NAS ミ柘 ミソミセミサムτミクミサミク ミセム威クミアミコム "ミ頒セムムびσソ ミキミーミソムミオム禍オミス", ミソミセミカミーミサムσケムムひー, ミソミセミソムミセミアムσケムひオ. ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムひセ ミセミスミー ミセミウムミーミスミクムミクミイミーミオム IO ミアムτミオム ミエミサム ムσエミーミサミオミスミスミセミケ ミキミーミソミクムミク ムミーミケミサミセミイ ミエミセ 16 ミ墟. ミ「ミオミシ ミスミオ ミシミオミスミオミオ, ミソムミセミクミキミイミセミエミクムひオミサム糊スミセムムび ミアムσエミオム ムτムσエム威ームび袴ム.

+

+

ミ佯ミソミセミサム糊キムσケムひオ ムミーミキミシミオム ムミーミケミサミー ミエミサム ミセミソムミオミエミオミサミオミスミクム ムミーミキミスミクムム

+

ミ篇ミサミク ムミーミキミシミオム ムミーミケミサミー ミセムひサミクムミーミオムびム, ムひセ ミソムミク ミソムミセミイミオムミコミオ ミセミス ミアムσエミオム ムムミクムひームび袴ム ムミーミキミスム巾シ.

+

+

ミ「ミセミサム糊コミセ ミコミセミウミエミー ムミーミキミシミオム ムミーミケミサミー ミイミオミエムτ禍オミウミセ ミイミオミサミクミコ, ミセミス ミセムミオミスミクミイミーミオムびム ミコミーミコ ムミーミケミサ ムミーミキミスミクムム.

+

ミ篇ミサミク ム采ひー ミセミソムミクム ムτムひーミスミセミイミサミオミスミー, ムひセ ムミクミスムムミセミスミクミキミームミクム ミアムσエミオム ミセムムτ禍オムムひイミサム肖び袴ム ムひセミサム糊コミセ ミソムミク ミアミセミサム袴威セミシ ムミーミキミシミオムミオ ミウミサミーミイミスミセミウミセ ムミーミケミサミー.

+

+

ミ佯ミソミセミサム糊キミセミイミームび ミエミサム ミセミソムミオミエミオミサミオミスミクム ムミーミキミスミクムム ミソミセムミサミオミエミスミオミオ ミクミキミシミオミスミオミスミスミセミオ ミイムミオミシム ムミーミケミサミー

+

ミ篇ミサミク ミイムミオミシム ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ムミーミケミサミー ミセムひサミクムミーミオムびム, ムひセ ミソムミク ミソムミセミイミオムミコミオ ミセミスミセ ミセムミオミスミクミイミーミオムびム ミコミーミコ ムミーミキミスミクムミー.

+

+

ミミーミキミスミクムミー ミイ ムミーミキムミオム尉岱スミスミセミシ ミイムミオミシミオミスミク ミソミセムミサミオミエミスミオミウミセ ミセミアミスミセミイミサミオミスミクム ミイ ムムσカミエミオミスミクミク ミセ ムミーミケミサミオ ムミーミキミスミクムム

+

ミ柘巾アミオムミクムひオ ミシミオミカミエム 1 ムミオミコムσスミエミセミケ, 3 ムミオミコムσスミエミーミシミク ミク 10 ムミオミコムσスミエミーミシミク. ミ篇ミサミク ムミーミキミスミクムミー ミイ ミソミセムミサミオミエミスミオミシ ミクミキミシミオミスミオミスミスミセミシ ミイムミオミシミオミスミク ムミーミケミサミー ミスミームミセミエミクムびム ミイ ミソムミオミエミオミサミーム ミイム巾アムミーミスミスミセミケ ムミーミキミスミクムム ミイミセ ミイムミオミシミオミスミク, ムひセ ミソムミオミエミソミセミサミーミウミーミオムびム, ムムひセ ミセミスミー ミスミオ ミシミオミスム紹オムびム.

+

+

ミ斷オ ミソミオムミオミキミーミソミクムム巾イミーミケムひオ ムミオミサミオミイミセミケ ムミーミケミサ, ミオムミサミク ミセミス ミスミセミイム巾ケ, ムミオミシ ミセムミスミセミイミスミセミケ.

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ミセミス ミソミオムミオミキミーミソミクムム巾イミーミオム ムミーミケミサ ムひセミサム糊コミセ ミイ ムひセミシ ムミサムτミーミオ, ミオムミサミク ミウミサミーミイミスム巾ケ ムミーミケミサ ミスミセミイミオミオ ムミオミサミオミイミセミウミセ, ミエミーミカミオ ミオムミサミク ムミーミキミシミオム ムミーミケミサミー ミク ミイムミオミシム ミソミセムミサミオミエミスミオミウミセ ミクミキミシミオミスミオミスミクム ミセムひサミクムミーム紗びム.

+

+

ミ湲ミセミソムτムひクムび ミセミアムミーミアミセムひコム ミコミームひーミサミセミウミセミイ ミクミサミク ムミーミケミサミセミイ, ムミセミエミオムミカミーム禍クム ミスミオミエミセムムびσソミスム巾オ ムミクミシミイミセミサム ミイ ミクミシミオミスミク ミコミームひーミサミセミウミー ミクミサミク ムミーミケミサミー. (", :,\fnDroid, *, <, >, |)

+

ミ篇ミサミク ム采ひセム ムミサミーミカミセミコ ムτムひーミスミセミイミサミオミス, ムひセ ミイミシミオムムひセ ミセミアムミーミアミセムひコミク ミエミクムミオミコムひセムミクミク/ムミーミケミサミー, ムミセミエミオムミカミーム禍オミウミセ ミスミオミエミセムムびσソミスム巾オ ムミクミシミイミセミサム, ミアムσエミオム ミセムひセミアムミーミカミームび袴ム ミソムミオミエムσソムミオミカミエミーム紗禍オミオ ムミセミセミアム禍オミスミクミオ ミク ミセミアムミーミアミームび巾イミームび袴ム ムミサミオミエムτ紗禍クミケ ミコミームひーミサミセミウ/ムミーミケミサ.

+

+

ミ渙セミカミーミサムσケムムひー, ムミシミセムびミクムひオ ミスミクミカミオ ミエミサム ミソミセミサムτミオミスミクム ミエミセミソミセミサミスミクムひオミサム糊スミセミケ ミクミスムミセムミシミームミクミク.

+

https://drive.google.com/file/d/0B77t0XpnNT7OYzZ0U01rR0VRMlk/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.htm b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.htm deleted file mode 100644 index 8ffb7b20..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.htm +++ /dev/null @@ -1,901 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -

- -

选择用于内部存的挂点。

- -

 

- -

*         -

- -

列表按钮选择要打开的目,然后点单选 单选钮进选择

- -

 

- -

*         -

- -

入目或主目 如果您指定的目不存在,将在同步程中

- -

 

- -

*         -将同步时间/日期追加到目名称(关字将由行同步的日期和时间

- -

您可以在目中使用%YEAR%%MONTH%%DAY%%DAY-OF-YEAR% 字在同步开始时转换为日期。

- -

 

- -

只有当同步复制或移动时,才会示此选项

- -

*         -将照片/视频的拍摄时间/日期追加到目名称(关字将被替换为照片/视频的拍日期和时间

- -

如果你不能从Exif取日期和时间使用文件的最后修改时间代替。

- -

 

- -

以下选项仅在同步 "存档 "才会示。

- -

*         -如果日期和时间无法通EXIF数据确定,请显示确消息。

- -

如果勾,如果不能从Exif得日期和时间会提示用是否使用文件的最后修改时间 如果将确信息 -"取消"不会文件行存档。

- -

 

- -

*         -在以下情况下档文件

- -

选择您要存档的照片的准。

- -

*        -任何日期(全部)

- -

所有照片存档

- -

*        -大于7

- -

采集日期比当前时间7天以上。

- -

*        -30

- -

采集日期比当前时间30天以上。

- -

*        -60

- -

采集日期比当前时间60天以上。

- -

*        -90

- -

采集日期比当前时间90天以上。

- -

*        -180

- -

采集日期比当前时间180天以上。

- -

*        -1年以上

- -

采集的日期比在的时间早了一年多。

- -

 

- -

*         -在将文件档到目文件之前,先更改文件名。

- -

如果勾将重命名文件。 可以在 "文件名模板 "中用日期和时间来命名文件。 你也可以建一个目来存文件。 如果想把文件放在目中,启用 "保存到目"

- -

 

- -

*         -追加来揄チ文件名

- -

在文件名中添加订单号。

- -

*        -不要

- -

不要添加序列号

- -

*        -2位数字序列(01-99

- -

01-99

- -

*        -3位数字序列(001-999

- -

001-999

- -

*        -4位数字序列(0001-9999

- -

0001-9999

- -

*        -5位数字序列(00001-99999

- -

00001-99999

- -

*        -6位数字序列(000001-999999

- -

000001-999999

- -

 

- -

*         -文件名模板

- -

*        -名称

- -

在模板中入原始文件名。

- -

*        -日期(YYYY-MM-DD

- -

在模板中入日期(如2018-04-16)。

- -

*        -日期(YYYYMMDD

- -

在模板中入日期(如20180416)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如12-00-30)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如120030)。

- -

*        -文件名模板

- -

入要重命名的文件模板。 认值为DSC_%DATE% 按下按可以在光入关键词

- -

最后一行示了要保存的实际和文件名。

- -

 

- -

*         -根据拍日期建目以存文件。

- -

可以建和存一个目 如果勾会出 -"名称模板"

- -

 

- -

*         -名称模板。

- -

入要建的目,如DIR-%YEAR%-%MONTH% 按下按可以在光入关键词

- -

*        -

- -

在模板中入年份(如2018年)。

- -

*        -

- -

在模板中入年月日(如04)。

- -

*        -

- -

在模板中入日期(如16)。

- -

*        -名称模板。

- -

认值为%YEAR% 认值为%YEAR%

- -

最后一行示文件存放的实际和文件名。

- -

 

- -

 

- -

更多信息,看下文。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.html b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.html new file mode 100644 index 00000000..3645827b --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_internal.html @@ -0,0 +1,130 @@ + + + + +SMBSync2_Help_ZH_folder_internal +

謖りスス轤ケ

+

騾画叫逕ィ莠主驛ィ蟄伜お逧謖りスス轤ケ縲

+

+

逶ョ蠖墓ク蜊

+

轤ケ蜃サ蛻苓。ィ謖蛾聴騾画叫隕∵遠蠑逧逶ョ蠖包シ檎┯蜷守せ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ縲 轤ケ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ霑幄。碁画叫縲

+

+

逶ョ蠖

+

霎灘・逶ョ譬謌紋クサ逶ョ蠖輔 螯よ棡謔ィ謖螳夂噪逶ョ蠖穂ク榊ュ伜惠シ悟ー蝨ィ蜷梧ュ・霑遞倶クュ蛻帛サコ隸・逶ョ蠖輔

+

+

蟆蜷梧ュ・譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー逕ア謇ァ陦悟酔豁・逧譌・譛溷柱譌カ髣エ譖ソ謐「シ

+

謔ィ蜿ッ莉・蝨ィ逶ョ譬逶ョ蠖穂クュ菴ソ逕ィ%YEAR%縲%MONTH%縲%DAY%蜥%DAY-OF-YEAR%縲 蜈ウ髞ョ蟄怜惠蜷梧ュ・蠑蟋区慮霓ャ謐「荳コ譌・譛溘

+

+

蜿ェ譛牙ス灘酔豁・邀サ蝙倶クコ螟榊宛謌也ァサ蜉ィ譌カシ梧燕莨壽仞遉コ豁、騾蛾。ケ縲

+

蟆辣ァ迚/隗鬚醍噪諡肴槍譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー陲ォ譖ソ謐「荳コ辣ァ迚/隗鬚醍噪諡肴槍譌・譛溷柱譌カ髣エシ

+

螯よ棡菴荳崎ス莉殺xif荳ュ闔キ蜿匁律譛溷柱譌カ髣エシ瑚ッキ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ莉」譖ソ縲

+

+

莉・荳矩蛾。ケ莉蝨ィ蜷梧ュ・邀サ蝙倶クコ"蟄俶。」"譌カ謇堺シ壽仞遉コ縲

+

螯よ棡譌・譛溷柱譌カ髣エ譌豕暮夊ソEXIF謨ー謐ョ遑ョ螳夲シ瑚ッキ譏セ遉コ遑ョ隶、豸域ッ縲

+

螯よ棡蜍セ騾会シ悟ヲよ棡荳崎ス莉殺xif荳ュ闔キ蠕玲律譛溷柱譌カ髣エシ悟吩シ壽署遉コ逕ィ謌キ遑ョ隶、譏ッ蜷ヲ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ縲 螯よ棡蟆遑ョ隶、菫。諱ッ隶セ鄂ョ荳コ "蜿匁カ"シ悟吩ク堺シ壼ッケ譁莉カ霑幄。悟ュ俶。」縲

+

+

蝨ィ莉・荳区ュ蜀オ荳句ス呈。」譁莉カ

+

騾画叫謔ィ隕∝ュ俶。」逧辣ァ迚逧譬蜃縲

+
    +
  • 莉サ菴墓律譛滂シ亥ィ驛ィシ

    +

    謇譛臥ァ迚蟄俶。」

    +
  • +
  • 螟ァ莠7螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ7螟ゥ莉・荳翫

    +
  • +
  • 雜霑30螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ30螟ゥ莉・荳翫

    +
  • +
  • 雜霑60螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ60螟ゥ莉・荳翫

    +
  • +
  • 雜霑90螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ90螟ゥ莉・荳翫

    +
  • +
  • 雜霑180螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ180螟ゥ莉・荳翫

    +
  • +
  • 1蟷エ莉・荳

    +

    驥髮逧譌・譛滓ッ皮鴫蝨ィ逧譌カ髣エ譌ゥ莠荳蟷エ螟壹

    +
  • + +
+

+

蝨ィ蟆譁莉カ蠖呈。」蛻ー逶ョ譬譁莉カ螟ケ荵句燕シ瑚ッキ蜈域峩謾ケ譁莉カ蜷阪

+

螯よ棡蜍セ騾会シ悟ス呈。」譌カ蟆驥榊多蜷肴枚莉カ縲 蜿ッ莉・蝨ィ "譁莉カ蜷肴ィ。譚ソ "荳ュ逕ィ譌・譛溷柱譌カ髣エ譚・蜻ス蜷肴枚莉カ縲 菴荵溷庄莉・蛻帛サコ荳荳ェ逶ョ蠖墓擂蟄伜お譁莉カ縲 螯よ棡諠ウ謚頑枚莉カ謾セ蝨ィ逶ョ蠖穂クュシ瑚ッキ蜷ッ逕ィ "蠖呈。」譌カ菫晏ュ伜芦逶ョ蠖"縲

+

+

騾夊ソ霑ス蜉譚・蠅槫刈譁莉カ蜷

+

蠖呈。」譌カ蝨ィ譁莉カ蜷堺クュ豺サ蜉隶「蜊募捷縲

+
    +
  • 荳崎ヲ∵困

    +

    荳崎ヲ∵キサ蜉蠎丞怜捷

    +
  • +
  • 2菴肴焚蟄怜コ丞暦シ01-99シ

    +

    蜉01-99

    +
  • +
  • 3菴肴焚蟄怜コ丞暦シ001-999シ

    +

    蜉001-999

    +
  • +
  • 4菴肴焚蟄怜コ丞暦シ0001-9999シ

    +

    蜉0001-9999

    +
  • +
  • 5菴肴焚蟄怜コ丞暦シ00001-99999シ

    +

    蜉00001-99999

    +
  • +
  • 6菴肴焚蟄怜コ丞暦シ000001-999999シ

    +

    蜉000001-999999

    +
  • + +
+

+

譁莉カ蜷肴ィ。譚ソ

+
    +
  • 蜷咲ァー

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蜴溷ァ区枚莉カ蜷阪

    +
  • +
  • 譌・譛滂シYYYY-MM-DDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ2018-04-16シ峨

    +
  • +
  • 譌・譛滂シYYYYMMDDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ20180416シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ12-00-30シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ120030シ峨

    +
  • +
  • 譁莉カ蜷肴ィ。譚ソ

    +

    霎灘・隕驥榊多蜷咲噪譁莉カ讓。譚ソ縲 鮟倩ョ、蛟シ荳コDSC_%DATE%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ莠隕∽ソ晏ュ倡噪螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

譬ケ謐ョ諡肴槍譌・譛溷帛サコ逶ョ蠖穂サ・蟄伜お譁莉カ縲

+

蠖呈。」譌カ蜿ッ莉・蛻帛サコ蜥悟ュ伜お荳荳ェ逶ョ蠖輔 螯よ棡蜍セ騾会シ悟吩シ壼コ邇ー "逶ョ蠖募錐遘ー讓。譚ソ"縲

+

+

逶ョ蠖募錐遘ー讓。譚ソ縲

+

霎灘・隕∝帛サコ逧逶ョ蠖包シ悟ヲDIR-%YEAR%-%MONTH%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

+
    +
  • 蟷エ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ莉スシ亥ヲ2018蟷エシ峨

    +
  • +
  • +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ譛域律シ亥ヲ04シ峨

    +
  • +
  • 譌・

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ16シ峨

    +
  • +
  • 逶ョ蠖募錐遘ー讓。譚ソ縲

    +

    鮟倩ョ、蛟シ荳コ%YEAR%縲 鮟倩ョ、蛟シ荳コ%YEAR%縲

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ譁莉カ蟄俶叛逧螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

譖エ螟壻ソ。諱ッシ瑚ッキ逵倶ク区枚縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.htm b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.htm deleted file mode 100644 index 75159dbe..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.htm +++ /dev/null @@ -1,907 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -

- -

列表按钮选择要打开的目,然后点单选 单选钮进选择

- -

 

- -

*         -将同步时间/日期追加到目名称(关字将由行同步的日期和时间

- -

您可以在目中使用%YEAR%%MONTH%%DAY%%DAY-OF-YEAR% 字在同步开始时转换为日期。

- -

 

- -

只有当同步复制或移动时,才会示此选项

- -

*         -将照片/视频的拍摄时间/日期追加到目名称(关字将被替换为照片/视频的拍日期和时间

- -

如果你不能从Exif取日期和时间使用文件的最后修改时间代替。

- -

 

- -

*         -

- -

入目或主目 如果您指定的目不存在,将在同步程中

- -

 

- -

*         -写入SDCARD

- -

你必须选择SDCARD的根目才能访问SDCARD

- -

 

- -

以下选项仅在同步 "存档 "才会示。

- -

*         -如果日期和时间无法通EXIF数据确定,请显示确消息。

- -

如果勾,如果不能从Exif得日期和时间会提示用是否使用文件的最后修改时间 如果将确信息 -"取消"不会文件行存档。

- -

 

- -

*         -在以下情况下档文件

- -

选择您要存档的照片的准。

- -

*        -任何日期(全部)

- -

所有照片存档

- -

*        -大于7

- -

采集日期比当前时间7天以上。

- -

*        -30

- -

采集日期比当前时间30天以上。

- -

*        -60

- -

采集日期比当前时间60天以上。

- -

*        -90

- -

采集日期比当前时间90天以上。

- -

*        -180

- -

采集日期比当前时间180天以上。

- -

*        -1年以上

- -

采集的日期比在的时间早了一年多。

- -

 

- -

*         -在将文件档到目文件之前,先更改文件名。

- -

如果勾将重命名文件。 可以在 "文件名模板 "中用日期和时间来命名文件。 你也可以建一个目来存文件。 如果想把文件放在目中,启用 "保存到目"

- -

 

- -

*         -追加来揄チ文件名

- -

在文件名中添加订单号。

- -

*        -不要

- -

不要添加序列号

- -

*        -2位数字序列(01-99

- -

01-99

- -

*        -3位数字序列(001-999

- -

001-999

- -

*        -4位数字序列(0001-9999

- -

0001-9999

- -

*        -5位数字序列(00001-99999

- -

00001-99999

- -

*        -6位数字序列(000001-999999

- -

000001-999999

- -

 

- -

*         -文件名模板

- -

*        -名称

- -

在模板中入原始文件名。

- -

*        -日期(YYYY-MM-DD

- -

在模板中入日期(如2018-04-16)。

- -

*        -日期(YYYYMMDD

- -

在模板中入日期(如20180416)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如12-00-30)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如120030)。

- -

*        -文件名模板

- -

入要重命名的文件模板。 认值为DSC_%DATE% 按下按可以在光入关键词

- -

最后一行示了要保存的实际和文件名。

- -

 

- -

*         -根据拍日期建目以存文件。

- -

可以建和存一个目 如果勾会出 -"名称模板"

- -

 

- -

*         -名称模板。

- -

入要建的目,如DIR-%YEAR%-%MONTH% 按下按可以在光入关键词

- -

*        -

- -

在模板中入年份(如2018年)。

- -

*        -

- -

在模板中入年月日(如04)。

- -

*        -

- -

在模板中入日期(如16)。

- -

*        -名称模板。

- -

认值为%YEAR% 认值为%YEAR%

- -

最后一行示文件存放的实际和文件名。

- -

 

- -

 

- -

更多信息,看下文。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.html b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.html new file mode 100644 index 00000000..30f9cfad --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_sdcard.html @@ -0,0 +1,131 @@ + + + + +SMBSync2_Help_ZH_folder_sdcard +

逶ョ蠖墓ク蜊

+

轤ケ蜃サ蛻苓。ィ謖蛾聴騾画叫隕∵遠蠑逧逶ョ蠖包シ檎┯蜷守せ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ縲 轤ケ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ霑幄。碁画叫縲

+

+

蟆蜷梧ュ・譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー逕ア謇ァ陦悟酔豁・逧譌・譛溷柱譌カ髣エ譖ソ謐「シ

+

謔ィ蜿ッ莉・蝨ィ逶ョ譬逶ョ蠖穂クュ菴ソ逕ィ%YEAR%縲%MONTH%縲%DAY%蜥%DAY-OF-YEAR%縲 蜈ウ髞ョ蟄怜惠蜷梧ュ・蠑蟋区慮霓ャ謐「荳コ譌・譛溘

+

+

蜿ェ譛牙ス灘酔豁・邀サ蝙倶クコ螟榊宛謌也ァサ蜉ィ譌カシ梧燕莨壽仞遉コ豁、騾蛾。ケ縲

+

蟆辣ァ迚/隗鬚醍噪諡肴槍譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー陲ォ譖ソ謐「荳コ辣ァ迚/隗鬚醍噪諡肴槍譌・譛溷柱譌カ髣エシ

+

螯よ棡菴荳崎ス莉殺xif荳ュ闔キ蜿匁律譛溷柱譌カ髣エシ瑚ッキ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ莉」譖ソ縲

+

+

逶ョ蠖

+

霎灘・逶ョ譬謌紋クサ逶ョ蠖輔 螯よ棡謔ィ謖螳夂噪逶ョ蠖穂ク榊ュ伜惠シ悟ー蝨ィ蜷梧ュ・霑遞倶クュ蛻帛サコ隸・逶ョ蠖輔

+

+

蜈∬ョク蜀吝・SDCARD

+

菴蠢鬘サ騾画叫SDCARD逧譬ケ逶ョ蠖墓燕閭ス隶ソ髣ョSDCARD縲

+

莉・荳矩蛾。ケ莉蝨ィ蜷梧ュ・邀サ蝙倶クコ "蟄俶。」 "譌カ謇堺シ壽仞遉コ縲

+

螯よ棡譌・譛溷柱譌カ髣エ譌豕暮夊ソEXIF謨ー謐ョ遑ョ螳夲シ瑚ッキ譏セ遉コ遑ョ隶、豸域ッ縲

+

螯よ棡蜍セ騾会シ悟ヲよ棡荳崎ス莉殺xif荳ュ闔キ蠕玲律譛溷柱譌カ髣エシ悟吩シ壽署遉コ逕ィ謌キ遑ョ隶、譏ッ蜷ヲ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ縲 螯よ棡蟆遑ョ隶、菫。諱ッ隶セ鄂ョ荳コ "蜿匁カ"シ悟吩ク堺シ壼ッケ譁莉カ霑幄。悟ュ俶。」縲

+

+

蝨ィ莉・荳区ュ蜀オ荳句ス呈。」譁莉カ

+

騾画叫謔ィ隕∝ュ俶。」逧辣ァ迚逧譬蜃縲

+
    +
  • 莉サ菴墓律譛滂シ亥ィ驛ィシ

    +

    謇譛臥ァ迚蟄俶。」

    +
  • +
  • 螟ァ莠7螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ7螟ゥ莉・荳翫

    +
  • +
  • 雜霑30螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ30螟ゥ莉・荳翫

    +
  • +
  • 雜霑60螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ60螟ゥ莉・荳翫

    +
  • +
  • 雜霑90螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ90螟ゥ莉・荳翫

    +
  • +
  • 雜霑180螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ180螟ゥ莉・荳翫

    +
  • +
  • 1蟷エ莉・荳

    +

    驥髮逧譌・譛滓ッ皮鴫蝨ィ逧譌カ髣エ譌ゥ莠荳蟷エ螟壹

    +
  • + +
+

+

蝨ィ蟆譁莉カ蠖呈。」蛻ー逶ョ譬譁莉カ螟ケ荵句燕シ瑚ッキ蜈域峩謾ケ譁莉カ蜷阪

+

螯よ棡蜍セ騾会シ悟ス呈。」譌カ蟆驥榊多蜷肴枚莉カ縲 蜿ッ莉・蝨ィ "譁莉カ蜷肴ィ。譚ソ "荳ュ逕ィ譌・譛溷柱譌カ髣エ譚・蜻ス蜷肴枚莉カ縲 菴荵溷庄莉・蛻帛サコ荳荳ェ逶ョ蠖墓擂蟄伜お譁莉カ縲 螯よ棡諠ウ謚頑枚莉カ謾セ蝨ィ逶ョ蠖穂クュシ瑚ッキ蜷ッ逕ィ "蠖呈。」譌カ菫晏ュ伜芦逶ョ蠖"縲

+

+

騾夊ソ霑ス蜉譚・蠅槫刈譁莉カ蜷

+

蠖呈。」譌カ蝨ィ譁莉カ蜷堺クュ豺サ蜉隶「蜊募捷縲

+
    +
  • 荳崎ヲ∵困

    +

    荳崎ヲ∵キサ蜉蠎丞怜捷

    +
  • +
  • 2菴肴焚蟄怜コ丞暦シ01-99シ

    +

    蜉01-99

    +
  • +
  • 3菴肴焚蟄怜コ丞暦シ001-999シ

    +

    蜉001-999

    +
  • +
  • 4菴肴焚蟄怜コ丞暦シ0001-9999シ

    +

    蜉0001-9999

    +
  • +
  • 5菴肴焚蟄怜コ丞暦シ00001-99999シ

    +

    蜉00001-99999

    +
  • +
  • 6菴肴焚蟄怜コ丞暦シ000001-999999シ

    +

    蜉000001-999999

    +
  • + +
+

+

譁莉カ蜷肴ィ。譚ソ

+
    +
  • 蜷咲ァー

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蜴溷ァ区枚莉カ蜷阪

    +
  • +
  • 譌・譛滂シYYYY-MM-DDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ2018-04-16シ峨

    +
  • +
  • 譌・譛滂シYYYYMMDDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ20180416シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ12-00-30シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ120030シ峨

    +
  • +
  • 譁莉カ蜷肴ィ。譚ソ

    +

    霎灘・隕驥榊多蜷咲噪譁莉カ讓。譚ソ縲 鮟倩ョ、蛟シ荳コDSC_%DATE%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ莠隕∽ソ晏ュ倡噪螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

譬ケ謐ョ諡肴槍譌・譛溷帛サコ逶ョ蠖穂サ・蟄伜お譁莉カ縲

+

蠖呈。」譌カ蜿ッ莉・蛻帛サコ蜥悟ュ伜お荳荳ェ逶ョ蠖輔 螯よ棡蜍セ騾会シ悟吩シ壼コ邇ー "逶ョ蠖募錐遘ー讓。譚ソ"縲

+

+

逶ョ蠖募錐遘ー讓。譚ソ縲

+

霎灘・隕∝帛サコ逧逶ョ蠖包シ悟ヲDIR-%YEAR%-%MONTH%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

+
    +
  • 蟷エ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ莉スシ亥ヲ2018蟷エシ峨

    +
  • +
  • +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ譛域律シ亥ヲ04シ峨

    +
  • +
  • 譌・

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ16シ峨

    +
  • +
  • 逶ョ蠖募錐遘ー讓。譚ソ縲

    +

    鮟倩ョ、蛟シ荳コ%YEAR%縲 鮟倩ョ、蛟シ荳コ%YEAR%縲

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ譁莉カ蟄俶叛逧螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

+

譖エ螟壻ソ。諱ッシ瑚ッキ逵倶ク区枚縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.htm deleted file mode 100644 index 75d28a75..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.htm +++ /dev/null @@ -1,1078 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -搜索SMB

- -

您可以描网SMB器的列表。

- -

 

- -

*         -器主机名/ IP地址

- -

用名称或IP地址指定SMB器的主机。 如果不能用名字登,就用IP地址指定。

- -

 

- -

*         -SMB协议

- -

指定要使用的SMB协议

- -

*      使用SMB V1

- -

*      使用SMB V22.01

- -

*      使用SMB V22.11

- -

*      使用SMB V2 / 32.12

- -

*      使用SMB V2 / 32.14

- -

 

- -

*         -指定端口号

- -

指定准端口号是否不可用。 准端口号445139

- -

 

- -

*         -使用帐户名和密

- -

您必指定一个账户或密

- -

 

- -

*         -

- -

指定PC/NAS置的号名称,不能使用微软账号,请创建本地号并指定。

- -

 

- -

*         -

- -

指定在PC/NAS置的密

- -

 

- -

*         -列出股份

- -

示可以选择的共享名称,然后点共享名称,按 "确定"

- -

 

- -

*         -共用名

- -

你可以用手入共享名称。

- -

 

- -

*         -

- -

列表按钮选择要打开的目,然后点单选 单选钮进选择

- -

 

- -

*         -

- -

你可以用手PC/NAS

- -

 

- -

*         -将同步时间/日期追加到目名称(关字将由行同步的日期和时间

- -

您可以在目中使用%YEAR%%MONTH%%DAY%%DAY-OF-YEAR% 字在同步开始时转换为日期。

- -

 

- -

只有当同步复制或移动时,才会示此选项

- -

*         -将照片/视频的拍摄时间/日期追加到目名称(关字将被替换为照片/视频的拍日期和时间

- -

如果你不能从Exif取日期和时间使用文件的最后修改时间代替。

- -

 

- -

以下选项仅在同步 "存档 "才会示。

- -

*         -如果日期和时间无法通EXIF数据确定,请显示确消息。

- -

如果勾,如果不能从Exif得日期和时间会提示用是否使用文件的最后修改时间 如果将确信息 -"取消"不会文件行存档。

- -

 

- -

*         -在以下情况下档文件

- -

选择您要存档的照片的准。

- -

*        -任何日期(全部)

- -

所有照片存档

- -

*        -大于7

- -

采集日期比当前时间7天以上。

- -

*        -30

- -

采集日期比当前时间30天以上。

- -

*        -60

- -

采集日期比当前时间60天以上。

- -

*        -90

- -

采集日期比当前时间90天以上。

- -

*        -180

- -

采集日期比当前时间180天以上。

- -

*        -1年以上

- -

采集的日期比在的时间早了一年多。

- -

 

- -

*         -在将文件档到目文件之前,先更改文件名。

- -

如果勾将重命名文件。 可以在 "文件名模板 "中用日期和时间来命名文件。 你也可以建一个目来存文件。 如果想把文件放在目中,启用 "保存到目"

- -

 

- -

*         -追加来揄チ文件名

- -

在文件名中添加订单号。

- -

*        -不要

- -

不要添加序列号

- -

*        -2位数字序列(01-99

- -

01-99

- -

*        -3位数字序列(001-999

- -

001-999

- -

*        -4位数字序列(0001-9999

- -

0001-9999

- -

*        -5位数字序列(00001-99999

- -

00001-99999

- -

*        -6位数字序列(000001-999999

- -

000001-999999

- -

 

- -

*         -文件名模板

- -

*        -名称

- -

在模板中入原始文件名。

- -

*        -日期(YYYY-MM-DD

- -

在模板中入日期(如2018-04-16)。

- -

*        -日期(YYYYMMDD

- -

在模板中入日期(如20180416)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如12-00-30)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如120030)。

- -

*        -文件名模板

- -

入要重命名的文件模板。 认值为DSC_%DATE% 按下按可以在光入关键词

- -

最后一行示了要保存的实际和文件名。

- -

 

- -

*         -根据拍日期建目以存文件。

- -

可以建和存一个目 如果勾会出 -"名称模板"

- -

 

- -

*         -名称模板。

- -

入要建的目,如DIR-%YEAR%-%MONTH% 按下按可以在光入关键词

- -

*        -

- -

在模板中入年份(如2018年)。

- -

*        -

- -

在模板中入年月日(如04)。

- -

*        -

- -

在模板中入日期(如16)。

- -

*        -名称模板。

- -

认值为%YEAR% 认值为%YEAR%

- -

最后一行示文件存放的实际和文件名。

- -

 

- -

 

- -

更多信息,看下文。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.html b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.html new file mode 100644 index 00000000..80e7bf1f --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_smb.html @@ -0,0 +1,164 @@ + + + + +SMBSync2_Help_ZH_folder_smb +

謳懃エ「SMB譛榊苅蝎ィ

+

謔ィ蜿ッ莉・謇ォ謠冗ス醍サ懷ケカ譟・逵鬼MB譛榊苅蝎ィ逧蛻苓。ィ縲

+

+

譛榊苅蝎ィ荳サ譛コ蜷/ IP蝨ー蝮

+

逕ィ蜷咲ァー謌蜂P蝨ー蝮謖螳售MB譛榊苅蝎ィ逧荳サ譛コ縲 螯よ棡荳崎ス逕ィ蜷榊ュ礼匳蠖包シ悟ーア逕ィIP蝨ー蝮謖螳壹

+

+

SMB蜊剰ョョ

+

謖螳夊ヲ∽スソ逕ィ逧ТMB蜊剰ョョ縲

+
    +
  • 菴ソ逕ィSMB V1
  • +
  • 菴ソ逕ィSMB V2シ2.01シ
  • +
  • 菴ソ逕ィSMB V2シ2.11シ
  • +
  • 菴ソ逕ィSMB V2 / 3シ2.12シ
  • +
  • 菴ソ逕ィSMB V2 / 3シ2.14シ
  • + +
+

+

謖螳夂ォッ蜿」蜿キ

+

謖螳壽蜃遶ッ蜿」蜿キ譏ッ蜷ヲ荳榊庄逕ィ縲 譬蜃遶ッ蜿」蜿キ荳コ445謌139縲

+

+

菴ソ逕ィ蟶先姐蜷榊柱蟇遐

+

謔ィ蠢鬘サ謖螳壻ク荳ェ雍ヲ謌キ謌門ッ遐√

+

+

逕ィ謌キ蜷

+

謖螳啀C/NAS荳願ョセ鄂ョ逧雍ヲ蜿キ蜷咲ァーシ御ク崎ス菴ソ逕ィ蠕ョ霓ッ雍ヲ蜿キシ瑚ッキ蛻帛サコ譛ャ蝨ー雍ヲ蜿キ蟷カ謖螳壹

+

+

蟇遐

+

謖螳壼惠PC/NAS荳願ョセ鄂ョ逧蟇遐√

+

+

蛻怜コ閧。莉ス

+

轤ケ蜃サ謖蛾聴シ梧仞遉コ蜿ッ莉・騾画叫逧蜈ア莠ォ蜷咲ァーシ檎┯蜷守せ蜃サ蜈ア莠ォ蜷咲ァーシ梧潔 "遑ョ螳"縲

+

+

蜈ア逕ィ蜷

+

菴蜿ッ莉・逕ィ謇玖セ灘・蜈ア莠ォ蜷咲ァー縲

+

+

逶ョ蠖墓ク蜊

+

轤ケ蜃サ蛻苓。ィ謖蛾聴騾画叫隕∵遠蠑逧逶ョ蠖包シ檎┯蜷守せ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ縲 轤ケ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ霑幄。碁画叫縲

+

+

逶ョ蠖

+

菴蜿ッ莉・逕ィ謇玖ソ帛・PC/NAS逶ョ蠖輔

+

+

蟆蜷梧ュ・譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー逕ア謇ァ陦悟酔豁・逧譌・譛溷柱譌カ髣エ譖ソ謐「シ

+

謔ィ蜿ッ莉・蝨ィ逶ョ譬逶ョ蠖穂クュ菴ソ逕ィ%YEAR%縲%MONTH%縲%DAY%蜥%DAY-OF-YEAR%縲 蜈ウ髞ョ蟄怜惠蜷梧ュ・蠑蟋区慮霓ャ謐「荳コ譌・譛溘

+

+

蜿ェ譛牙ス灘酔豁・邀サ蝙倶クコ螟榊宛謌也ァサ蜉ィ譌カシ梧燕莨壽仞遉コ豁、騾蛾。ケ縲

+

蟆辣ァ迚/隗鬚醍噪諡肴槍譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー陲ォ譖ソ謐「荳コ辣ァ迚/隗鬚醍噪諡肴槍譌・譛溷柱譌カ髣エシ

+

螯よ棡菴荳崎ス莉殺xif荳ュ闔キ蜿匁律譛溷柱譌カ髣エシ瑚ッキ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ莉」譖ソ縲

+

+

莉・荳矩蛾。ケ莉蝨ィ蜷梧ュ・邀サ蝙倶クコ "蟄俶。」 "譌カ謇堺シ壽仞遉コ縲

+

螯よ棡譌・譛溷柱譌カ髣エ譌豕暮夊ソEXIF謨ー謐ョ遑ョ螳夲シ瑚ッキ譏セ遉コ遑ョ隶、豸域ッ縲

+

螯よ棡蜍セ騾会シ悟ヲよ棡荳崎ス莉殺xif荳ュ闔キ蠕玲律譛溷柱譌カ髣エシ悟吩シ壽署遉コ逕ィ謌キ遑ョ隶、譏ッ蜷ヲ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ縲 螯よ棡蟆遑ョ隶、菫。諱ッ隶セ鄂ョ荳コ "蜿匁カ"シ悟吩ク堺シ壼ッケ譁莉カ霑幄。悟ュ俶。」縲

+

+

蝨ィ莉・荳区ュ蜀オ荳句ス呈。」譁莉カ

+

騾画叫謔ィ隕∝ュ俶。」逧辣ァ迚逧譬蜃縲

+
    +
  • 莉サ菴墓律譛滂シ亥ィ驛ィシ

    +

    謇譛臥ァ迚蟄俶。」

    +
  • +
  • 螟ァ莠7螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ7螟ゥ莉・荳翫

    +
  • +
  • 雜霑30螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ30螟ゥ莉・荳翫

    +
  • +
  • 雜霑60螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ60螟ゥ莉・荳翫

    +
  • +
  • 雜霑90螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ90螟ゥ莉・荳翫

    +
  • +
  • 雜霑180螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ180螟ゥ莉・荳翫

    +
  • +
  • 1蟷エ莉・荳

    +

    驥髮逧譌・譛滓ッ皮鴫蝨ィ逧譌カ髣エ譌ゥ莠荳蟷エ螟壹

    +
  • + +
+

+

蝨ィ蟆譁莉カ蠖呈。」蛻ー逶ョ譬譁莉カ螟ケ荵句燕シ瑚ッキ蜈域峩謾ケ譁莉カ蜷阪

+

螯よ棡蜍セ騾会シ悟ス呈。」譌カ蟆驥榊多蜷肴枚莉カ縲 蜿ッ莉・蝨ィ "譁莉カ蜷肴ィ。譚ソ "荳ュ逕ィ譌・譛溷柱譌カ髣エ譚・蜻ス蜷肴枚莉カ縲 菴荵溷庄莉・蛻帛サコ荳荳ェ逶ョ蠖墓擂蟄伜お譁莉カ縲 螯よ棡諠ウ謚頑枚莉カ謾セ蝨ィ逶ョ蠖穂クュシ瑚ッキ蜷ッ逕ィ "蠖呈。」譌カ菫晏ュ伜芦逶ョ蠖"縲

+

+

騾夊ソ霑ス蜉譚・蠅槫刈譁莉カ蜷

+

蠖呈。」譌カ蝨ィ譁莉カ蜷堺クュ豺サ蜉隶「蜊募捷縲

+
    +
  • 荳崎ヲ∵困

    +

    荳崎ヲ∵キサ蜉蠎丞怜捷

    +
  • +
  • 2菴肴焚蟄怜コ丞暦シ01-99シ

    +

    蜉01-99

    +
  • +
  • 3菴肴焚蟄怜コ丞暦シ001-999シ

    +

    蜉001-999

    +
  • +
  • 4菴肴焚蟄怜コ丞暦シ0001-9999シ

    +

    蜉0001-9999

    +
  • +
  • 5菴肴焚蟄怜コ丞暦シ00001-99999シ

    +

    蜉00001-99999

    +
  • +
  • 6菴肴焚蟄怜コ丞暦シ000001-999999シ

    +

    蜉000001-999999

    +
  • + +
+

+

譁莉カ蜷肴ィ。譚ソ

+
    +
  • 蜷咲ァー

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蜴溷ァ区枚莉カ蜷阪

    +
  • +
  • 譌・譛滂シYYYY-MM-DDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ2018-04-16シ峨

    +
  • +
  • 譌・譛滂シYYYYMMDDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ20180416シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ12-00-30シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ120030シ峨

    +
  • +
  • 譁莉カ蜷肴ィ。譚ソ

    +

    霎灘・隕驥榊多蜷咲噪譁莉カ讓。譚ソ縲 鮟倩ョ、蛟シ荳コDSC_%DATE%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ莠隕∽ソ晏ュ倡噪螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

譬ケ謐ョ諡肴槍譌・譛溷帛サコ逶ョ蠖穂サ・蟄伜お譁莉カ縲

+

蠖呈。」譌カ蜿ッ莉・蛻帛サコ蜥悟ュ伜お荳荳ェ逶ョ蠖輔 螯よ棡蜍セ騾会シ悟吩シ壼コ邇ー "逶ョ蠖募錐遘ー讓。譚ソ"縲

+

+

逶ョ蠖募錐遘ー讓。譚ソ縲

+

霎灘・隕∝帛サコ逧逶ョ蠖包シ悟ヲDIR-%YEAR%-%MONTH%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

+
    +
  • 蟷エ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ莉スシ亥ヲ2018蟷エシ峨

    +
  • +
  • +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ譛域律シ亥ヲ04シ峨

    +
  • +
  • 譌・

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ16シ峨

    +
  • +
  • 逶ョ蠖募錐遘ー讓。譚ソ縲

    +

    鮟倩ョ、蛟シ荳コ%YEAR%縲 鮟倩ョ、蛟シ荳コ%YEAR%縲

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ譁莉カ蟄俶叛逧螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

+

譖エ螟壻ソ。諱ッシ瑚ッキ逵倶ク区枚縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.htm b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.htm deleted file mode 100644 index d977c591..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.htm +++ /dev/null @@ -1,909 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*         -

- -

列表按钮选择要打开的目,然后点单选 单选钮进选择

- -

 

- -

*         -将同步时间/日期追加到目名称(关字将由行同步的日期和时间

- -

您可以在目中使用%YEAR%%MONTH%%DAY%%DAY-OF-YEAR% 字在同步开始时转换为日期。

- -

 

- -

只有当同步复制或移动时,才会示此选项

- -

*         -将照片/视频的拍摄时间/日期追加到目名称(关字将被替换为照片/视频的拍日期和时间

- -

如果你不能从Exif取日期和时间使用文件的最后修改时间代替。

- -

 

- -

*         -

- -

入目或主目 如果您指定的目不存在,将在同步程中

- -

 

- -

*         -写入USB

- -

你必须选择USB的根目才能访问USB

- -

 

- -

以下选项仅在同步 "存档 "才会示。

- -

*         -如果日期和时间无法通EXIF数据确定,请显示确消息。

- -

如果勾,如果不能从Exif得日期和时间会提示用是否使用文件的最后修改时间 如果将确信息 -"取消"不会文件行存档。

- -

 

- -

*         -在以下情况下档文件

- -

选择您要存档的照片的准。

- -

*        -任何日期(全部)

- -

所有照片存档

- -

*        -大于7

- -

采集日期比当前时间7天以上。

- -

*        -30

- -

采集日期比当前时间30天以上。

- -

*        -60

- -

采集日期比当前时间60天以上。

- -

*        -90

- -

采集日期比当前时间90天以上。

- -

*        -180

- -

采集日期比当前时间180天以上。

- -

*        -1年以上

- -

采集的日期比在的时间早了一年多。

- -

 

- -

*         -在将文件档到目文件之前,先更改文件名。

- -

如果勾将重命名文件。 可以在 "文件名模板 "中用日期和时间来命名文件。 你也可以建一个目来存文件。 如果想把文件放在目中,启用 "保存到目"

- -

 

- -

*         -追加来揄チ文件名

- -

在文件名中添加订单号。

- -

*        -不要

- -

不要添加序列号

- -

*        -2位数字序列(01-99

- -

01-99

- -

*        -3位数字序列(001-999

- -

001-999

- -

*        -4位数字序列(0001-9999

- -

0001-9999

- -

*        -5位数字序列(00001-99999

- -

00001-99999

- -

*        -6位数字序列(000001-999999

- -

000001-999999

- -

 

- -

*         -文件名模板

- -

*        -名称

- -

在模板中入原始文件名。

- -

*        -日期(YYYY-MM-DD

- -

在模板中入日期(如2018-04-16)。

- -

*        -日期(YYYYMMDD

- -

在模板中入日期(如20180416)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如12-00-30)。

- -

*        -时间HHMMSS

- -

在模板中入一个时间(如120030)。

- -

*        -文件名模板

- -

入要重命名的文件模板。 认值为DSC_%DATE% 按下按可以在光入关键词

- -

最后一行示了要保存的实际和文件名。

- -

 

- -

*         -根据拍日期建目以存文件。

- -

可以建和存一个目 如果勾会出 -"名称模板"

- -

 

- -

*         -名称模板。

- -

入要建的目,如DIR-%YEAR%-%MONTH% 按下按可以在光入关键词

- -

*        -

- -

在模板中入年份(如2018年)。

- -

*        -

- -

在模板中入年月日(如04)。

- -

*        -

- -

在模板中入日期(如16)。

- -

*        -名称模板。

- -

认值为%YEAR% 认值为%YEAR%

- -

最后一行示文件存放的实际和文件名。

- -

 

- -

 

- -

更多信息,看下文。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -

 

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.html b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.html new file mode 100644 index 00000000..b5cd09a1 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_usb.html @@ -0,0 +1,132 @@ + + + + +SMBSync2_Help_ZH_folder_usb +

逶ョ蠖墓ク蜊

+

轤ケ蜃サ蛻苓。ィ謖蛾聴騾画叫隕∵遠蠑逧逶ョ蠖包シ檎┯蜷守せ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ縲 轤ケ蜃サ蜿ウ萓ァ逧蜊暮画潔髓ョ霑幄。碁画叫縲

+

+

蟆蜷梧ュ・譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー逕ア謇ァ陦悟酔豁・逧譌・譛溷柱譌カ髣エ譖ソ謐「シ

+

謔ィ蜿ッ莉・蝨ィ逶ョ譬逶ョ蠖穂クュ菴ソ逕ィ%YEAR%縲%MONTH%縲%DAY%蜥%DAY-OF-YEAR%縲 蜈ウ髞ョ蟄怜惠蜷梧ュ・蠑蟋区慮霓ャ謐「荳コ譌・譛溘

+

+

蜿ェ譛牙ス灘酔豁・邀サ蝙倶クコ螟榊宛謌也ァサ蜉ィ譌カシ梧燕莨壽仞遉コ豁、騾蛾。ケ縲

+

蟆辣ァ迚/隗鬚醍噪諡肴槍譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー陲ォ譖ソ謐「荳コ辣ァ迚/隗鬚醍噪諡肴槍譌・譛溷柱譌カ髣エシ

+

螯よ棡菴荳崎ス莉殺xif荳ュ闔キ蜿匁律譛溷柱譌カ髣エシ瑚ッキ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ莉」譖ソ縲

+

+

逶ョ蠖

+

霎灘・逶ョ譬謌紋クサ逶ョ蠖輔 螯よ棡謔ィ謖螳夂噪逶ョ蠖穂ク榊ュ伜惠シ悟ー蝨ィ蜷梧ュ・霑遞倶クュ蛻帛サコ隸・逶ョ蠖輔

+

+

蜈∬ョク蜀吝・USB

+

菴蠢鬘サ騾画叫USB逧譬ケ逶ョ蠖墓燕閭ス隶ソ髣ョUSB縲

+

+

莉・荳矩蛾。ケ莉蝨ィ蜷梧ュ・邀サ蝙倶クコ "蟄俶。」 "譌カ謇堺シ壽仞遉コ縲

+

螯よ棡譌・譛溷柱譌カ髣エ譌豕暮夊ソEXIF謨ー謐ョ遑ョ螳夲シ瑚ッキ譏セ遉コ遑ョ隶、豸域ッ縲

+

螯よ棡蜍セ騾会シ悟ヲよ棡荳崎ス莉殺xif荳ュ闔キ蠕玲律譛溷柱譌カ髣エシ悟吩シ壽署遉コ逕ィ謌キ遑ョ隶、譏ッ蜷ヲ菴ソ逕ィ譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ縲 螯よ棡蟆遑ョ隶、菫。諱ッ隶セ鄂ョ荳コ "蜿匁カ"シ悟吩ク堺シ壼ッケ譁莉カ霑幄。悟ュ俶。」縲

+

+

蝨ィ莉・荳区ュ蜀オ荳句ス呈。」譁莉カ

+

騾画叫謔ィ隕∝ュ俶。」逧辣ァ迚逧譬蜃縲

+
    +
  • 莉サ菴墓律譛滂シ亥ィ驛ィシ

    +

    謇譛臥ァ迚蟄俶。」

    +
  • +
  • 螟ァ莠7螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ7螟ゥ莉・荳翫

    +
  • +
  • 雜霑30螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ30螟ゥ莉・荳翫

    +
  • +
  • 雜霑60螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ60螟ゥ莉・荳翫

    +
  • +
  • 雜霑90螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ90螟ゥ莉・荳翫

    +
  • +
  • 雜霑180螟ゥ

    +

    驥髮譌・譛滓ッ泌ス灘燕譌カ髣エ譌ゥ180螟ゥ莉・荳翫

    +
  • +
  • 1蟷エ莉・荳

    +

    驥髮逧譌・譛滓ッ皮鴫蝨ィ逧譌カ髣エ譌ゥ莠荳蟷エ螟壹

    +
  • + +
+

+

蝨ィ蟆譁莉カ蠖呈。」蛻ー逶ョ譬譁莉カ螟ケ荵句燕シ瑚ッキ蜈域峩謾ケ譁莉カ蜷阪

+

螯よ棡蜍セ騾会シ悟ス呈。」譌カ蟆驥榊多蜷肴枚莉カ縲 蜿ッ莉・蝨ィ "譁莉カ蜷肴ィ。譚ソ "荳ュ逕ィ譌・譛溷柱譌カ髣エ譚・蜻ス蜷肴枚莉カ縲 菴荵溷庄莉・蛻帛サコ荳荳ェ逶ョ蠖墓擂蟄伜お譁莉カ縲 螯よ棡諠ウ謚頑枚莉カ謾セ蝨ィ逶ョ蠖穂クュシ瑚ッキ蜷ッ逕ィ "蠖呈。」譌カ菫晏ュ伜芦逶ョ蠖"縲

+

+

騾夊ソ霑ス蜉譚・蠅槫刈譁莉カ蜷

+

蠖呈。」譌カ蝨ィ譁莉カ蜷堺クュ豺サ蜉隶「蜊募捷縲

+
    +
  • 荳崎ヲ∵困

    +

    荳崎ヲ∵キサ蜉蠎丞怜捷

    +
  • +
  • 2菴肴焚蟄怜コ丞暦シ01-99シ

    +

    蜉01-99

    +
  • +
  • 3菴肴焚蟄怜コ丞暦シ001-999シ

    +

    蜉001-999

    +
  • +
  • 4菴肴焚蟄怜コ丞暦シ0001-9999シ

    +

    蜉0001-9999

    +
  • +
  • 5菴肴焚蟄怜コ丞暦シ00001-99999シ

    +

    蜉00001-99999

    +
  • +
  • 6菴肴焚蟄怜コ丞暦シ000001-999999シ

    +

    蜉000001-999999

    +
  • + +
+

+

譁莉カ蜷肴ィ。譚ソ

+
    +
  • 蜷咲ァー

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蜴溷ァ区枚莉カ蜷阪

    +
  • +
  • 譌・譛滂シYYYY-MM-DDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ2018-04-16シ峨

    +
  • +
  • 譌・譛滂シYYYYMMDDシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ20180416シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ12-00-30シ峨

    +
  • +
  • 譌カ髣エシHHMMSSシ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・荳荳ェ譌カ髣エシ亥ヲ120030シ峨

    +
  • +
  • 譁莉カ蜷肴ィ。譚ソ

    +

    霎灘・隕驥榊多蜷咲噪譁莉カ讓。譚ソ縲 鮟倩ョ、蛟シ荳コDSC_%DATE%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ莠隕∽ソ晏ュ倡噪螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

譬ケ謐ョ諡肴槍譌・譛溷帛サコ逶ョ蠖穂サ・蟄伜お譁莉カ縲

+

蠖呈。」譌カ蜿ッ莉・蛻帛サコ蜥悟ュ伜お荳荳ェ逶ョ蠖輔 螯よ棡蜍セ騾会シ悟吩シ壼コ邇ー "逶ョ蠖募錐遘ー讓。譚ソ"縲

+

+

逶ョ蠖募錐遘ー讓。譚ソ縲

+

霎灘・隕∝帛サコ逧逶ョ蠖包シ悟ヲDIR-%YEAR%-%MONTH%縲 謖我ク区潔髓ョ蜿ッ莉・蝨ィ蜈画蜷手セ灘・蜈ウ髞ョ隸阪

+
    +
  • 蟷エ

    +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ莉スシ亥ヲ2018蟷エシ峨

    +
  • +
  • +

    蝨ィ讓。譚ソ荳ュ霎灘・蟷エ譛域律シ亥ヲ04シ峨

    +
  • +
  • 譌・

    +

    蝨ィ讓。譚ソ荳ュ霎灘・譌・譛滂シ亥ヲ16シ峨

    +
  • +
  • 逶ョ蠖募錐遘ー讓。譚ソ縲

    +

    鮟倩ョ、蛟シ荳コ%YEAR%縲 鮟倩ョ、蛟シ荳コ%YEAR%縲

    +
  • + +
+

譛蜷惹ク陦梧仞遉コ譁莉カ蟄俶叛逧螳樣刔逶ョ蠖募柱譁莉カ蜷阪

+

+

譖エ螟壻ソ。諱ッシ瑚ッキ逵倶ク区枚縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.htm b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.htm deleted file mode 100644 index 4b80289a..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.htm +++ /dev/null @@ -1,467 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*        -

- -

选择用于内部存的挂点。

- -

 

- -

*      ZIP文件保存到SDCARD

- -

如果勾压缩文件将被保存到SDCARD

- -

 

- -

*      写入SDCARD

- -

你必须选择SDCARD的根目才能访问SDCARD

- -

 

- -

*      列出文件

- -

示文件列表。

- -

 

- -

*      将同步时间/日期追加到目名称(关字将由行同步的日期和时间

- -

您可以在目中使用%YEAR%%MONTH%%DAY%%DAY-OF-YEAR% 字在同步开始时转换为日期。

- -

 

- -

*      压缩

- -

选择压缩程度。

- -

*      快速

- -

*      最快的

- -

*      最大

- -

*      正常

- -

*      压缩

- -

*      (最慢)

- -

 

- -

*      加密方式

- -

选择加密方式。

- -

*    兼容邮编

- -

*    AES 128

- -

*    AES 256

- -

 

- -

*     

- -

指定加密的密

- -

 

- -

更多信息,看下文。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.html b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.html new file mode 100644 index 00000000..29e0834c --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_folder_zip.html @@ -0,0 +1,49 @@ + + + + +SMBSync2_Help_ZH_folder_zip +

謖りスス轤ケ

+

騾画叫逕ィ莠主驛ィ蟄伜お逧謖りスス轤ケ縲

+

+

蟆ZIP譁莉カ菫晏ュ伜芦SDCARD縲

+

螯よ棡蜍セ騾会シ悟視郛ゥ譁莉カ蟆陲ォ菫晏ュ伜芦SDCARD縲

+

+

蜈∬ョク蜀吝・SDCARD

+

菴蠢鬘サ騾画叫SDCARD逧譬ケ逶ョ蠖墓燕閭ス隶ソ髣ョSDCARD縲

+

+

蛻怜コ譁莉カ

+

譏セ遉コ譁莉カ蛻苓。ィ縲

+

+

蟆蜷梧ュ・譌カ髣エ/譌・譛溯ソス蜉蛻ー逶ョ蠖募錐遘ーシ亥ウ髞ョ蟄怜ー逕ア謇ァ陦悟酔豁・逧譌・譛溷柱譌カ髣エ譖ソ謐「シ

+

謔ィ蜿ッ莉・蝨ィ逶ョ譬逶ョ蠖穂クュ菴ソ逕ィ%YEAR%縲%MONTH%縲%DAY%蜥%DAY-OF-YEAR%縲 蜈ウ髞ョ蟄怜惠蜷梧ュ・蠑蟋区慮霓ャ謐「荳コ譌・譛溘

+

+

蜴狗シゥ遲臥コァ

+

騾画叫蜴狗シゥ遞句コヲ縲

+
    +
  • 蠢ォ騾
  • +
  • 譛蠢ォ逧
  • +
  • 譛螟ァ蛟シ
  • +
  • 豁」蟶ク
  • +
  • 蜴狗シゥ遲臥コァ
  • +
  • 雜郤ァシ域怙諷「シ
  • + +
+

+

蜉蟇譁ケ蠑

+

騾画叫蜉蟇譁ケ蠑上

+
    +
  • 蜈シ螳ケ驍ョ郛
  • +
  • AES 128菴
  • +
  • AES 256菴
  • + +
+

+

蟇遐

+

謖螳壼刈蟇逧蟇遐√

+

+

譖エ螟壻ソ。諱ッシ瑚ッキ逵倶ク区枚縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image003.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image003.png deleted file mode 100644 index 9200f96f..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image003.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image004.png b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image004.png deleted file mode 100644 index 5ae004bf..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.files/image004.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.htm b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.htm deleted file mode 100644 index 3dc5686a..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.htm +++ /dev/null @@ -1,1329 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

*        -测试模式(勿复制或除文件)

- -

如果勾,将不会除和复制任何文件。 使用此功能可看与同步任同步将复制或除哪些文件。你可以在记录和信息中看到要复制或除的文件。 您不能将其为测试模式下的自同步任

- -

 

- -

*        -同步

- -

如果您在没有选择务时按下同步按,任将开始同步。

- -

 

- -

*        -同步任名称

- -

同步任的名称。 名称不区分大小写。

- -

 

- -

*        -同步

- -

像、复制、移或存档中选择一种方法。 同步是在一个方向上行的,从主站到目站。

- -

*            -

- -

将主站的目和文件*1)到目,复制完成后,从目侧删除主站不存在的文件和目

- -

*            -

- -

将主控端目和文件差复制到目端,除主控端被复制到目端的文件。 但是,如果主文件和目文件的名称、文件大小和修改日期相同,主文件会被除,而不会被复制。

- -

*             -复制

- -

差分将主目中的文件复制到目中。

- -

*             -封存

- -

如果主目中的照片和视频是在行存档前7天或30天之前拍的,将其移到目中。 但是,你不能使用ZIP来瞄准。

- -

 

- -

*1 足以下三个条件中的任何一个文件将被判定差异文件,并将被复制或移 但是,文件大小和最后修改时间可以被同步任选项忽略。

- -

§  -文件不存在。

- -

§  -不同的文件大小。

- -

§  -最后修改的日期和时间相差3秒以上(秒数可以通同步任中的选项更改)。

- -

 

- -

*        -源和目

- -

主文件和目文件的内容。

- -

 

- -

*        -主文件(源)

- -

指定同步的源目 击图标示文件夹编辑界面。

- -

 

- -

*        -文件(目

- -

您可以指定目 击图标 "编辑文件 -"面。

- -

 

- -

*        -选择要同步的文件

- -

如果未中,所有文件将被同步。 如果中,可以选择要同步的文件。

- -

*       -同步音文件

- -

如果中,以下文件展名将被同步。

- -

aac, aif, aifc, aiff, flac, kar, -m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

- -

*       -同步像文件

- -

如果中,以下文件展名将被同步。

- -

bmp, cgm, djv, djvu, gif, ico, -ief, jpe, jpeg, jpg, pbm, pgm, png,pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, -xbm, xpm, xwd

- -

*       -同步视频文件

- -

如果中,以下文件展名将被同步。

- -

avi, m4u, mov, -mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

- -

*       -档案过滤

- -

你也可以选择你要同步的文件的名称和展名,除了上述的

- -

 

- -

*        -选择子目

- -

如果不勾,所有子目将被同步。 如果勾会出一个目录过滤

- -

*       -录过滤

- -

您可以选择要同步的目 此按示目录筛选器的编辑页面。

- -

 

- -

*        -在充电时执行同步任

- -

只有在充电时才能开始同步。 如果您在池未充电时同步,会出现错误,并且不会启同步任

- -

 

- -

*        -同步主目根目中的文件(如果未中,则仅同步文件及其文件/子文件)。

- -

如果勾理主文件中指定目中的文件和子目及子目中的文件。 如果不勾理主文件中指定目下的子目和子目中的文件。

- -

例如,如果内部存的根目是主目,并且要同步的目是由目录选择过滤器指定的,不勾,根目下的文件将被排除在外。

- -

 

- -

*        -覆盖/除之前确

- -

如果勾,在除和覆盖文件之前,将示一个确认对话框。

- -

 

- -

*        -Wifi AP选项

- -

如果没有接到接入点,"AP同步 "将以错误终止。

- -

接入点列表 "您在接到特定接入点开始同步。 "线局域网接入点列表 -"入接入点名称。

- -

 

- -

*        -如果WLAN接到指定的接入点,或者WLAN IP与指定的IP地址不匹配,

- -

后,如果不足条件,不作为错误处理,启

- -

 

- -

*        -与所有IP地址同步(包括公用)

- -

选项,您可以与私人地址以外的地址同步。

- -

 

- -

*        -示高级选项

- -

使用以下选项

- -

 

- -

*        -包括子目

- -

如果勾,同步过滤器中选择的子目将被同步。 如果不勾,子目将不会被同步。

- -

 

- -

*        -包括空目

- -

如果勾,它将同步空目 (在目建空目)

- -

 

- -

*        -包括藏目

- -

如果勾此框,将同步藏目 (在安卓系中,藏目的名称是" (注意,同步建的目不会被藏,因WindowsSamba使用的是目位而不是目名。

- -

 

- -

*        -包括藏文件

- -

如果勾此框,可以同步藏的文件。 -(在安卓系中,藏文件的名字是" 然它以 "*",但同步建的文件不会被藏,因WindowsSamba使用目位而不是文件名。

- -

 

- -

*        -络错误

- -

SMB器出错时同步。 最多重3次,每次重都是在出30秒后行。

- -

 

- -

*        -使用的目录选择过滤

- -

如果在排除上录时选择了下将成同步的目

- -

 

- -

*        -使用新的过滤器版本2

- -

选该框以使用新的过滤器。 可能会与旧版滤镜有不同的表,所以在使用前测试

- -

 

- -

*        -过滤器排除的目和文件

- -

如果中,过滤器将除被排除的目/文件。

- -

 

- -

*        -同步之前除文件(仅镜像模式)

- -

后,首先除主文件中不存在的目和文件,然后复制主文件和不同文件大小、最后修改时间的文件。

- -

如果主文件SMB会通络扫描文件,从而揄チ时间 如果可能的SMB协议使用 -"SMBv2/3"

- -

 

- -

*        -不要将目文件的最后修改时间设与源文件匹配

- -

如果SmbFile#setLastModified()File#setLastModified()败则启用。 将决定一个文件的差异是否存在以及文件的大小。

- -

 

- -

*        -SMBSync2用程序自定列表中取文件的最后修改时间

- -

如果每次都是复制所有的文件,可以尝试一下,用SMBSync2自己的方式维护本地文件的最后修改日期,而不使用Java -File#setLastModified()

- -

 

- -

*        -SMB I / O冲区限制16 KB

- -

如果你在写入PC/NAS文件夹时 -"访问被拒 "错误请尝试这样做。 如果勾限制IO冲区16KB,用于程文件写入。 但是,性能会有所下降。

- -

 

- -

*        -使用文件大小确定文件是否不同

- -

如果检查时文件大小不同,判断差异文件。

- -

 

- -

*        -大小比当源大小大于目大小,文件才被视为不同)

- -

如果勾只有在主文件大小才会同步。

- -

 

- -

*        -使用上次修改时间来确定文件是否不同

- -

如果勾,如果文件的最后修改时间不同,判断差分文件。

- -

 

- -

*        -源文件和目文件之的最小允许时间差(以秒为单位)

- -

1秒、3秒和10秒之间选择 (如果文件最后修改的时间差在定的时间差内,不做修改。)

- -

 

- -

*        -如果目文件比源文件新,不要覆盖

- -

如果勾,只有当主文件比目文件新,才会覆盖文件,即使文件大小和最后修改时间不同。

- -

 

- -

*        -忽略文件之的夏令差异

- -

它会忽略夏令时间差。

- -

 

- -

*        -选择夏令偏移量(分

- -

指定要忽略的时间差。

- -

 

- -

*        -包含无效字符(":\*<>, |)的目和文件名

- -

如果勾此框,系将不会理包含不可用字符的目/文件,而是示一条警告信息,并理下一个目/文件。

- -

 

- -

更多信息,看下文。

- -

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.html b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.html new file mode 100644 index 00000000..7b4afebb --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Help_ZH_task.html @@ -0,0 +1,179 @@ + + + + +SMBSync2_Help_ZH_task +

豬玖ッ墓ィ。蠑擾シ郁ッキ蜍ソ螟榊宛謌門唖髯、譁莉カシ

+

螯よ棡蜍セ騾会シ悟ー荳堺シ壼唖髯、蜥悟、榊宛莉サ菴墓枚莉カ縲 菴ソ逕ィ豁、蜉溯ス蜿ッ譟・逵倶ク主酔豁・莉サ蜉。蜷梧ュ・譌カ蟆螟榊宛謌門唖髯、蜩ェ莠帶枚莉カ縲ゆス蜿ッ莉・蝨ィ蜴蜿イ隶ー蠖募柱菫。諱ッ荳ュ逵句芦隕∝、榊宛謌門唖髯、逧譁莉カ縲 謔ィ荳崎ス蟆蜈カ隶セ鄂ョ荳コ豬玖ッ墓ィ。蠑丈ク狗噪閾ェ蜉ィ蜷梧ュ・莉サ蜉。縲

+

+

閾ェ蜉ィ蜷梧ュ・

+

螯よ棡謔ィ蝨ィ豐。譛蛾画叫莉サ蜉。譌カ謖我ク句酔豁・謖蛾聴シ御ササ蜉。蟆蠑蟋句酔豁・縲

+

+

蜷梧ュ・莉サ蜉。蜷咲ァー

+

蜷梧ュ・莉サ蜉。逧蜷咲ァー縲 蜷咲ァー荳榊玄蛻螟ァ蟆丞吶

+

+

蜷梧ュ・邀サ蝙

+

莉朱復蜒上∝、榊宛縲∫ァサ蜉ィ謌門ュ俶。」荳ュ騾画叫荳遘肴婿豕輔 蜷梧ュ・譏ッ蝨ィ荳荳ェ譁ケ蜷台ク願ソ幄。檎噪シ御サ惹クサ遶吝芦逶ョ譬遶吶

+
    +
  • 髟懷ワ

    +

    蟆荳サ遶吩セァ逧逶ョ蠖募柱譁莉カ蟾ョ鬚晄狭雍晢シ*1シ牙芦逶ョ譬遶吩セァシ悟、榊宛螳梧仙錘シ御サ守岼譬遶吩セァ蛻髯、荳サ遶吩セァ荳榊ュ伜惠逧譁莉カ蜥檎岼蠖輔

    +
  • +
  • 遘サ蜉ィ

    +

    蟆荳サ謗ァ遶ッ逶ョ蠖募柱譁莉カ蟾ョ鬚晏、榊宛蛻ー逶ョ譬遶ッシ悟唖髯、荳サ謗ァ遶ッ陲ォ螟榊宛蛻ー逶ョ譬遶ッ逧譁莉カ縲 菴譏ッシ悟ヲよ棡荳サ譁莉カ蜥檎岼譬譁莉カ逧蜷咲ァー縲∵枚莉カ螟ァ蟆丞柱菫ョ謾ケ譌・譛溽嶌蜷鯉シ悟吩クサ譁莉カ莨夊「ォ蛻髯、シ瑚御ク堺シ夊「ォ螟榊宛縲

    +
  • +
  • 螟榊宛

    +

    蟾ョ蛻蟆荳サ逶ョ蠖穂クュ逧譁莉カ螟榊宛蛻ー逶ョ譬逶ョ蠖穂クュ縲

    +
  • +
  • 蟆∝ュ

    +

    螯よ棡荳サ逶ョ蠖穂クュ逧辣ァ迚蜥瑚ァ鬚第弍蝨ィ謇ァ陦悟ュ俶。」蜑7螟ゥ謌30螟ゥ荵句燕諡肴槍逧シ悟吝ー蜈カ遘サ蜉ィ蛻ー逶ョ譬逶ョ蠖穂クュ縲 菴譏ッシ御ス荳崎ス菴ソ逕ィZIP譚・迸蜃縲

    +
  • + +
+

+

*1 蠖捺サ。雜ウ莉・荳倶ク我クェ譚。莉カ荳ュ逧莉サ菴穂ク荳ェ譌カシ瑚ッ・譁莉カ蟆陲ォ蛻、螳壻クコ蟾ョ蠑よ枚莉カシ悟ケカ蟆陲ォ螟榊宛謌也ァサ蜉ィ縲 菴譏ッシ梧枚莉カ螟ァ蟆丞柱譛蜷惹ソョ謾ケ譌カ髣エ蜿ッ莉・陲ォ蜷梧ュ・莉サ蜉。逧騾蛾。ケ蠢ス逡・縲

+
    +
  1. 隸・譁莉カ荳榊ュ伜惠縲
  2. +
  3. 荳榊酔逧譁莉カ螟ァ蟆上
  4. +
  5. 譛蜷惹ソョ謾ケ逧譌・譛溷柱譌カ髣エ逶ク蟾ョ3遘剃サ・荳奇シ育ァ呈焚蜿ッ莉・騾夊ソ蜷梧ュ・莉サ蜉。荳ュ逧騾蛾。ケ譖エ謾ケシ峨
  6. + +
+

+

莠、謐「貅仙柱逶ョ譬

+

譖ソ謐「荳サ譁莉カ螟ケ蜥檎岼譬譁莉カ螟ケ逧蜀螳ケ縲

+

+

荳サ譁莉カ螟ケシ域コ撰シ

+

謖螳壼酔豁・逧貅千岼蠖輔 轤ケ蜃サ蝗セ譬シ梧仞遉コ譁莉カ螟ケ郛冶セ醍阜髱「縲

+

+

逶ョ譬譁莉カ螟ケシ育岼譬シ

+

謔ィ蜿ッ莉・謖螳夂岼譬逶ョ蠖輔 轤ケ蜃サ蝗セ譬シ梧仞遉コ "郛冶セ醍岼譬譁莉カ螟ケ "鬘オ髱「縲

+

+

騾画叫隕∝酔豁・逧譁莉カ

+

螯よ棡譛ェ騾我クュシ梧園譛画枚莉カ蟆陲ォ蜷梧ュ・縲 螯よ棡騾我クュシ悟庄莉・騾画叫隕∝酔豁・逧譁莉カ縲

+
    +
  • 蜷梧ュ・髻ウ鬚第枚莉カ

    +

    螯よ棡騾我クュシ御サ・荳区枚莉カ謇ゥ螻募錐蟆陲ォ蜷梧ュ・縲
    aac, aif, aifc, aiff, flac, kar, m3u, m4a, mid, midi, mp2, mp3, mpga, ogg, ra, ram, wav

    +
  • +
  • 蜷梧ュ・蝗セ蜒乗枚莉カ

    +

    螯よ棡騾我クュシ御サ・荳区枚莉カ謇ゥ螻募錐蟆陲ォ蜷梧ュ・縲
    bmp, cgm, djv, djvu, gif, ico, ief, jpe, jpeg, jpg, pbm, pgm, png, pnm, ppm, ras, rgb, svg, tif, tiff, wbmp, xbm, xpm, xwd

    +
  • +
  • 蜷梧ュ・隗鬚第枚莉カ

    +

    螯よ棡騾我クュシ御サ・荳区枚莉カ謇ゥ螻募錐蟆陲ォ蜷梧ュ・縲
    avi, m4u, mov, mp4, movie, mpe, mpeg, mpg, mxu, qt, wmv

    +
  • +
  • 譯」譯郁ソ貊、蝎ィ

    +

    菴荵溷庄莉・騾画叫菴隕∝酔豁・逧譁莉カ逧蜷咲ァー蜥梧黄螻募錐シ碁勁莠荳願ソー逧

    +
  • + +
+

+

騾画叫蟄千岼蠖

+

螯よ棡荳榊鏡騾会シ梧園譛牙ュ千岼蠖募ー陲ォ蜷梧ュ・縲 螯よ棡蜍セ騾会シ悟吩シ壼コ邇ー荳荳ェ逶ョ蠖戊ソ貊、謖蛾聴縲

+
    +
  • 逶ョ蠖戊ソ貊、蝎ィ
  • + +
+

謔ィ蜿ッ莉・騾画叫隕∝酔豁・逧逶ョ蠖輔 轤ケ蜃サ豁、謖蛾聴シ梧仞遉コ逶ョ蠖慕ュ幃牙勣逧郛冶セ鷹。オ髱「縲

+

+

莉蝨ィ蜈逕オ譌カ謇ァ陦悟酔豁・莉サ蜉。

+

蜿ェ譛牙惠蜈逕オ譌カ謇崎ス蠑蟋句酔豁・縲 螯よ棡謔ィ蝨ィ逕オ豎譛ェ蜈逕オ譌カ蜷ッ蜉ィ蜷梧ュ・シ悟吩シ壼コ邇ー髞呵ッッシ悟ケカ荳比ク堺シ壼星蜉ィ蜷守サュ蜷梧ュ・莉サ蜉。縲

+

+

蜷梧ュ・荳サ逶ョ蠖墓ケ逶ョ蠖穂クュ逧譁莉カシ亥ヲよ棡譛ェ騾我クュシ悟吩サ蜷梧ュ・譁莉カ螟ケ蜿雁カ譁莉カ/蟄先枚莉カ螟ケシ峨

+

螯よ棡蜍セ騾会シ悟吝宵螟逅荳サ譁莉カ螟ケ荳ュ謖螳夂岼蠖穂クュ逧譁莉カ蜥悟ュ千岼蠖募所蟄千岼蠖穂クュ逧譁莉カ縲 螯よ棡荳榊鏡騾会シ悟吝宵螟逅荳サ譁莉カ螟ケ荳ュ謖螳夂岼蠖穂ク狗噪蟄千岼蠖募柱蟄千岼蠖穂クュ逧譁莉カ縲
萓句ヲゑシ悟ヲよ棡蜀驛ィ蟄伜お逧譬ケ逶ョ蠖墓弍荳サ逶ョ蠖包シ悟ケカ荳碑ヲ∝酔豁・逧逶ョ蠖墓弍逕ア逶ョ蠖暮画叫霑貊、蝎ィ謖螳夂噪シ御ク榊鏡騾会シ梧ケ逶ョ蠖穂ク狗噪譁莉カ蟆陲ォ謗帝勁蝨ィ螟悶

+

+

隕逶/蛻髯、荵句燕遑ョ隶、

+

螯よ棡蜍セ騾会シ悟惠蛻髯、蜥瑚ヲ逶匁枚莉カ荵句燕シ悟ー譏セ遉コ荳荳ェ遑ョ隶、蟇ケ隸晄。縲

+

+

Wifi AP騾蛾。ケシ

+
    +
  • 蜈ウ譛コ譌カ荵溯ス霑占。

    +

    蜊ウ菴ソ蜈ウ髣ュ莠Wifiシ御ケ滉シ壼ー晁ッ募星蜉ィ蜷梧ュ・縲

    +
  • +
  • 霑樊磁蛻ー莉サ菴柊P

    +

    蜿ェ譛芽ソ樊磁蛻ーwifi鄂醍サ懈慮謇堺シ壼酔豁・縲ょョ蟆謗・蜿嶺ササ菴標LAN SSID蜷咲ァー縲

    +
  • +
  • 譛臥ァ∽ココ蝨ー蝮

    +

    蜿ェ譛牙ス灘驟咲サ儻iFi鄂醍サ懃噪IP蝨ー蝮蝨ィ莉・荳玖激蝗エ蜀譌カシ梧お謇崎ス蜷ッ蜉ィ蜷梧ュ・縲10.0.0.0 - 10.255.255.255, 172.16.0.0 - 172.31.255.255 謌 192.168.0.0 - 192.168.255.255縲

    +
  • +
  • IP蝨ー蝮蛻苓。ィ

    +

    蜿ェ譛牙ス展iFi IP蝨ー蝮荳取欠螳壼慍蝮荵倶ク逶ク蛹ケ驟肴慮シ梧お謇崎ス蠑蟋句酔豁・縲よお荵溷庄莉・騾夊ソIP騾画叫蛻苓。ィ逶エ謗・豺サ蜉隶セ螟蠖灘燕霑樊磁逧ИP蝨ー蝮縲
    菴蜿ッ莉・菴ソ逕ィ騾夐咲ャヲ菴應クコ霑貊、蝎ィ縲(萓句ヲゑシ192.168.100.*シ192.168.*)

    +
  • + +
+

蝨ィ霑樊磁蛻ー迚ケ螳啗iFi譌カシ梧怏蜃遘肴婿豕募庄莉・蜷梧ュ・縲りッヲ諠隸キ蜿りァ∝クク隗髣ョ鬚倥

+
    +
  1. 蟆WiFi霍ッ逕ア蝎ィ荳顔噪IP蝨ー蝮謾ケ荳コ192.168.0.0/24莉・螟也噪蜈カ莉門慍蝮シ悟ケカ蟆蜈カ豺サ蜉蛻ーIP蝨ー蝮蛻苓。ィ荳ュ縲
  2. +
  3. 蝨ィ螳牙酷遶ッ蝗コ螳壻ク荳ェIP蝨ー蝮シ悟ケカ蝨ィIP蝨ー蝮蛻苓。ィ荳ュ豕ィ蜀後
  4. + +
+

螯よ棡WLAN IP荳咲ャヲ蜷域欠螳夂噪IP蝨ー蝮シ悟呵キウ霑莉サ蜉。縲

+

蜍セ騾牙錘シ悟ヲよ棡荳肴サ。雜ウ譚。莉カシ悟吩ク堺ス應クコ髞呵ッッ螟逅シ悟星蜉ィ蜷守サュ莉サ蜉。縲

+

+

蜈∬ョク荳取園譛迂P蝨ー蝮蜷梧ュ・シ亥桁諡ャ蜈ャ逕ィシ

+

蜍セ騾画ュ、騾蛾。ケシ梧お蜿ッ莉・荳守ァ∽ココ蝨ー蝮莉・螟也噪蝨ー蝮蜷梧ュ・縲

+

+

譏セ遉コ鬮倡コァ騾蛾。ケ

+

莉蝨ィ隶セ鄂ョ隸ヲ諠譌カ菴ソ逕ィ莉・荳矩蛾。ケ縲

+

+

蛹諡ャ蟄千岼蠖

+

螯よ棡蜍セ騾会シ悟酔豁・霑貊、蝎ィ荳ュ騾画叫逧蟄千岼蠖募ー陲ォ蜷梧ュ・縲 螯よ棡荳榊鏡騾会シ悟ュ千岼蠖募ー荳堺シ夊「ォ蜷梧ュ・縲

+

+

蛹諡ャ遨コ逶ョ蠖

+

螯よ棡蜍セ騾会シ悟ョ蟆蜷梧ュ・遨コ逶ョ蠖輔 (蝨ィ逶ョ譬荳雁帛サコ遨コ逶ョ蠖)

+

+

蛹諡ャ髫占酪逶ョ蠖

+

螯よ棡蜍セ騾画ュ、譯シ悟ー蜷梧ュ・髫占酪逶ョ蠖輔 (蝨ィ螳牙酷邉サ扈滉クュシ碁嚼阯冗岼蠖慕噪蜷咲ァー譏ッ"縲 (豕ィ諢擾シ悟酔豁・蛻帛サコ逧逶ョ蠖穂ク堺シ夊「ォ髫占酪シ悟屏荳コWindows蜥郡amba菴ソ逕ィ逧譏ッ逶ョ蠖穂ス崎御ク肴弍逶ョ蠖募錐縲

+

+

蛹諡ャ髫占酪譁莉カ

+

螯よ棡蜍セ騾画ュ、譯シ悟庄莉・蜷梧ュ・髫占酪逧譁莉カ縲 (蝨ィ螳牙酷邉サ扈滉クュシ碁嚼阯乗枚莉カ逧蜷榊ュ玲弍"縲 陌ス辟カ螳莉・ "*"蠑螟エシ御ス蜷梧ュ・蛻帛サコ逧譁莉カ荳堺シ夊「ォ髫占酪シ悟屏荳コWindows蜥郡amba菴ソ逕ィ逶ョ蠖穂ス崎御ク肴弍譁莉カ蜷阪

+

+

驥崎ッ慕ス醍サ憺漠隸ッ

+

莉蝨ィSMB譛榊苅蝎ィ蜃コ髞呎慮驥崎ッ募酔豁・縲 譛螟夐崎ッ3谺。シ梧ッ乗ャ。驥崎ッ暮ス譏ッ蝨ィ蜃コ髞30遘貞錘霑幄。後

+

+

菴ソ逕ィ蠅槫シコ逧逶ョ蠖暮画叫霑貊、蝎ィ

+

螯よ棡蝨ィ謗帝勁荳顔コァ逶ョ蠖墓慮騾画叫莠荳狗コァ逶ョ蠖包シ悟吩ク狗コァ逶ョ蠖募ー謌蝉クコ蜷梧ュ・逧逶ョ譬縲

+

+

菴ソ逕ィ譁ー逧霑貊、蝎ィ迚域悽2

+

蜍セ騾芽ッ・譯莉・菴ソ逕ィ譁ー逧霑貊、蝎ィ縲 蜿ッ閭ス莨壻ク取立迚域サ、髟懈怏荳榊酔逧陦ィ邇ーシ梧園莉・隸キ蝨ィ菴ソ逕ィ蜑榊スサ蠎墓オ玖ッ輔

+

蛻髯、霑貊、蝎ィ謗帝勁逧逶ョ蠖募柱譁莉カ

+

螯よ棡騾我クュシ瑚ソ貊、蝎ィ蟆蛻髯、陲ォ謗帝勁逧逶ョ蠖/譁莉カ縲

+

+

蜷梧ュ・荵句燕蛻髯、譁莉カシ井サ髟懷ワ讓。蠑擾シ

+

蜍セ騾牙錘シ碁ヲ門亥唖髯、荳サ譁莉カ螟ケ荳ュ荳榊ュ伜惠逧逶ョ蠖募柱譁莉カシ檎┯蜷主、榊宛荳サ譁莉カ螟ケ蜥御ク榊酔譁莉カ螟ァ蟆上∵怙蜷惹ソョ謾ケ譌カ髣エ逧譁莉カ縲

+

螯よ棡荳サ譁莉カ螟ケ譏ッSMBシ悟吩シ夐夊ソ鄂醍サ懈沖謠乗枚莉カシ御サ手悟「槫刈螟逅譌カ髣エ縲 螯よ棡蜿ッ閭ス逧隸晢シ郡MB蜊剰ョョ菴ソ逕ィ "SMBv2/3"縲

+

+

荳崎ヲ∝ー逶ョ譬譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ隶セ鄂ョ荳コ荳取コ先枚莉カ蛹ケ驟

+

螯よ棡SmbFile#setLastModified()謌芳ile#setLastModified()螟ア雍・蛻吝星逕ィ縲 霑吝ー蜀ウ螳壻ク荳ェ譁莉カ逧蟾ョ蠑よ弍蜷ヲ蟄伜惠莉・蜿頑枚莉カ逧螟ァ蟆上

+

+

莉惨MBSync2蠎皮畑遞句コ剰ェ螳壻ケ牙苓。ィ荳ュ闔キ蜿匁枚莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ

+

螯よ棡豈乗ャ。驛ス譏ッ螟榊宛謇譛臥噪譁莉カシ悟庄莉・蟆晁ッ穂ク荳具シ檎畑SMBSync2閾ェ蟾ア逧譁ケ蠑冗サエ謚、譛ャ蝨ー譁莉カ逧譛蜷惹ソョ謾ケ譌・譛滂シ瑚御ク堺スソ逕ィJava File#setLastModified()縲

+

+

蟆SMB I / O蜀咏シ灘イ蛹コ髯仙宛荳コ16 KB

+

螯よ棡菴蝨ィ蜀吝・PC/NAS譁莉カ螟ケ譌カ蜃コ邇ー "隶ソ髣ョ陲ォ諡堤サ "逧髞呵ッッシ瑚ッキ蟆晁ッ戊ソ呎キ蛛壹 螯よ棡蜍セ騾会シ悟咎剞蛻カIO郛灘イ蛹コ荳コ16KBシ檎畑莠手ソ懃ィ区枚莉カ蜀吝・縲 菴譏ッシ梧ァ閭ス莨壽怏謇荳矩剄縲

+

+

菴ソ逕ィ譁莉カ螟ァ蟆冗。ョ螳壽枚莉カ譏ッ蜷ヲ荳榊酔

+

螯よ棡譽譟・譌カ譁莉カ螟ァ蟆丈ク榊酔シ悟吝愛譁ュ荳コ蟾ョ蠑よ枚莉カ縲

+

+

莉螟ァ蟆乗ッ碑セシ井サ蠖捺コ仙、ァ蟆丞、ァ莠守岼譬螟ァ蟆乗慮シ梧枚莉カ謇崎「ォ隗荳コ荳榊酔シ

+

螯よ棡蜍セ騾会シ悟吝宵譛牙惠荳サ譁莉カ螟ァ蟆剰セ螟ァ譌カ謇堺シ壼酔豁・縲

+

+

菴ソ逕ィ荳頑ャ。菫ョ謾ケ譌カ髣エ譚・遑ョ螳壽枚莉カ譏ッ蜷ヲ荳榊酔

+

螯よ棡蜍セ騾会シ悟ヲよ棡譁莉カ逧譛蜷惹ソョ謾ケ譌カ髣エ荳榊酔シ悟吝愛譁ュ荳コ蟾ョ蛻譁莉カ縲

+

+

貅先枚莉カ蜥檎岼譬譁莉カ荵矩龍逧譛蟆丞∬ョク譌カ髣エ蟾ョシ井サ・遘剃クコ蜊穂ス搾シ

+

蝨ィ1遘偵3遘貞柱10遘剃ケ矩龍騾画叫縲 (螯よ棡譁莉カ譛蜷惹ソョ謾ケ逧譌カ髣エ蟾ョ蝨ィ騾牙ョ夂噪譌カ髣エ蟾ョ蜀シ悟吩ク榊★菫ョ謾ケ縲)

+

+

螯よ棡逶ョ譬譁莉カ豈疲コ先枚莉カ譁ーシ瑚ッキ荳崎ヲ∬ヲ逶

+

螯よ棡蜍セ騾会シ悟宵譛牙ス謎クサ譁莉カ豈皮岼譬譁莉カ譁ー譌カシ梧燕莨夊ヲ逶匁枚莉カシ悟叉菴ソ譁莉カ螟ァ蟆丞柱譛蜷惹ソョ謾ケ譌カ髣エ荳榊酔縲

+

+

蠢ス逡・譁莉カ荵矩龍逧螟丈サ、譌カ蟾ョ蠑

+

蜍セ騾牙ョ莨壼ソス逡・螟丈サ、譌カ蜥梧蜃譌カ髣エ逧譌カ蟾ョ縲

+

+

騾画叫螟丈サ、譌カ蛛冗ァサ驥擾シ亥髓滂シ

+

謖螳夊ヲ∝ソス逡・逧譌カ髣エ蟾ョ縲

+

+

霍ウ霑蛹蜷ォ譌謨亥ュ礼ャヲシ"シ:シ圭シ*シ<シ>, |シ臥噪逶ョ蠖募柱譁莉カ蜷

+

螯よ棡蜍セ騾画ュ、譯シ檎ウサ扈溷ー荳堺シ壼、逅蛹蜷ォ荳榊庄逕ィ蟄礼ャヲ逧逶ョ蠖/譁莉カシ瑚梧弍譏セ遉コ荳譚。隴ヲ蜻贋ソ。諱ッシ悟ケカ螟逅荳倶ク荳ェ逶ョ蠖/譁莉カ縲

+

+

譖エ螟壻ソ。諱ッシ瑚ッキ逵倶ク区枚縲

+

https://drive.google.com/file/d/0B77t0XpnNT7OSzBzcV9SemEwbkE/view?usp=sharing

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.htm b/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.htm deleted file mode 100644 index 890dff23..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.htm +++ /dev/null @@ -1,622 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

1. Permissions. 2

- -

1.1.Location.. 2

- -

1.2.Photos/Media/Files. 2

- -

1.3.Storage. 2

- -

1.4.Wi-Fi -Connection infomation.. 2

- -

1.5.Other. 2

- -

1.5.1.view -network connections. 2

- -

1.5.2.connect -and disconnect from Wi-Fi 2

- -

1.5.3.full -network access. 2

- -

1.5.4.run at -startup. 3

- -

1.5.5.control -vibration.. 3

- -

1.5.6.prevent -device from sleeping. 3

- -

1.5.7.install -shortcuts. 3

- -

2.Data recorded by the app. 4

- -

2.1.Synchronization -task list. 4

- -

2.2.App activity -record. 4

- -

2.3. -Exported settings and Sync task list. 4

- -

3.Send recorded data from the app. 5

- -

1. Permissions

- -

The app uses the following permissions.

- -

1.1.Location

- -

-approximate -location (network-based)

- -

Required -to obtain the WiFi SSID name on Android 8.1 and 9.

- -

 

- -

-precise location (GPS and network-based)

- -

Required to obtain the WiFi SSID name on Android 10 and -higher.

- -

1.2.Photos/Media/Files

- -

-read -the contents of your External SD Card, Internal Storage and USB medias.

- -

-modify -or delete the contents of your storage

- -

 

- -

Required -for file synchronization to internal/external/USB storage and to read/write -operations on application data files.

- -

 

- -

1.3.Storage

- -

-read the contents of your External SD Card, Internal -Storage and USB medias.

- -

-modify or delete the contents of your storage

- -

 

- -

Required for file synchronization to internal/external/USB storage -and to read/write operations on application data files.

- -

1.4.Wi-Fi Connection -infomation

- -

- view Wi-Fi connections

- -

Required to check the status of Wi-Fi (on/off) at the start -of synchronization.

- -

1.5.Other

- -

1.5.1.view -network connections

- -

Required to confirm that device is connected to the network -at the start of synchronization.

- -

1.5.2.connect and -disconnect from Wi-Fi

- -

Required to turn on / off Wi-Fi before and after a scheduled -synchronization.

- -

1.5.3.full network access

- -

Required to perform network synchronization using the SMB -protocol.

- -

1.5.4.run at startup

- -

Required to perform scheduled synchronization.

- -

1.5.5.control vibration

- -

Required to notify the user by vibration at the end of -synchronization.

- -

1.5.6.prevent device from -sleeping

- -

Required to start synchronization from a scheduled or -external application.

- -

1.5.7.install shortcuts

- -

Required to add a synchronization task shortcut on the home -screen.

- -

 

- -

2.Data recorded by the app

- -

No data will be sent outside of the -app unless the user operates it.

- -

2.1.Synchronization task list

- -

The -app records the necessary data to perform the synchronization.

- -

         -Directory name, file name, SMB -server host name, IP address, port number, account name, password (*1)

- -

         -Wi-Fi SSID name

- -

         -App password (*1) to protect app -launch and setting change

- -

         -App settings

- -

 

- -

*1- -password is encrypted with a system generated password and stored in the -Android Keystore.

- -

 

- -

2.2.App activity record

- -

The -app needs to record the following data to check the synchronization results and -for troubleshooting.

- -

 

- -

       -Android version, terminal maker, -terminal name, terminal model, application version

- -

       -Directory name, file name, file -size, file last modified time

- -

       -SMB server host name, IP address, -port number, account name

- -

       -Network interface name, IP -address, Wi-Fi SSID name

- -

       -System settings

- -

       -App settings

- -

 

- -

2.3. Exported settings and -Sync task list

- -

The -app can export "2.1 Synchronization -task list" to a file. You can password protect the file before -exporting it.

- -

       -Directory name, file name

- -

       -SMB server host name, IP address, -port number, account name, password

- -

       -Wi-Fi SSID name

- -

       -App settings

- -

 

- -

3.Send recorded data from -the app

- -

Data recorded by the app can be sent by following these -steps:

- -

*         -Press "Share button" from History tab

- -

*         -Press the "Send to Developer" button from the “System -info”

- -

*         -Press "Share button" or "Send to developer" -button from “Manage log files”

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.html b/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.html new file mode 100644 index 00000000..5f39d928 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Privacy_EN.html @@ -0,0 +1,70 @@ + + + + +SMBSync2_Privacy_EN +

1.Data recorded by the app

+

The app will record a 窶抓ynchronization task list窶 and, depending on the settings, a 窶戡pp activity record窶. In addition, the recorded data will not be sent out by the app unless the user has manipulated it.

+

1.1.Synchronization task list

+

The app records the necessary data to perform the synchronization.

+
    +
  • Directory name, file name, SMB server host name, IP address, port number, account name, password (*1)
  • +
  • App password (*1) to protect app launch and setting change
  • +
  • App settings
  • + +
+

*1 password is encrypted with a system generated password and stored in the AndroidKeystore.

+

1.2.App activity record

+

The app needs to record the following data to check the synchronization results and for troubleshooting.

+
    +
  • Android version, device maker, device name, device model, application version
  • +
  • Directory name, file name, file size, file last modified time
  • +
  • SMB server host name, IP address, port number, account name
  • +
  • Network interface name, IP address, System settings
  • +
  • App settings
  • + +
+

1.3. Exported settings and Sync task list

+

The app can export "1.1 Synchronization task list" to a file. You can password protect the file before exporting it.

+
    +
  • Directory name, file name
  • +
  • SMB server host name, IP address, port number, account name, password
  • +
  • App settings
  • + +
+

1.4.Send recorded data from the app

+

Data recorded by the app can be sent by following these steps:

+
    +
  • Press "Share button" from History tab
  • +
  • Press the "Send to Developer" button from the 窶彜ystem info窶
  • +
  • Press "Share button" or "Send to developer" button from 窶廴anage log files窶
  • + +
+

2. Permissions

+

The app uses the following permissions.

+

2.1.Photos/Media/Files

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

Required for file synchronization to internal/external/USB storage and to read/write operations on application data files.

+

2.2.Storage

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

Required for file synchronization to internal/external/USB storage and to read/write operations on application data files.

+

2.3.Wi-Fi Connection information

+

view Wi-Fi connections

+

Required to check the status of Wi-Fi (on/off) at the start of synchronization.

+

2.4.Other

+

2.4.1.view network connections

+

Required to confirm that device is connected to the network at the start of synchronization.

+

2.4.2.connect and disconnect from Wi-Fi

+

Required to turn on / off Wi-Fi before and after a scheduled synchronization.

+

2.4.3.full network access

+

Required to perform network synchronization using the SMB protocol.

+

2.4.4.run at startup

+

Required to perform scheduled synchronization.

+

2.4.5.control vibration

+

Required to notify the user by vibration at the end of synchronization.

+

2.4.6.prevent device from sleeping

+

Required to start synchronization from a scheduled or external application.

+

2.4.7.install shortcuts

+

Required to add a synchronization task shortcut on the home screen.

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.htm b/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.htm deleted file mode 100644 index ce603e06..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.htm +++ /dev/null @@ -1,649 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

1. Autorisations. 2

- -

1.1 Lieu.. 2

- -

1.2 Photos/Médias/Fichiers. 2

- -

1.3 Stockage. 2

- -

1.4 Informations relatives à la connexion Wi-Fi 2

- -

1.5 Autres. 2

- -

1.5.1 view network connections. 2

- -

1.5.2 connect and disconnect from Wi-Fi 2

- -

1.5.3 full network access. 2

- -

1.5.4 run at startup. 3

- -

1.5.5 control vibration.. 3

- -

1.5.6 prevent device from sleeping. 3

- -

1.5.7 install shortcuts. 3

- -

2. Données enregistrées par l'application.. 4

- -

2.1. Liste des tâches de synchronisation.. 4

- -

2.2. Fiche d'activité de l'application.. 4

- -

2.3. Paramètres exportés et liste des tâches de -synchronisation.. 4

- -

 

- -
-
- -

 

- -

1. Autorisations

- -

L'application utilise les -autorisations suivantes.

- -

1.1 Lieu

- -

*       -approximate location (network-based)

- -

Nécessaire pour obtenir le -nom du SSID WiFi sur Android 8.1/9.

- -

 

- -

*       -precise location (GPS and network-based)

- -

Nécessaire pour obtenir le -nom du SSID WiFi sur Android 10 et supérieur.

- -

1.2 -Photos/Médias/Fichiers

- -

*       -“read the contents of your External SD Card, Internal Storage and -USB medias.” & “modify or delete the contents of your storage”

- -

Nécessaire pour la -synchronisation des fichiers avec le stockage interne/externe/USB et pour les -opérations de lecture/écriture sur les fichiers de données d'application.

- -

1.3 -Stockage

- -

*       -“read the contents of your External SD Card, Internal Storage and -USB medias.” & “modify or delete the contents of your storage”

- -

Nécessaire pour la -synchronisation des fichiers avec le stockage interne/externe/USB et pour les -opérations de lecture/écriture sur les fichiers de données d'application.

- -

1.4 Informations -relatives à la connexion Wi-Fi

- -

*       -view Wi-Fi connections

- -

Il est nécessaire de -vérifier le statut du Wi-Fi (on/off) au début de la synchronisation.

- -

1.5 Autres

- -

1.5.1 view -network connections

- -

Nécessaire pour confirmer que -l'appareil est connecté au réseau au début de la synchronisation.

- -

1.5.2 connect and disconnect -from Wi-Fi

- -

Il est nécessaire d'activer / -désactiver le Wi-Fi avant et après une synchronisation programmée.

- -

1.5.3 full network access

- -

Nécessaire pour effectuer la -synchronisation du réseau en utilisant le protocole SMB.

- -

1.5.4 run at startup

- -

Nécessaire pour effectuer une -synchronisation programmée.

- -

1.5.5 control vibration

- -

Obligation de notifier -l'utilisateur par vibration à la fin de la synchronisation.

- -

1.5.6 prevent device from -sleeping

- -

Nécessaire pour lancer la -synchronisation à partir d'une application programmée ou externe.

- -

1.5.7 install shortcuts

- -

Nécessaire pour ajouter un -raccourci de tâche de synchronisation sur l'écran d'accueil.

- -
-
- -

 

- -

2. Données enregistrées par l'application

- -

Aucune donnée ne sera envoyée en dehors de l'application -si l'utilisateur ne l'utilise pas.

- -

2.1. Liste des tâches de synchronisation

- -

L'application enregistre les -données nécessaires pour effectuer la synchronisation.

- -

*         -Nom de répertoire, nom de fichier, nom d'hôte du serveur SMB, -adresse IP, numéro de port, nom de compte, mot de passe (*1)

- -

*         -Nom du SSID Wi-Fi

- -

*         -Mot de passe de l'application (*1) pour protéger le lancement de -l'application et la modification des paramètres

- -

*         -Paramètres de l'application

- -

 

- -

*1- Le mot de passe est crypté -avec un mot de passe généré par le système et stocké dans le Keystore -d'Android.

- -

2.2. Fiche d'activité de l'application

- -

L'application doit enregistrer -les données suivantes pour vérifier les résultats de la synchronisation et pour -le dépannage.

- -

*       -Version Android, fabricant du terminal, nom du terminal, modèle -du terminal, version de l'application

- -

*       -Nom du répertoire, nom du fichier, taille du fichier, date de la -dernière modification du fichier

- -

*       -Nom d'hôte du serveur SMB, adresse IP, numéro de port, nom de -compte

- -

*       -Nom de l'interface réseau, adresse IP, nom du SSID Wi-Fi

- -

*       -Paramètres du système

- -

*       -Paramètres de l'application

- -

2.3. Paramètres exportés et liste des tâches de -synchronisation

- -

L'application peut exporter -"3.1 Liste des tâches de synchronisation" -vers un fichier. Vous pouvez protéger le fichier par un mot de passe avant de -l'exporter.

- -

*       -Nom du répertoire, nom du fichier

- -

*       -Nom d'hôte du serveur SMB, adresse IP, numéro de port, nom de -compte, mot de passe

- -

*       -Nom du SSID Wi-Fi

- -

*       -Paramètres de l'application

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.html b/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.html new file mode 100644 index 00000000..aef1b06b --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Privacy_FR.html @@ -0,0 +1,72 @@ + + + + +SMBSync2_Privacy_FR +

1. Donnテゥes enregistrテゥes par l'application

+

L'application enregistrera une "liste de tテ「ches de synchronisation" et, selon les paramティtres, un "enregistrement d'activitテゥ de l'application". En outre, les donnテゥes enregistrテゥes ne seront pas envoyテゥes par l'application, sauf si l'utilisateur les a manipulテゥes.

+

1.1. Liste des tテ「ches de synchronisation

+

L'application enregistre les donnテゥes nテゥcessaires pour effectuer la synchronisation.

+
    +
  • Nom de rテゥpertoire, nom de fichier, nom d'hテエte du serveur SMB, adresse IP, numテゥro de port, nom de compte, mot de passe (*1)
  • +
  • Mot de passe de l'application (*1) pour protテゥger le lancement de l'application et la modification des paramティtres
  • +
  • Paramティtres de l'application
  • + +
+

*1 Le mot de passe est cryptテゥ avec un mot de passe gテゥnテゥrテゥ par le systティme et stockテゥ dans le Keystore d'Android.

+

1.2. Fiche d'activitテゥ de l'application

+

L'application doit enregistrer les donnテゥes suivantes pour vテゥrifier les rテゥsultats de la synchronisation et pour le dテゥpannage.

+
    +
  • Version Android, fabricant du terminal, nom du terminal, modティle du terminal, version de l'application
  • +
  • Nom du rテゥpertoire, nom du fichier, taille du fichier, date de la derniティre modification du fichier
  • +
  • Nom d'hテエte du serveur SMB, adresse IP, numテゥro de port, nom de compte
  • +
  • Nom de l'interface rテゥseau, adresse IP
  • +
  • Paramティtres du systティme
  • +
  • Paramティtres de l'application
  • + +
+

1.3. Paramティtres exportテゥs et liste des tテ「ches de synchronisation

+

L'application peut exporter "1.1 Liste des tテ「ches de synchronisation" vers un fichier. Vous pouvez protテゥger le fichier par un mot de passe avant de l'exporter.

+
    +
  • Nom du rテゥpertoire, nom du fichier
  • +
  • Nom d'hテエte du serveur SMB, adresse IP, numテゥro de port, nom de compte, mot de passe
  • +
  • Paramティtres de l'application
  • + +
+

1.4. Envoyer des donnテゥes enregistrテゥes テ partir de l'application

+

Les donnテゥes enregistrテゥes par l'application peuvent テェtre envoyテゥes en suivant ces テゥtapes :

+
    +
  • Appuyez sur le bouton "Partager" de l'onglet "Historique
  • +
  • Appuyez sur le bouton "Envoyer au dテゥveloppeur" テ partir des "Infos systティme".
  • +
  • Appuyez sur le bouton "Partager" ou "Envoyer au dテゥveloppeur" テ partir de "Gテゥrer les fichiers journaux".
  • + +
+

2. Autorisations

+

L'application utilise les autorisations suivantes.

+

2.1 Photos/Mテゥdias/Fichiers

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

Nテゥcessaire pour la synchronisation des fichiers avec le stockage interne/externe/USB et pour les opテゥrations de lecture/テゥcriture sur les fichiers de donnテゥes d'application.

+

2.2 Stockage

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

Nテゥcessaire pour la synchronisation des fichiers avec le stockage interne/externe/USB et pour les opテゥrations de lecture/テゥcriture sur les fichiers de donnテゥes d'application.

+

2.3 Informations relatives テ la connexion Wi-Fi

+

view Wi-Fi connections

+

Il est nテゥcessaire de vテゥrifier le statut du Wi-Fi (on/off) au dテゥbut de la synchronisation.

+

2.4 Autres

+

2.4.1 view network connections

+

Nテゥcessaire pour confirmer que l'appareil est connectテゥ au rテゥseau au dテゥbut de la synchronisation.

+

2.4.2 connect and disconnect from Wi-Fi

+

Il est nテゥcessaire d'activer / dテゥsactiver le Wi-Fi avant et aprティs une synchronisation programmテゥe.

+

2.4.3 full network access

+

Nテゥcessaire pour effectuer la synchronisation du rテゥseau en utilisant le protocole SMB.

+

2.4.4 run at startup

+

Nテゥcessaire pour effectuer une synchronisation programmテゥe.

+

2.4.5 control vibration

+

Obligation de notifier l'utilisateur par vibration テ la fin de la synchronisation.

+

2.4.6 prevent device from sleeping

+

Nテゥcessaire pour lancer la synchronisation テ partir d'une application programmテゥe ou externe.

+

2.4.7 install shortcuts

+

Nテゥcessaire pour ajouter un raccourci de tテ「che de synchronisation sur l'テゥcran d'accueil.

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_IT.html b/SMBSync2/src/main/assets/SMBSync2_Privacy_IT.html new file mode 100644 index 00000000..405c0a11 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Privacy_IT.html @@ -0,0 +1,72 @@ + + + + +SMBSync2_Privacy_IT +

1. Dati registrati dall'applicazione

+

L'app registrerテ un "Elenco attivitテ di sincronizzazione" e, a seconda delle impostazioni, un "Registro attivitテ dell'app". Inoltre, i dati registrati non verranno inviati dall'app a meno che l'utente non li abbia manipolati.

+

1.1. Elenco dei compiti di sincronizzazione

+

L'app registra i dati necessari per eseguire la sincronizzazione.

+
    +
  • Nome della cartella, nome del file, nome host del server SMB, indirizzo IP, numero di porta, nome dell'account, password (*1)
  • +
  • Password dell'applicazione (*1) per proteggere il lancio dell'applicazione e la modifica delle impostazioni
  • +
  • Impostazioni dell'applicazione
  • + +
+

*1 la password ティ criptata con una password generata dal sistema e memorizzata nel Keystore Android.

+

1.2. Record di attivitテ dell'applicazione

+

L'app deve registrare i seguenti dati per verificare i risultati della sincronizzazione e per la risoluzione dei problemi.

+
    +
  • Versione Android, produttore del terminale, nome del terminale, modello del terminale, versione dell'applicazione
  • +
  • Nome della cartella, nome del file, dimensione del file, ultima modifica del file
  • +
  • Nome host del server SMB, indirizzo IP, numero di porta, nome dell'account
  • +
  • Nome dell'interfaccia di rete, indirizzo IP
  • +
  • Impostazioni di sistema
  • +
  • Impostazioni dell'applicazione
  • + +
+

1.3. Impostazioni esportate e lista dei compiti di sincronizzazione

+

L'app puテイ esportare "1.1.Elenco dei compiti di sincronizzazione" in un file. テ possibile proteggere il file con una password prima di esportarlo.

+
    +
  • Nome della cartella, nome del file
  • +
  • Nome host del server SMB, indirizzo IP, numero di porta, nome dell'account, password
  • +
  • Impostazioni dell'applicazione
  • + +
+

1.4. Inviare i dati registrati dall'app

+

I dati registrati dall'app possono essere inviati seguendo questi passi:

+
    +
  • Premere il "Pulsante Condividi" dalla scheda Cronologia
  • +
  • Premere il pulsante "Invia allo sviluppatore" da "Informazioni sul sistema".
  • +
  • Premere il pulsante "Condividi" o "Invia allo sviluppatore" da "Gestisci file di log".
  • + +
+

2. Autorizzazioni

+

L'applicazione utilizza le seguenti autorizzazioni.

+

2.1. Foto/Media/File

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

Necessario per la sincronizzazione dei file con la memoria interna/esterna/USB e per le operazioni di lettura/scrittura dei file di dati dell'applicazione.

+

2.2. Conservazione

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

Necessario per la sincronizzazione dei file con la memoria interna/esterna/USB e per le operazioni di lettura/scrittura dei file di dati dell'applicazione.

+

2.3. Informazioni sulla connessione Wi-Fi

+

view Wi-Fi connections

+

Necessario per verificare lo stato del Wi-Fi (on/off) all'inizio della sincronizzazione.

+

2.4. Altro

+

2.4.1.view network connections

+

Necessario per confermare che il dispositivo sia collegato alla rete all'inizio della sincronizzazione.

+

2.4.2.connect and disconnect from Wi-Fi

+

Necessario per attivare/disattivare il Wi-Fi prima e dopo una sincronizzazione programmata.

+

2.4.3.full network access

+

Necessario per eseguire la sincronizzazione della rete utilizzando il protocollo SMB.

+

2.4.4.run at startup

+

Necessario per eseguire la sincronizzazione programmata.

+

2.4.5.control vibration

+

Necessaria la notifica all'utente tramite vibrazione al termine della sincronizzazione.

+

2.4.6.prevent device from sleeping

+

Necessario per avviare la sincronizzazione da un'applicazione programmata o esterna.

+

2.4.7.install shortcuts

+

Necessario per aggiungere una scorciatoia di sincronizzazione nella schermata iniziale.

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.htm b/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.htm deleted file mode 100644 index ba336b3a..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.htm +++ /dev/null @@ -1,594 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

1. 必要な権限... 2

- -

1.1.位置情報... 2

- -

1.2.写真、メディア、ファイル... 2

- -

1.3.ストレージ... 2

- -

1.4.Wi-Fi 接続情報... 2

- -

1.5.その他... 2

- -

1.5.1.view -network connections. 2

- -

1.5.2.connect -and disconnect from Wi-Fi 2

- -

1.5.3.full -network access. 2

- -

1.5.4.run -at startup. 2

- -

1.5.5.control -vibration.. 3

- -

1.5.6.prevent -device from sleeping. 3

- -

1.5.7.install -shortcuts. 3

- -

2.アプリが記録するデータ... 4

- -

2.1同期タスクリスト... 4

- -

2.2アプリ稼動記録... 4

- -

2.3書き出された同期タスクリスト... 4

- -

3.アプリからのデータ送信... 5

- -

 1. 必要な権限

- -

アプリでは下記の権限を使用しています。

- -

1.1.位置情報

- -

-approximate location (network-based)

- -

Android8.1/9WiFi -SSID名を取得するために使用します。

- -

 

- -

-precise location (GPS and network-based)

- -

Android10以上でWiFi -SSID名を取得するために使用します。

- -

1.2.写真、メディア、ファイル

- -

-read the contents of your USB storage

- -

-modify or delete the contents of your USB storage

- -

内部ストレージへのファイル同期と管理ファイルの読み書きで使用します。

- -

1.3.ストレージ

- -

-read the contents of your USB storage

- -

-modify or delete the contents of your USB storage

- -

USBストレージへのファイル同期と管理ファイルの読み書きで使用します。

- -

1.4.Wi-Fi 接続情報

- -

- view Wi-Fi connections

- -

同期開始時にWi-Fiの状況を確認するために使用します。

- -

1.5.その他

- -

1.5.1.view -network connections

- -

同期開始時にネットワークに接続されていることを確認するために使用します。

- -

1.5.2.connect and -disconnect from Wi-Fi

- -

スケジュール同期でWi-Fiのオン・オフを行うために使用します。

- -

1.5.3.full network access

- -

ネットワークを通じてSMBプロトコルで同期を行うために使用します。

- -

1.5.4.run at startup

- -

スケジュール同期を行うために使用します。

- -

1.5.5.control vibration

- -

同期終了時にユーザーに通知を行うために使用します。

- -

1.5.6.prevent device from -sleeping

- -

スケジュールまたは外部アプリからの同期開始で使用します。

- -

1.5.7.install shortcuts

- -

デスクトップに同期開始ショートカットを追加するために使用します。

- -

2.アプリが記録するデータ

- -

記録されたデータはユーザーの操作が無い限りアプリが外部に送信することはありません。

- -

2.1同期タスクリスト

- -

アプリは同期を実行するための必要なデータを記録します。

- -

*         -ディレクトリー名、ファイル名、SMBサーバーのホスト名、IPアドレス、ポート番号、アカウント名、パスワード(*1)

- -

*         -Wi-Fi SSID

- -

*         -アプリの起動と設定変更を保護するためのアプリパスワード(*1)

- -

*         -アプリ設定値

- -

*1  Androidキーストアに保管されたシステム生成パスワードにより暗号化して保存されます。

- -

 

- -

2.2アプリ稼動記録

- -

アプリは同期結果の検証とトラブル解決のために下記項目のデータを記録します。

- -

*         -Androidバージョン、端末の製作者・端末名・端末モデル、アプリバージョン

- -

*         -ディレクトリー名、ファイル名、ファイルサイズ、ファイル最終更新時刻

- -

*         -SMBサーバーのホスト名、IPアドレス、ポート番号、アカウント名

- -

*         -ネットワーク インターフェース名、IPアドレス、Wi-Fi SSID

- -

*         -システム設定値

- -

*         -アプリ設定値

- -

 

- -

2.3書き出された同期タスクリスト

- -

アプリは「2.1同期タスクリスト」をファイルに書き出すことができます。書き出し時にパスワード保護することができます。

- -

*         -ディレクトリー名、ファイル名

- -

*         -SMBサーバーのホスト名、IPアドレス、ポート番号、アカウント名、パスワード

- -

*         -Wi-Fi SSID

- -

*         -アプリ設定値

- -

 

- -

3.アプリからのデータ送信

- -

アプリが記録したデータは下記のアプリ操作により送信することができます。

- -

*         -履歴タブから「共有ボタン」を押す

- -

*         -システム情報から「開発者に送る」ボタンを押す

- -

*         -ログ管理から「共有ボタン」または「開発者に送る」ボタンを押す

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.html b/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.html new file mode 100644 index 00000000..9c7cdb35 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Privacy_JA.html @@ -0,0 +1,71 @@ + + + + +SMBSync2_Privacy_JA +

1.繧「繝励Μ縺瑚ィ倬鹸縺吶k繝繝シ繧ソ

+

繧「繝励Μ縺ッ縲悟酔譛溘ち繧ケ繧ッ繝ェ繧ケ繝医阪→險ュ螳壹↓繧医j縲後い繝励Μ遞シ蜍戊ィ倬鹸縲阪r險倬鹸縺励∪縺吶縺ェ縺翫∬ィ倬鹸縺輔l縺溘ョ繝シ繧ソ縺ッ繝ヲ繝シ繧カ繝シ縺ョ謫堺ス懊′辟。縺髯舌j繧「繝励Μ縺悟、夜Κ縺ォ騾∽ソ。縺吶k縺薙→縺ッ縺ゅj縺セ縺帙s縲

+

1.1蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝

+

繧「繝励Μ縺ッ蜷梧悄繧貞ョ溯。後☆繧九◆繧√ョ蠢隕√↑繝繝シ繧ソ繧定ィ倬鹸縺励∪縺吶

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪√ヵ繧。繧、繝ォ蜷阪ヾMB繧オ繝シ繝舌シ縺ョ繝帙せ繝亥錐縲!P繧「繝峨Ξ繧ケ縲√昴シ繝育分蜿キ縲√い繧ォ繧ヲ繝ウ繝亥錐縲√ヱ繧ケ繝ッ繝シ繝(*1)
  • +
  • 繧「繝励Μ縺ョ襍キ蜍輔→險ュ螳壼、画峩繧剃ソ晁ュキ縺吶k縺溘a縺ョ繧「繝励Μ繝代せ繝ッ繝シ繝(*1)
  • +
  • 繧「繝励Μ險ュ螳壼、
  • + +
+

*1 Android繧ュ繝シ繧ケ繝医い縺ォ菫晉ョ。縺輔l縺溘す繧ケ繝繝逕滓舌ヱ繧ケ繝ッ繝シ繝峨↓繧医j證怜捷蛹悶@縺ヲ菫晏ュ倥&繧後∪縺吶

+

1.2繧「繝励Μ遞シ蜍戊ィ倬鹸

+

繧「繝励Μ縺ッ蜷梧悄邨先棡縺ョ讀懆ィシ縺ィ繝医Λ繝悶Ν隗」豎コ縺ョ縺溘a縺ォ荳玖ィ倬逶ョ縺ョ繝繝シ繧ソ繧定ィ倬鹸縺励∪縺吶

+
    +
  • Android繝舌シ繧ク繝ァ繝ウ縲∫ォッ譛ォ縺ョ陬ス菴懆繝サ遶ッ譛ォ蜷阪サ遶ッ譛ォ繝「繝繝ォ縲√い繝励Μ繝舌シ繧ク繝ァ繝ウ
  • +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪√ヵ繧。繧、繝ォ蜷阪√ヵ繧。繧、繝ォ繧オ繧、繧コ縲√ヵ繧。繧、繝ォ譛邨よ峩譁ー譎ょ綾
  • +
  • SMB繧オ繝シ繝舌シ縺ョ繝帙せ繝亥錐縲!P繧「繝峨Ξ繧ケ縲√昴シ繝育分蜿キ縲√い繧ォ繧ヲ繝ウ繝亥錐
  • +
  • 繝阪ャ繝医Ρ繝シ繧ッ 繧、繝ウ繧ソ繝シ繝輔ぉ繝シ繧ケ蜷阪!P繧「繝峨Ξ繧ケ
  • +
  • 繧キ繧ケ繝繝險ュ螳壼、
  • +
  • 繧「繝励Μ險ュ螳壼、
  • + +
+

1.3譖ク縺榊コ縺輔l縺溷酔譛溘ち繧ケ繧ッ繝ェ繧ケ繝

+

繧「繝励Μ縺ッ縲1.1蜷梧悄繧ソ繧ケ繧ッ繝ェ繧ケ繝医阪r繝輔ぃ繧、繝ォ縺ォ譖ク縺榊コ縺吶%縺ィ縺後〒縺阪∪縺吶よ嶌縺榊コ縺玲凾縺ォ繝代せ繝ッ繝シ繝我ソ晁ュキ縺吶k縺薙→縺後〒縺阪∪縺吶

+
    +
  • 繝繧」繝ャ繧ッ繝医Μ繝シ蜷阪√ヵ繧。繧、繝ォ蜷
  • +
  • SMB繧オ繝シ繝舌シ縺ョ繝帙せ繝亥錐縲!P繧「繝峨Ξ繧ケ縲√昴シ繝育分蜿キ縲√い繧ォ繧ヲ繝ウ繝亥錐縲√ヱ繧ケ繝ッ繝シ繝
  • +
  • 繧「繝励Μ險ュ螳壼、
  • + +
+

1.4.繧「繝励Μ縺九i縺ョ繝繝シ繧ソ騾∽ソ。

+

繧「繝励Μ縺瑚ィ倬鹸縺励◆繝繝シ繧ソ縺ッ荳玖ィ倥ョ繧「繝励Μ謫堺ス懊↓繧医j騾∽ソ。縺吶k縺薙→縺後〒縺阪∪縺吶

+
    +
  • 螻・豁エ繧ソ繝悶°繧峨悟ア譛峨懊ち繝ウ縲阪r謚シ縺
  • +
  • 繧キ繧ケ繝繝諠蝣ア縺九i縲碁幕逋コ閠縺ォ騾√k縲阪懊ち繝ウ繧呈款縺
  • +
  • 繝ュ繧ー邂。逅縺九i縲悟ア譛峨懊ち繝ウ縲阪∪縺溘ッ縲碁幕逋コ閠縺ォ騾√k縲阪懊ち繝ウ繧呈款縺
  • + +
+

2. 蠢隕√↑讓ゥ髯

+

繧「繝励Μ縺ァ縺ッ荳玖ィ倥ョ讓ゥ髯舌r菴ソ逕ィ縺励※縺縺セ縺吶

+

2.1.蜀咏悄縲√Γ繝繧」繧「縲√ヵ繧。繧、繝ォ

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

蜀驛ィ繧ケ繝医Ξ繝シ繧ク縺ク縺ョ繝輔ぃ繧、繝ォ蜷梧悄縺ィ邂。逅繝輔ぃ繧、繝ォ縺ョ隱ュ縺ソ譖ク縺阪〒菴ソ逕ィ縺励∪縺吶

+

2.2.繧ケ繝医Ξ繝シ繧ク

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

USB繧ケ繝医Ξ繝シ繧ク縺ク縺ョ繝輔ぃ繧、繝ォ蜷梧悄縺ィ邂。逅繝輔ぃ繧、繝ォ縺ョ隱ュ縺ソ譖ク縺阪〒菴ソ逕ィ縺励∪縺吶

+

2.3.Wi-Fi 謗・邯壽ュ蝣ア

+

view Wi-Fi connections

+

蜷梧悄髢句ァ区凾縺ォWi-Fi縺ョ迥カ豕√r遒コ隱阪☆繧九◆繧√↓菴ソ逕ィ縺励∪縺吶

+

2.4.縺昴ョ莉

+

2.4.1.view network connections

+

蜷梧悄髢句ァ区凾縺ォ繝阪ャ繝医Ρ繝シ繧ッ縺ォ謗・邯壹&繧後※縺繧九%縺ィ繧堤「コ隱阪☆繧九◆繧√↓菴ソ逕ィ縺励∪縺吶

+

2.4.2.connect and disconnect from Wi-Fi

+

繧ケ繧ア繧ク繝・繝シ繝ォ蜷梧悄縺ァWi-Fi縺ョ繧ェ繝ウ繝サ繧ェ繝輔r陦後≧縺溘a縺ォ菴ソ逕ィ縺励∪縺吶

+

2.4.3.full network access

+

繝阪ャ繝医Ρ繝シ繧ッ繧帝壹§縺ヲSMB繝励Ο繝医さ繝ォ縺ァ蜷梧悄繧定。後≧縺溘a縺ォ菴ソ逕ィ縺励∪縺吶

+

2.4.4.run at startup

+

繧ケ繧ア繧ク繝・繝シ繝ォ蜷梧悄繧定。後≧縺溘a縺ォ菴ソ逕ィ縺励∪縺吶

+

2.4.5.control vibration

+

蜷梧悄邨ゆコ譎ゅ↓繝ヲ繝シ繧カ繝シ縺ォ騾夂衍繧定。後≧縺溘a縺ォ菴ソ逕ィ縺励∪縺吶

+

2.4.6.prevent device from sleeping

+

繧ケ繧ア繧ク繝・繝シ繝ォ縺セ縺溘ッ螟夜Κ繧「繝励Μ縺九i縺ョ蜷梧悄髢句ァ九〒菴ソ逕ィ縺励∪縺吶

+

2.4.7.install shortcuts

+

繝繧ケ繧ッ繝医ャ繝励↓蜷梧悄髢句ァ九す繝ァ繝シ繝医き繝繝医r霑ス蜉縺吶k縺溘a縺ォ菴ソ逕ィ縺励∪縺吶

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.files/image002.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.files/image002.png deleted file mode 100644 index 15ff5e63..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.files/image002.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.htm b/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.htm deleted file mode 100644 index 294ef272..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.htm +++ /dev/null @@ -1,636 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

Содержание

- -

1.    О разрешениях. 2

- -

1.1. информация о местоположении.. 2

- -

1.2. Фотографии, мультимедиа и файлы.. 2

- -

1.3. хранилище. 2

- -

1.4. Wi-Fi Подключение Информация. 2

- -

2.    остальные. 3

- -

2.1. view network connections. 3

- -

2.2.connect and disconnect from Wi-Fi 3

- -

2.3. full network access. 3

- -

2.4.run at startup. 3

- -

2.5.control vibration.. 3

- -

2.6.prevent device from sleeping. 3

- -

2.7.install shortcuts. 3

- -

3.    Данные, -записанные приложением.. 4

- -

3.1. список синхронных задач. 4

- -

3.2. учёт активности приложений.. 4

- -

3.3. Экспортированный список синхронных задач. 4

- -

 

- -

1.    -О разрешениях

- -

Приложение использует следующие -разрешения

- -

1.1. информация о -местоположении

- -

*        -approximate location (network-based)

- -

Используется для получения имени -WiFi SSID на Android 8.1/9.

- -

 

- -

*      -precise location (GPS and network-based)

- -

Используется -для получения имени WiFi SSID на Android 10 и выше.

- -

1.2. Фотографии, мультимедиа и файлы

- -

*      -“read the contents of your USB storage” and “modify or delete the -contents of your USB storage”

- -

Используется -для синхронизации файлов во внутреннее хранилище и для чтения/записи -административных файлов.

- -

1.3. хранилище

- -

*      -“read the contents of your USB storage” and “modify or delete the -contents of your USB storage”

- -

Используется -для синхронизации файлов на USB-накопитель и для чтения/записи управленческих -файлов.

- -

1.4. Wi-Fi Подключение Информация

- -

*      -view Wi-Fi connections

- -

Это -используется для проверки состояния Wi-Fi при начале синхронизации.

- -

2.    остальные

- -

2.1. view network connections

- -

Это используется для проверки -того, что вы подключены к сети, когда начинаете синхронизацию.

- -

2.2.connect and disconnect from Wi-Fi

- -

Используйте его для включения и -выключения Wi-Fi с синхронизацией расписания.

- -

2.3. full network access

- -

Это используется для -синхронизации по сети с использованием протокола SMB.

- -

2.4.run at startup

- -

Это используется для -синхронизации расписания.

- -

2.5.control vibration

- -

Это используется для -уведомления пользователя о завершении синхронизации.

- -

2.6.prevent device from sleeping

- -

Используйте его, чтобы начать -синхронизацию с расписанием или внешним приложением.

- -

2.7.install shortcuts

- -

Используйте его для добавления -ярлыка синхронного запуска на рабочий стол.

- -

3.    Данные, -записанные приложением

- -

Записанные данные не будут -отправлены приложением во внешний мир без действий пользователя.

- -

3.1. список синхронных задач

- -

Приложение записывает данные, -необходимые для выполнения синхронизации.

- -

*      -Имя каталога, имя файла, имя хоста сервера SMB, IP-адрес, номер -порта, имя учетной записи, пароль(*1)

- -

*      -Имя Wi-Fi SSID

- -

*      -Пароль приложения для защиты запуска приложений и изменения -настроек(*1)

- -

*      -установочное значение приложения

- -

*1 Он хранится в зашифрованном -виде с помощью сгенерированного системой пароля, хранящегося в хранилище ключей -Android.

- -

 

- -

3.2. учёт активности приложений

- -

Приложение записывает следующие -данные для верификации результатов синхронизации и устранения неполадок

- -

*      -ерсия для Android, производитель устройства, название устройства, -модель устройства и версия приложения

- -

*      -Имя каталога, имя файла, размер файла и последнее измененное -время файла

- -

*      -Имя хоста сервера SMB, IP-адрес, номер порта и имя учетной записи

- -

*      -Имя сетевого интерфейса, IP-адрес, имя Wi-Fi SSID

- -

*      -заданное значение системы

- -

*      -установочное значение приложения

- -

 

- -

3.3. Экспортированный список синхронных задач

- -

Приложение может записать в -файл "3.1. Синхронизированный список задач". Он может быть защищен -паролем во время экспорта.

- -

*      -Имя каталога, имя файла

- -

*      -Имя хоста сервера SMB, IP-адрес, номер порта, имя учетной записи -и пароль

- -

*      -Имя Wi-Fi SSID

- -

*      -установочное значение приложения

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.html b/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.html new file mode 100644 index 00000000..ebec6247 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Privacy_RU.html @@ -0,0 +1,72 @@ + + + + +SMBSync2_Privacy_RU +

1. ミ頒ーミスミスム巾オ, ミキミーミソミクムミーミスミスム巾オ ミソムミクミサミセミカミオミスミクミオミシ

+

ミ ミソムミクミサミセミカミオミスミクミク ミアムσエミオム ミキミーミソミクムミーミス "ミ。ミソミクムミセミコ ミキミーミエミーム ムミクミスムムミセミスミクミキミームミクミク" ミク, ミイ ミキミーミイミクムミクミシミセムムひク ミセム ミスミームムびミセミオミコ, "ミ厘ーミソミクムム ミセ ミエミオム肖ひオミサム糊スミセムムひク ミソムミクミサミセミカミオミスミクム". ミ墫ミセミシミオ ムひセミウミセ, ミキミーミソミクムミーミスミスム巾オ ミエミーミスミスム巾オ ミスミオ ミアムσエムτ ミセムひソムミーミイミサミオミスム ミソムミクミサミセミカミオミスミクミオミシ, ミオムミサミク ムひセミサム糊コミセ ミソミセミサム糊キミセミイミームひオミサム ム ミスミクミシミク ミスミオ ミシミーミスミクミソムσサミクムミセミイミーミサ.

+

1.1. ムミソミクムミセミコ ムミクミスムムミセミスミスム錦 ミキミーミエミーム

+

ミ湲ミクミサミセミカミオミスミクミオ ミキミーミソミクムム巾イミーミオム ミエミーミスミスム巾オ, ミスミオミセミアムミセミエミクミシム巾オ ミエミサム ミイム巾ソミセミサミスミオミスミクム ムミクミスムムミセミスミクミキミームミクミク.

+
    +
  • ミ侑シム ミコミームひーミサミセミウミー, ミクミシム ムミーミケミサミー, ミクミシム ムミセムムひー ムミオムミイミオムミー SMB, IP-ミーミエムミオム, ミスミセミシミオム ミソミセムムひー, ミクミシム ムτミオムひスミセミケ ミキミーミソミクムミク, ミソミームミセミサム(*1)
  • +
  • ミ渙ームミセミサム ミソムミクミサミセミカミオミスミクム ミエミサム ミキミーム禍クムび ミキミーミソムτミコミー ミソムミクミサミセミカミオミスミクミケ ミク ミクミキミシミオミスミオミスミクム ミスミームムびミセミオミコ(*1)
  • +
  • ムτムひーミスミセミイミセムミスミセミオ ミキミスミームミオミスミクミオ ミソムミクミサミセミカミオミスミクム
  • + +
+

*1 ミ榧ス ムムミーミスミクムびム ミイ ミキミーム威クムムミセミイミーミスミスミセミシ ミイミクミエミオ ム ミソミセミシミセム禾袴 ムミウミオミスミオムミクムミセミイミーミスミスミセミウミセ ムミクムムひオミシミセミケ ミソミームミセミサム, ムムミーミスム肖禍オミウミセムム ミイ ムムミーミスミクミサミクム禍オ ミコミサム紗ミオミケ Android.

+

1.2. ムτム帯 ミーミコムひクミイミスミセムムひク ミソムミクミサミセミカミオミスミクミケ

+

ミ湲ミクミサミセミカミオミスミクミオ ミキミーミソミクムム巾イミーミオム ムミサミオミエムτ紗禍クミオ ミエミーミスミスム巾オ ミエミサム ミイミオムミクムミクミコミームミクミク ムミオミキムσサム袴ひームひセミイ ムミクミスムムミセミスミクミキミームミクミク ミク ムτムびミーミスミオミスミクム ミスミオミソミセミサミーミエミセミコ

+
    +
  • ミオムムミクム ミエミサム Android, ミソムミセミクミキミイミセミエミクムひオミサム ムτムびミセミケムムひイミー, ミスミーミキミイミーミスミクミオ ムτムびミセミケムムひイミー, ミシミセミエミオミサム ムτムびミセミケムムひイミー ミク ミイミオムムミクム ミソムミクミサミセミカミオミスミクム
  • +
  • ミ侑シム ミコミームひーミサミセミウミー, ミクミシム ムミーミケミサミー, ムミーミキミシミオム ムミーミケミサミー ミク ミソミセムミサミオミエミスミオミオ ミクミキミシミオミスミオミスミスミセミオ ミイムミオミシム ムミーミケミサミー
  • +
  • ミ侑シム ムミセムムひー ムミオムミイミオムミー SMB, IP-ミーミエムミオム, ミスミセミシミオム ミソミセムムひー ミク ミクミシム ムτミオムひスミセミケ ミキミーミソミクムミク
  • +
  • ミ侑シム ムミオムひオミイミセミウミセ ミクミスムひオムムミオミケムミー, IP-ミーミエムミオム
  • +
  • ミキミーミエミーミスミスミセミオ ミキミスミームミオミスミクミオ ムミクムムひオミシム
  • +
  • ムτムひーミスミセミイミセムミスミセミオ ミキミスミームミオミスミクミオ ミソムミクミサミセミカミオミスミクム
  • + +
+

1.3. ミュミコムミソミセムムひクムミセミイミーミスミスム巾ケ ムミソミクムミセミコ ムミクミスムムミセミスミスム錦 ミキミーミエミーム

+

ミ湲ミクミサミセミカミオミスミクミオ ミシミセミカミオム ミキミーミソミクムミームび ミイ ムミーミケミサ "1.1. ムミソミクムミセミコ ムミクミスムムミセミスミスム錦 ミキミーミエミーム". ミ榧ス ミシミセミカミオム ミアム錦び ミキミーム禍クム禍オミス ミソミームミセミサミオミシ ミイミセ ミイムミオミシム ム災コムミソミセムムひー.

+
    +
  • ミ侑シム ミコミームひーミサミセミウミー, ミクミシム ムミーミケミサミー
  • +
  • ミ侑シム ムミセムムひー ムミオムミイミオムミー SMB, IP-ミーミエムミオム, ミスミセミシミオム ミソミセムムひー, ミクミシム ムτミオムひスミセミケ ミキミーミソミクムミク ミク ミソミームミセミサム
  • +
  • ムτムひーミスミセミイミセムミスミセミオ ミキミスミームミオミスミクミオ ミソムミクミサミセミカミオミスミクム
  • + +
+

1.4. ミ樮ひソムミーミイミコミー ミキミーミソミクムミーミスミスム錦 ミエミーミスミスム錦 ミクミキ ミソムミクミサミセミカミオミスミクム

+

ミ頒ーミスミスム巾オ, ミキミーミソミクムミーミスミスム巾オ ミソムミクミサミセミカミオミスミクミオミシ, ミシミセミウムτ ミアム錦び ミセムひソムミーミイミサミオミスム ムミサミオミエムτ紗禍クミシ ミセミアムミーミキミセミシ:

+
    +
  • ミ斷ーミカミシミクムひオ ミコミスミセミソミコム "ミ樮ひソムミーミイミクムび" ミスミー ミイミコミサミーミエミコミオ "ミ佯ムひセムミクム".
  • +
  • ミ斷ーミカミシミクムひオ ミコミスミセミソミコム "ミ樮ひソムミーミイミクムび ムミーミキムミーミアミセムびミクミコム" ミクミキ "ミ。ミクムムひオミシミスミセミケ ミクミスムミセムミシミームミクミク".
  • +
  • ミ斷ーミカミシミクムひオ ミコミスミセミソミコム "ミ渙セミエミオミサミクムび袴ム" ミクミサミク "ミ樮ひソムミーミイミクムび ムミーミキムミーミアミセムびミクミコム" ミクミキ ムミーミキミエミオミサミー "ミ」ミソムミーミイミサミオミスミクミオ ミサミセミウ-ムミーミケミサミーミシミク".
  • + +
+

2. ミ ムミーミキムミオム威オミスミクム肖

+

ミ湲ミクミサミセミカミオミスミクミオ ミクムミソミセミサム糊キムσオム ムミサミオミエムτ紗禍クミオ ムミーミキムミオム威オミスミクム

+

2.1. ミ、ミセムひセミウムミームミクミク, ミシムσサム袴ひクミシミオミエミクミー ミク ムミーミケミサム

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

ミ佯ミソミセミサム糊キムσオムびム ミエミサム ムミクミスムムミセミスミクミキミームミクミク ムミーミケミサミセミイ ミイミセ ミイミスムτびミオミスミスミオミオ ムムミーミスミクミサミクム禍オ ミク ミエミサム ムムひオミスミクム/ミキミーミソミクムミク ミーミエミシミクミスミクムムびミームひクミイミスム錦 ムミーミケミサミセミイ.

+

2.2. ムムミーミスミクミサミクム禍オ

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

ミ佯ミソミセミサム糊キムσオムびム ミエミサム ムミクミスムムミセミスミクミキミームミクミク ムミーミケミサミセミイ ミスミー USB-ミスミーミコミセミソミクムひオミサム ミク ミエミサム ムムひオミスミクム/ミキミーミソミクムミク ムσソムミーミイミサミオミスムミオムミコミクム ムミーミケミサミセミイ.

+

2.3. Wi-Fi ミ渙セミエミコミサム紗ミオミスミクミオ ミ侑スムミセムミシミームミクム

+

view Wi-Fi connections

+

ミュムひセ ミクムミソミセミサム糊キムσオムびム ミエミサム ミソムミセミイミオムミコミク ムミセムムひセム紹スミクム Wi-Fi ミソムミク ミスミームミーミサミオ ムミクミスムムミセミスミクミキミームミクミク.

+

2.4.Oムムひーミサム糊スム巾オ

+

2.4.1. view network connections

+

ミュムひセ ミクムミソミセミサム糊キムσオムびム ミエミサム ミソムミセミイミオムミコミク ムひセミウミセ, ムムひセ ミイム ミソミセミエミコミサム紗ミオミスム ミコ ムミオムひク, ミコミセミウミエミー ミスミームミクミスミーミオムひオ ムミクミスムムミセミスミクミキミームミクム.

+

2.4.2.connect and disconnect from Wi-Fi

+

ミ佯ミソミセミサム糊キムσケムひオ ミオミウミセ ミエミサム ミイミコミサム紗ミオミスミクム ミク ミイム巾コミサム紗ミオミスミクム Wi-Fi ム ムミクミスムムミセミスミクミキミームミクミオミケ ムミームミソミクムミーミスミクム.

+

2.4.3.full network access

+

ミュムひセ ミクムミソミセミサム糊キムσオムびム ミエミサム ムミクミスムムミセミスミクミキミームミクミク ミソミセ ムミオムひク ム ミクムミソミセミサム糊キミセミイミーミスミクミオミシ ミソムミセムひセミコミセミサミー SMB.

+

2.4.4.run at startup

+

ミュムひセ ミクムミソミセミサム糊キムσオムびム ミエミサム ムミクミスムムミセミスミクミキミームミクミク ムミームミソミクムミーミスミクム.

+

2.4.5.control vibration

+

ミュムひセ ミクムミソミセミサム糊キムσオムびム ミエミサム ムσイミオミエミセミシミサミオミスミクム ミソミセミサム糊キミセミイミームひオミサム ミセ ミキミーミイミオムム威オミスミクミク ムミクミスムムミセミスミクミキミームミクミク.

+

2.4.6.prevent device from sleeping

+

ミ佯ミソミセミサム糊キムσケムひオ ミオミウミセ, ムムひセミアム ミスミームミームび ムミクミスムムミセミスミクミキミームミクム ム ムミームミソミクムミーミスミクミオミシ ミクミサミク ミイミスミオム威スミクミシ ミソムミクミサミセミカミオミスミクミオミシ.

+

2.4.7.install shortcuts

+

ミ佯ミソミセミサム糊キムσケムひオ ミオミウミセ ミエミサム ミエミセミアミーミイミサミオミスミクム ム肖ミサム巾コミー ムミクミスムムミセミスミスミセミウミセ ミキミーミソムτミコミー ミスミー ムミーミアミセムミクミケ ムムひセミサ.

+

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.files/image001.png b/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.files/image001.png deleted file mode 100644 index 59fbf1f1..00000000 Binary files a/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.files/image001.png and /dev/null differ diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.htm b/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.htm deleted file mode 100644 index f7e593fe..00000000 --- a/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.htm +++ /dev/null @@ -1,753 +0,0 @@ - - - - - -SMBSync Description - - - - - - -
- -

1.所需... 2

- -

1.1.位置信息... 2

- -

1.2.照片、媒体和文件... 2

- -

1.3.... 2

- -

1.4.Wi-Fi接信息... 2

- -

1.5.其他... 2

- -

1.5.1.view -network connections. 2

- -

1.5.2.connect -and disconnect from Wi-Fi 2

- -

1.5.3.full -network access. 2

- -

1.5.4.run -at startup. 3

- -

1.5.5.control -vibration.. 3

- -

1.5.6.prevent -device from sleeping. 3

- -

1.5.7.install -shortcuts. 3

- -

2.用程序记录的数据... 4

- -

2.1.同步任列表... 4

- -

2.2.动记录... 4

- -

2.3.出的同步任列表... 4

- -

3.用程序送数据... 5

- -

 1.所需

- -

该应用使用以下限。

- -

1.1.位置信息

- -

-approximate location (network-based)

- -

它用于Android 8.1/9上的WiFi -SSID名称。

- -

 

- -

-precise location (GPS and network-based)

- -

用于Android 10及以上版本的WiFi -SSID名称。

- -

1.2.照片、媒体和文件

- -

-read the contents of your USB storage

- -

-modify or delete the contents of your USB storage

- -

它用于将文件同步到内部存/写管理文件。

- -

1.3.

- -

-read the contents of your USB storage

- -

-modify or delete the contents of your USB storage

- -

它用于将文件同步到USB储设备上,并/写入管理文件。

- -

1.4.Wi-Fi接信息

- -

- view Wi-Fi connections

- -

当您开始同步,使用此功能检查Wi-Fi

- -

1.5.其他

- -

1.5.1.view -network connections

- -

它用于确保在同步开始,您已接到网

- -

1.5.2.connect and -disconnect from Wi-Fi

- -

用于开启和关Wi-Fi实现日程同步。

- -

1.5.3.full network access

- -

它是用来通SMB协议同步的。

- -

1.5.4.run at startup

- -

用于行日程同步。

- -

1.5.5.control vibration

- -

用于在同步通知用

- -

1.5.6.prevent device from -sleeping

- -

用于从日程表或外部用程序启同步。

- -

1.5.7.install shortcuts

- -

用于添加同步启快捷方式到桌面。

- -

2.用程序记录的数据

- -

记录的数据将不会被用程序传输,除非用户对理。

- -

2.1.同步任列表

- -

该应用会记录执行同步所需的数据。

- -

*       -名、文件名、SMB器主机名、IP地址、端口号、账户名、密(*1)

- -

*       -Wi-Fi SSID名称

- -

*       -护应用程序启置更改的用程序密(*1)

- -

*       -

- -

*1 用系生成的密加密并存Android -Keystore中。

- -

2.2.动记录

- -

该应用程序记录了以下数据,用于验证和故障排除。

- -

*       -安卓版本、设备制造商、设备名称、设备型号和用版本。

- -

*       -名、文件名、文件大小、文件最后修改时间

- -

*       -SMB器的主机名、IP地址、端口号和账户名。

- -

*       -接口名称、IP地址和Wi-Fi -SSID名称。

- -

*       -统设

- -

*       -

- -

2.3.出的同步任列表

- -

用可以将 "2.1同步任列表"文件。 可以行密

- -

*       -名、文件名

- -

*       -SMB器的主机名、IP地址、端口号、账户名和密

- -

*       -Wi-Fi SSID名称

- -

*       -

- -

3.用程序送数据

- -

用程序记录的数据可以通以下用程序操作来

- -

*       - ""选项卡中,按"分享"

- -

*       -信息中的 "送至开"

- -

*       -日志管理中的 "分享"""

- -

 

- -
- - - - diff --git a/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.html b/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.html new file mode 100644 index 00000000..dd3ef809 --- /dev/null +++ b/SMBSync2/src/main/assets/SMBSync2_Privacy_ZH.html @@ -0,0 +1,71 @@ + + + + +SMBSync2_Privacy_ZH +

1.蠎皮畑遞句コ剰ョー蠖慕噪謨ー謐ョ

+

蠎皮畑莨夊ョー蠖 "蜷梧ュ・莉サ蜉。蛻苓。ィ"シ梧ケ謐ョ隶セ鄂ョシ瑚ソ倅シ夊ョー蠖 "蠎皮畑豢サ蜉ィ隶ー蠖"縲豁、螟厄シ碁勁髱樒畑謌キ蟇ケ隶ー蠖慕噪謨ー謐ョ霑幄。御コ謫堺ス懶シ悟凄蛻吝コ皮畑荳堺シ壼ー蜈カ蜿鷹∝コ蜴サ縲

+

1.1.蜷梧ュ・莉サ蜉。蛻苓。ィ

+

隸・蠎皮畑莨夊ョー蠖墓鴬陦悟酔豁・謇髴逧謨ー謐ョ縲

+
    +
  • 逶ョ蠖募錐縲∵枚莉カ蜷阪ヾMB譛榊苅蝎ィ荳サ譛コ蜷阪!P蝨ー蝮縲∫ォッ蜿」蜿キ縲∬エヲ謌キ蜷阪∝ッ遐(*1)
  • +
  • 菫晄侃蠎皮畑遞句コ丞星蜉ィ蜥瑚ョセ鄂ョ譖エ謾ケ逧蠎皮畑遞句コ丞ッ遐(*1)
  • +
  • 蠎皮畑隶セ鄂ョ蛟シ
  • + +
+

*1 逕ィ邉サ扈溽函謌千噪蟇遐∝刈蟇蟷カ蟄伜お蝨ィAndroid Keystore荳ュ縲

+

1.2.逕ウ隸キ豢サ蜉ィ隶ー蠖

+

隸・蠎皮畑遞句コ剰ョー蠖穂コ莉・荳区焚謐ョシ檎畑莠朱ェ瑚ッ∝柱謨髫懈賜髯、縲

+
    +
  • 螳牙酷迚域悽縲∬ョセ螟蛻カ騾蝠縲∬ョセ螟蜷咲ァー縲∬ョセ螟蝙句捷蜥悟コ皮畑迚域悽縲
  • +
  • 逶ョ蠖募錐縲∵枚莉カ蜷阪∵枚莉カ螟ァ蟆上∵枚莉カ譛蜷惹ソョ謾ケ譌カ髣エ縲
  • +
  • SMB譛榊苅蝎ィ逧荳サ譛コ蜷阪!P蝨ー蝮縲∫ォッ蜿」蜿キ蜥瑚エヲ謌キ蜷阪
  • +
  • 鄂醍サ懈磁蜿」蜷咲ァー縲!P蝨ー蝮蜥
  • +
  • 邉サ扈溯ョセ鄂ョ
  • +
  • 蠎皮畑隶セ鄂ョ蛟シ
  • + +
+

1.3.蟇シ蜃コ逧蜷梧ュ・莉サ蜉。蛻苓。ィ

+

蠎皮畑蜿ッ莉・蟆 "1.1蜷梧ュ・莉サ蜉。蛻苓。ィ"蟇シ蜃コ荳コ譁莉カ縲 蟇シ蜃コ譌カ蜿ッ莉・霑幄。悟ッ遐∽ソ晄侃縲

+
    +
  • 逶ョ蠖募錐縲∵枚莉カ蜷
  • +
  • SMB譛榊苅蝎ィ逧荳サ譛コ蜷阪!P蝨ー蝮縲∫ォッ蜿」蜿キ縲∬エヲ謌キ蜷榊柱蟇遐√
  • +
  • 蠎皮畑隶セ鄂ョ蛟シ
  • + +
+

1.4.莉主コ皮畑遞句コ丞書騾∵焚謐ョ

+

蠎皮畑遞句コ剰ョー蠖慕噪謨ー謐ョ蜿ッ莉・騾夊ソ莉・荳句コ皮畑遞句コ乗桃菴懈擂蜿鷹

+
    +
  • 蝨ィ "蜴蜿イ"騾蛾。ケ蜊。荳ュシ梧潔"蛻莠ォ"謖蛾聴縲
  • +
  • 轤ケ蜃サ邉サ扈滉ソ。諱ッ荳ュ逧 "蜿鷹∬ウ蠑蜿題"謖蛾聴縲
  • +
  • 轤ケ蜃サ譌・蠢礼ョ。逅荳ュ逧 "蛻莠ォ"謖蛾聴謌"蜿鷹∫サ吝シ蜿題"謖蛾聴縲
  • + +
+

2.謇髴譚蜉

+

隸・蠎皮畑菴ソ逕ィ莉・荳区揀髯舌

+

2.1.辣ァ迚縲∝ェ剃ス灘柱譁莉カ

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

螳逕ィ莠主ー譁莉カ蜷梧ュ・蛻ー蜀驛ィ蟄伜お蜥瑚ッサ/蜀咏ョ。逅譁莉カ縲

+

2.2.蟄伜お

+

-read the contents of your USB storage
-modify or delete the contents of your USB storage

+

螳逕ィ莠主ー譁莉カ蜷梧ュ・蛻ーUSB蟄伜お隶セ螟荳奇シ悟ケカ隸サ蜿/蜀吝・邂。逅譁莉カ縲

+

2.3.Wi-Fi霑樊磁菫。諱ッ

+

view Wi-Fi connections

+

蠖捺お蠑蟋句酔豁・譌カシ御スソ逕ィ豁、蜉溯ス譽譟・Wi-Fi迥カ諤√

+

2.4.蜈カ莉

+

2.4.1.view network connections

+

螳逕ィ莠守。ョ菫晏惠蜷梧ュ・蠑蟋区慮シ梧お蟾イ霑樊磁蛻ー鄂醍サ懊

+

2.4.2.connect and disconnect from Wi-Fi

+

逕ィ莠主シ蜷ッ蜥悟ウ髣ュWi-Fi莉・螳樒鴫譌・遞句酔豁・縲

+

2.4.3.full network access

+

螳譏ッ逕ィ譚・騾夊ソ鄂醍サ應ク惨MB蜊剰ョョ蜷梧ュ・逧縲

+

2.4.4.run at startup

+

逕ィ莠取鴬陦梧律遞句酔豁・縲

+

2.4.5.control vibration

+

逕ィ莠主惠蜷梧ュ・扈捺據譌カ騾夂衍逕ィ謌キ縲

+

2.4.6.prevent device from sleeping

+

逕ィ莠惹サ取律遞玖。ィ謌門、夜Κ蠎皮畑遞句コ丞星蜉ィ蜷梧ュ・縲

+

2.4.7.install shortcuts

+

逕ィ莠取キサ蜉蜷梧ュ・蜷ッ蜉ィ蠢ォ謐キ譁ケ蠑丞芦譯碁擇縲

+ + \ No newline at end of file diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityIntentHandler.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityIntentHandler.java index e9af4447..f1cf16a2 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityIntentHandler.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityIntentHandler.java @@ -1,3 +1,25 @@ +/* +The MIT License (MIT) +Copyright (c) 2011 Sentaroh + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or +substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +*/ package com.sentaroh.android.SMBSync2; import android.app.Activity; diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityMain.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityMain.java index 7ca394e9..90c916c5 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityMain.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ActivityMain.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -48,6 +48,7 @@ this software and associated documentation files (the "Software"), to deal import android.os.StrictMode; import android.os.storage.StorageVolume; import android.provider.Settings; +import android.support.design.widget.TabLayout; import android.support.v4.content.FileProvider; import android.support.v4.view.ViewPager; import android.support.v7.app.ActionBar; @@ -127,10 +128,6 @@ this software and associated documentation files (the "Software"), to deal import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_CONFIRM_RESP_YESALL; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_KEY_STORE_ALIAS; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_SERIALIZABLE_FILE_NAME; -import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_TAB_NAME_HIST; -import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_TAB_NAME_MESSAGE; -import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_TAB_NAME_SCHEDULE; -import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_TAB_NAME_TASK; import static com.sentaroh.android.SMBSync2.Constants.SYNC_TASK_LIST_SEPARATOR; import static com.sentaroh.android.SMBSync2.ScheduleConstants.SCHEDULER_INTENT_SET_TIMER; import static com.sentaroh.android.SMBSync2.ScheduleConstants.SCHEDULER_INTENT_SET_TIMER_IF_NOT_SET; @@ -140,7 +137,6 @@ public class ActivityMain extends AppCompatActivity { private boolean isTaskTermination = false; // kill is disabled(enable is kill by onDestroy) - private TabHost mMainTabHost = null; private Context mContext = null; private AppCompatActivity mActivity = null; @@ -150,11 +146,14 @@ public class ActivityMain extends AppCompatActivity { private CommonUtilities mUtil = null; private CustomContextMenu ccMenu = null; - private final static int NORMAL_START = 0; - private final static int RESTART_WITH_OUT_INITIALYZE = 1; + private final static int START_STATUS_STARTING = 0; + private final static int START_STATUS_COMPLETED = 1; + private final static int START_STATUS_INITIALYZING = 2; + private int mStartStatus = START_STATUS_STARTING; + private final static int RESTART_BY_KILLED = 2; private final static int RESTART_BY_DESTROYED = 3; - private int restartType = NORMAL_START; + private int mRestoreType = 0; private ServiceConnection mSvcConnection = null; private CommonDialog mCommonDlg = null; @@ -168,6 +167,8 @@ public class ActivityMain extends AppCompatActivity { private boolean mSyncTaskListCreateRequired=false; + private String mTabNameTask="Task", mTabNameSchedule="Schedule", mTabNameHistory="History", mTabNameMessage="Message"; + @Override protected void onSaveInstanceState(Bundle out) { super.onSaveInstanceState(out); @@ -180,8 +181,8 @@ protected void onRestoreInstanceState(Bundle in) { super.onRestoreInstanceState(in); mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered."); mCurrentTab = in.getString("currentTab"); - if (mGp.activityIsFinished) restartType = RESTART_BY_KILLED; - else restartType = RESTART_BY_DESTROYED; + if (mGp.activityIsFinished) mRestoreType = RESTART_BY_KILLED; + else mRestoreType = RESTART_BY_DESTROYED; } @@ -209,7 +210,7 @@ public void onCreate(Bundle savedInstanceState) { setContentView(R.layout.main_screen); mUtil = new CommonUtilities(mContext, "Main", mGp, getSupportFragmentManager()); - mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "resartStatus=" + restartType+", settingScreenThemeLanguage="+mGp.settingScreenThemeLanguage); + mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "mStartStatus=" + mStartStatus +", settingScreenThemeLanguage="+mGp.settingScreenThemeLanguage); mActionBar = getSupportActionBar(); mActionBar.setDisplayShowHomeEnabled(false); mActionBar.setHomeButtonEnabled(false); @@ -236,7 +237,12 @@ public void onCreate(Bundle savedInstanceState) { if (mGp.syncHistoryList == null) mGp.syncHistoryList = mUtil.loadHistoryList(); mGp.syncHistoryAdapter = new AdapterSyncHistory(mActivity, R.layout.sync_history_list_item_view, mGp.syncHistoryList); - mCurrentTab = SMBSYNC2_TAB_NAME_TASK; + + mTabNameTask=getString(R.string.msgs_tab_name_prof); + mTabNameSchedule=getString(R.string.msgs_tab_name_schedule); + mTabNameHistory=getString(R.string.msgs_tab_name_history); + mTabNameMessage=getString(R.string.msgs_tab_name_msg); + mCurrentTab = mTabNameTask; createTabView(); initAdapterAndView(); @@ -252,55 +258,57 @@ public void onCreate(Bundle savedInstanceState) { @Override protected void onStart() { super.onStart(); - mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "resartStatus=" + restartType); + mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "mStartStatus=" + mStartStatus+", mRestoreType="+ mRestoreType); } @Override protected void onResume() { super.onResume(); - mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "resartStatus=" + restartType); + mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "mStartStatus=" + mStartStatus+", mRestoreType="+ mRestoreType); - if (restartType == RESTART_WITH_OUT_INITIALYZE) { + if (mStartStatus == START_STATUS_COMPLETED) { mGp.safMgr.loadSafFile(); setActivityForeground(true); ScheduleUtil.setSchedulerInfo(mActivity, mGp, mUtil); mGp.progressSpinSyncprof.setText(mGp.progressSpinSyncprofText); mGp.progressSpinMsg.setText(mGp.progressSpinMsgText); } else { - final NotifyEvent ntfy_priv_key=new NotifyEvent(mContext); - ntfy_priv_key.setListener(new NotifyEventListener() { - @Override - public void positiveResponse(Context context, Object[] objects) { - KeyStoreUtil.resetSavedKey(mContext); - processOnResumeForStart(); - } + if (mStartStatus==START_STATUS_STARTING) { + mStartStatus=START_STATUS_INITIALYZING; + final NotifyEvent ntfy_priv_key=new NotifyEvent(mContext); + ntfy_priv_key.setListener(new NotifyEventListener() { + @Override + public void positiveResponse(Context context, Object[] objects) { + KeyStoreUtil.resetSavedKey(mContext); + processOnResumeForStart(); + } - @Override - public void negativeResponse(Context context, Object[] objects) { - processOnResumeForStart(); - } - }); + @Override + public void negativeResponse(Context context, Object[] objects) { + processOnResumeForStart(); + } + }); - Thread th=new Thread() { - @Override - public void run() { - final boolean corrupted=!isValidPrivateKey(); - mUiHandler.post(new Runnable(){ - @Override - public void run() { - if (corrupted) { - mCommonDlg.showCommonDialog(true, "E",mContext.getString(R.string.msgs_smbsync_main_private_key_corrupted_title), - mContext.getString(R.string.msgs_smbsync_main_private_key_corrupted_msg), ntfy_priv_key); - } else { - processOnResumeForStart(); + Thread th=new Thread() { + @Override + public void run() { + final boolean corrupted=!isValidPrivateKey(); + mUiHandler.post(new Runnable(){ + @Override + public void run() { + if (corrupted) { + mCommonDlg.showCommonDialog(true, "E",mContext.getString(R.string.msgs_smbsync_main_private_key_corrupted_title), + mContext.getString(R.string.msgs_smbsync_main_private_key_corrupted_msg), ntfy_priv_key); + } else { + processOnResumeForStart(); + } } - } - }); - } - }; - th.start(); - + }); + } + }; + th.start(); + } } } @@ -326,6 +334,7 @@ private void processOnResumeForStart() { @Override public void run() { if (mSyncTaskListCreateRequired) { + mSyncTaskListCreateRequired=false; mUtil.addDebugMsg(1, "I", "Sync task list creation started."); synchronized (mGp.syncTaskList) { ArrayList task_list = SyncTaskUtil.createSyncTaskList(mContext, mGp, mUtil, false); @@ -344,38 +353,50 @@ public void run() { mUiHandler.post(new Runnable(){ @Override public void run() { - NotifyEvent svc_ntfy = new NotifyEvent(mContext); - svc_ntfy.setListener(new NotifyEventListener() { + NotifyEvent stg__ntfy = new NotifyEvent(mContext); + stg__ntfy.setListener(new NotifyEventListener() { @Override - public void positiveResponse(Context c, Object[] o) { - setMainListener(); - NotifyEvent app_pswd_ntfy = new NotifyEvent(mContext); - app_pswd_ntfy.setListener(new NotifyEventListener() { + public void positiveResponse(Context context, Object[] objects) { + NotifyEvent svc_ntfy = new NotifyEvent(mContext); + svc_ntfy.setListener(new NotifyEventListener() { @Override public void positiveResponse(Context c, Object[] o) { - mGp.syncTaskListView.setVisibility(ListView.VISIBLE); - if (mGp.syncTaskList.size()==0) mGp.syncTaskEmptyMessage.setVisibility(TextView.VISIBLE); - else mGp.syncTaskEmptyMessage.setVisibility(TextView.GONE); - if (mGp.syncThreadActive) { - mMainTabHost.setCurrentTabByTag(SMBSYNC2_TAB_NAME_MESSAGE); - } else { - mGp.messageListViewMoveToBottomRequired=true; - } - pd.dismiss(); + mStartStatus= START_STATUS_COMPLETED; + setMainListener(); + NotifyEvent app_pswd_ntfy = new NotifyEvent(mContext); + app_pswd_ntfy.setListener(new NotifyEventListener() { + @Override + public void positiveResponse(Context c, Object[] o) { + mGp.syncTaskListView.setVisibility(ListView.VISIBLE); + if (mGp.syncTaskList.size()==0) mGp.syncTaskEmptyMessage.setVisibility(TextView.VISIBLE); + else mGp.syncTaskEmptyMessage.setVisibility(TextView.GONE); + if (mGp.syncThreadActive) { + mMainTabLayout.setCurrentTabByName(mTabNameMessage); + } else { + mGp.messageListViewMoveToBottomRequired=true; + } + pd.dismiss(); + } + @Override + public void negativeResponse(Context c, Object[] o) { + pd.dismiss(); + finish(); + } + }); + ApplicationPasswordUtil.applicationPasswordAuthentication(mGp, mActivity, getSupportFragmentManager(), + mUtil, false, app_pswd_ntfy, ApplicationPasswordUtil.APPLICATION_PASSWORD_RESOURCE_START_APPLICATION); } @Override - public void negativeResponse(Context c, Object[] o) { - pd.dismiss(); - finish(); - } + public void negativeResponse(Context c, Object[] o) {} }); - ApplicationPasswordUtil.applicationPasswordAuthentication(mGp, mActivity, getSupportFragmentManager(), - mUtil, false, app_pswd_ntfy, ApplicationPasswordUtil.APPLICATION_PASSWORD_RESOURCE_START_APPLICATION); + openService(svc_ntfy); } + @Override - public void negativeResponse(Context c, Object[] o) {} + public void negativeResponse(Context context, Object[] objects) {} }); - openService(svc_ntfy); + checkRequiredPermissions(stg__ntfy); + } }); } @@ -387,22 +408,19 @@ public void negativeResponse(Context c, Object[] o) {} private void setMainListener() { setCallbackListener(); setActivityForeground(true); - if (restartType == NORMAL_START) { - setUiEnabled(); - checkStorageStatus(); - checkRequiredPermissions(); - if (mGp.syncThreadActive) mMainTabHost.setCurrentTabByTag(SMBSYNC2_TAB_NAME_MESSAGE); - } else if (restartType == RESTART_BY_KILLED) { - setUiEnabled(); + setUiEnabled(); + if (mRestoreType == RESTART_BY_KILLED) { restoreTaskData(); mUtil.addLogMsg("W", mContext.getString(R.string.msgs_smbsync_main_restart_by_killed)); - mMainTabHost.setCurrentTabByTag(SMBSYNC2_TAB_NAME_MESSAGE); - } else if (restartType == RESTART_BY_DESTROYED) { - setUiEnabled(); + mMainTabLayout.setCurrentTabByName(mTabNameMessage); + } else if (mRestoreType == RESTART_BY_DESTROYED) { restoreTaskData(); mUtil.addLogMsg("W", mContext.getString(R.string.msgs_smbsync_main_restart_by_destroyed)); - mMainTabHost.setCurrentTabByTag(SMBSYNC2_TAB_NAME_MESSAGE); + mMainTabLayout.setCurrentTabByName(mTabNameMessage); + } else { + if (mGp.syncThreadActive) mMainTabLayout.setCurrentTabByName(mTabNameMessage); } + checkStorageStatus(); setMessageContextButtonListener(); setMessageContextButtonNormalMode(); @@ -427,14 +445,13 @@ private void setMainListener() { deleteTaskData(); // ScheduleUtil.setSchedulerInfo(mGp, mUtil); - restartType = RESTART_WITH_OUT_INITIALYZE; reshowDialogWindow(); } @Override protected void onRestart() { super.onRestart(); - mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "resartStatus=" + restartType); + mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered, " + "mStartStatus=" + mStartStatus); } @Override @@ -486,7 +503,7 @@ protected void onDestroy() { if (isFinishing()) { deleteTaskData(); - mGp.logCatActive=false; +// mGp.logCatActive=false; // mGp.clearParms(); } mGp.appPasswordAuthValidated=false; @@ -797,8 +814,6 @@ private void reloadScreen(boolean force_reload) { createTabView(); - mMainTabHost.setOnTabChangedListener(null); - mGp.syncTaskAdapter = new AdapterSyncTask(mActivity, R.layout.sync_task_item_view, pfl, mGp); mGp.syncTaskAdapter.setShowCheckBox(vsa.prof_adapter_show_cb); mGp.syncTaskAdapter.notifyDataSetChanged(); @@ -816,7 +831,6 @@ private void reloadScreen(boolean force_reload) { initAdapterAndView(); restoreViewContent(vsa); - mMainTabHost.setOnTabChangedListener(new MainOnTabChange()); setMessageContextButtonListener(); setMessageContextButtonNormalMode(); @@ -835,13 +849,13 @@ private void reloadScreen(boolean force_reload) { setScheduleViewItemClickListener(); setScheduleViewLongClickListener(); - if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_TASK)) { + if (mCurrentTab.equals(mTabNameTask)) { if (mGp.syncHistoryAdapter.isShowCheckBox()) setHistoryContextButtonSelectMode(); else setHistoryContextButtonNormalMode(); if (mGp.syncTaskAdapter.isShowCheckBox()) setSyncTaskContextButtonSelectMode(); else setSyncTaskContextButtonNormalMode(); - } else if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_HIST)) { + } else if (mCurrentTab.equals(mTabNameHistory)) { if (mGp.syncTaskAdapter.isShowCheckBox()) setSyncTaskContextButtonSelectMode(); else setSyncTaskContextButtonNormalMode(); @@ -856,7 +870,7 @@ private void reloadScreen(boolean force_reload) { private ViewSaveArea saveViewContent() { ViewSaveArea vsa = new ViewSaveArea(); - vsa.current_tab_pos = mMainTabHost.getCurrentTab(); + vsa.current_tab_pos = mMainTabLayout.getSelectedTabPosition(); vsa.current_pager_pos = mMainViewPager.getCurrentItem(); vsa.prof_list_view_pos_x = mGp.syncTaskListView.getFirstVisiblePosition(); @@ -899,8 +913,11 @@ private ViewSaveArea saveViewContent() { } private void restoreViewContent(final ViewSaveArea vsa) { - mMainTabHost.setCurrentTab(vsa.current_tab_pos); + mWhileRestoreViewProcess=true; + mMainTabLayout.setCurrentTabByPosition(vsa.current_tab_pos); mMainViewPager.setCurrentItem(vsa.current_pager_pos); + mWhileRestoreViewProcess=false; + mGp.syncTaskListView.setSelectionFromTop(vsa.prof_list_view_pos_x, vsa.prof_list_view_pos_y); mGp.syncMessageListView.setSelectionFromTop(vsa.msg_list_view_pos_x, vsa.msg_list_view_pos_y); mGp.syncHistoryListView.setSelectionFromTop(vsa.sync_list_view_pos_x, vsa.sync_list_view_pos_y); @@ -967,42 +984,16 @@ private void initAdapterAndView() { private LinearLayout mMessageView; private CustomViewPager mMainViewPager; - private CustomViewPagerAdapter mMainViewPagerAdapter; - - private TabWidget mMainTabWidget; + private CustomTabLayout mMainTabLayout; + private boolean mWhileRestoreViewProcess=false; private void createTabView() { - mMainTabHost = (TabHost) findViewById(android.R.id.tabhost); - mMainTabHost.setup(); - mMainTabWidget = (TabWidget) findViewById(android.R.id.tabs); - - mMainTabWidget.setStripEnabled(false); - mMainTabWidget.setShowDividers(LinearLayout.SHOW_DIVIDER_NONE); - - CustomTabContentView tabViewProf = new CustomTabContentView(mContext, getString(R.string.msgs_tab_name_prof)); - mMainTabHost.addTab(mMainTabHost.newTabSpec(SMBSYNC2_TAB_NAME_TASK).setIndicator(tabViewProf).setContent(android.R.id.tabcontent)); - - CustomTabContentView tabViewSchedule = new CustomTabContentView(mContext, getString(R.string.msgs_tab_name_schedule)); - mMainTabHost.addTab(mMainTabHost.newTabSpec(SMBSYNC2_TAB_NAME_SCHEDULE).setIndicator(tabViewSchedule).setContent(android.R.id.tabcontent)); - - CustomTabContentView tabViewHist = new CustomTabContentView(mContext, getString(R.string.msgs_tab_name_history)); - mMainTabHost.addTab(mMainTabHost.newTabSpec(SMBSYNC2_TAB_NAME_HIST).setIndicator(tabViewHist).setContent(android.R.id.tabcontent)); - - CustomTabContentView tabViewMsg = new CustomTabContentView(mContext, getString(R.string.msgs_tab_name_msg)); - mMainTabHost.addTab(mMainTabHost.newTabSpec(SMBSYNC2_TAB_NAME_MESSAGE).setIndicator(tabViewMsg).setContent(android.R.id.tabcontent)); - LinearLayout ll_main = (LinearLayout) findViewById(R.id.main_screen_view); -// ll_main.setBackgroundColor(mGp.themeColorList.window_background_color_content); - LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); mSyncTaskView = (LinearLayout) vi.inflate(R.layout.main_sync_task, null); -// mSyncTaskView.setBackgroundColor(mGp.themeColorList.window_background_color_content); mScheduleView = (LinearLayout) vi.inflate(R.layout.main_schedule, null); -// mHistoryView.setBackgroundColor(mGp.themeColorList.window_background_color_content); mHistoryView = (LinearLayout) vi.inflate(R.layout.main_history, null); -// mHistoryView.setBackgroundColor(mGp.themeColorList.window_background_color_content); mMessageView = (LinearLayout) vi.inflate(R.layout.main_message, null); -// mMessageView.setBackgroundColor(mGp.themeColorList.window_background_color_content); mGp.syncMessageListView = (ListView) mMessageView.findViewById(R.id.main_message_list_view); mGp.syncMessageListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); @@ -1105,99 +1096,97 @@ public boolean onLongClick(View v) { createContextView(); - mMainViewPagerAdapter = new CustomViewPagerAdapter(mActivity, - new View[]{mSyncTaskView, mScheduleView, mHistoryView, mMessageView}); + mMainTabLayout = (CustomTabLayout) findViewById(R.id.main_tab_layout); + mMainTabLayout.addTab(mTabNameTask); + mMainTabLayout.addTab(mTabNameSchedule); + mMainTabLayout.addTab(mTabNameHistory); + mMainTabLayout.addTab(mTabNameMessage); + mMainTabLayout.setTabMode(TabLayout.MODE_SCROLLABLE); + mMainTabLayout.adjustTabWidth(); + + View[] tab_view=new View[]{mSyncTaskView, mScheduleView, mHistoryView, mMessageView}; + CustomViewPagerAdapter adapter = new CustomViewPagerAdapter(mActivity, tab_view); mMainViewPager = (CustomViewPager) findViewById(R.id.main_screen_pager); -// mMainViewPager.setBackgroundColor(mThemeColorList.window_color_background); - mMainViewPager.setAdapter(mMainViewPagerAdapter); - mMainViewPager.setOnPageChangeListener(new MainPageChangeListener()); - if (restartType == NORMAL_START) { - mMainTabHost.setCurrentTabByTag(SMBSYNC2_TAB_NAME_TASK); - mMainViewPager.setCurrentItem(0); - } - mMainTabHost.setOnTabChangedListener(new MainOnTabChange()); + mMainViewPager.setAdapter(adapter); + mMainViewPager.setOffscreenPageLimit(tab_view.length); + mMainViewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() { + @Override + public void onPageSelected(int position) { + mUtil.addDebugMsg(2,"I","onPageSelected entered, pos="+position); + mMainTabLayout.setCurrentTabByPosition(position); + if (isUiEnabled()) setUiEnabled(); + } - } + @Override + public void onPageScrollStateChanged(int state) { + mUtil.addDebugMsg(2,"I","onPageScrollStateChanged entered, state="+state); + } - private void setButtonColor(Button btn) { -// if (Build.VERSION.SDK_INT<11) { -// btn.setBackgroundColor(Color.DKGRAY); -// } - } + @Override + public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { + mUtil.addDebugMsg(2,"I","onPageScrolled entered, pos="+position); + } + }); - private class MainOnTabChange implements OnTabChangeListener { - @Override - public void onTabChanged(String tabId) { - mUtil.addDebugMsg(2, "I", CommonUtilities.getExecutedMethodName() + " entered. tab=" + tabId + ",v=" + mCurrentTab); + mMainTabLayout.setCurrentTabByName(mTabNameTask); + mMainViewPager.setCurrentItem(0); - mActionBar.setIcon(R.drawable.smbsync); - mActionBar.setHomeButtonEnabled(false); - mActionBar.setTitle(R.string.app_name); + mMainTabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() { + @Override + public void onTabSelected(TabLayout.Tab tab) { + String tabId=(String)tab.getTag(); + mUtil.addDebugMsg(2, "I", CommonUtilities.getExecutedMethodName() + " entered. tab=" + tabId + ",v=" + mCurrentTab); - mMainViewPager.setCurrentItem(mMainTabHost.getCurrentTab()); + mActionBar.setIcon(R.drawable.smbsync); + mActionBar.setHomeButtonEnabled(false); + mActionBar.setTitle(R.string.app_name); - if (mGp.syncTaskAdapter.isShowCheckBox()) { - mGp.syncTaskAdapter.setShowCheckBox(false); - mGp.syncTaskAdapter.setAllItemChecked(false); - mGp.syncTaskAdapter.notifyDataSetChanged(); - setSyncTaskContextButtonNormalMode(); - } + mMainViewPager.setCurrentItem(mMainTabLayout.getSelectedTabPosition()); - if (mGp.syncScheduleAdapter.isSelectMode()) { - mGp.syncScheduleAdapter.setSelectMode(false); - mGp.syncScheduleAdapter.unselectAll(); - setScheduleContextButtonNormalMode(); - } + if (!mWhileRestoreViewProcess) { + if (mGp.syncTaskAdapter.isShowCheckBox()) { + mGp.syncTaskAdapter.setShowCheckBox(false); + mGp.syncTaskAdapter.setAllItemChecked(false); + mGp.syncTaskAdapter.notifyDataSetChanged(); + setSyncTaskContextButtonNormalMode(); + } - if (mGp.syncHistoryAdapter.isShowCheckBox()) { - mGp.syncHistoryAdapter.setShowCheckBox(false); - mGp.syncHistoryAdapter.setAllItemChecked(false); - mGp.syncHistoryAdapter.notifyDataSetChanged(); - setHistoryContextButtonNormalMode(); - } + if (mGp.syncScheduleAdapter.isSelectMode()) { + mGp.syncScheduleAdapter.setSelectMode(false); + mGp.syncScheduleAdapter.unselectAll(); + mGp.syncScheduleAdapter.notifyDataSetChanged(); + setScheduleContextButtonNormalMode(); + } - if (tabId.equals(SMBSYNC2_TAB_NAME_MESSAGE)) { - mGp.syncMessageListView.requestFocusFromTouch(); - if (!mGp.freezeMessageViewScroll) { - synchronized (mGp.syncMessageList) { - if (mGp.messageListViewMoveToBottomRequired) { - if (mGp!=null && mGp.syncMessageListView !=null && mGp.syncMessageListAdapter !=null) { - mGp.uiHandler.post(new Runnable() { - @Override - public void run() { - mGp.syncMessageListView.setSelection(mGp.syncMessageListAdapter.getCount()-1); - } - }); - } - mGp.messageListViewMoveToBottomRequired =false; - } + if (mGp.syncHistoryAdapter.isShowCheckBox()) { + mGp.syncHistoryAdapter.setShowCheckBox(false); + mGp.syncHistoryAdapter.setAllItemChecked(false); + mGp.syncHistoryAdapter.notifyDataSetChanged(); + setHistoryContextButtonNormalMode(); + } else { + mGp.syncHistoryAdapter.notifyDataSetChanged(); } } + + mCurrentTab = tabId; + refreshOptionMenu(); } - mCurrentTab = tabId; - if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_HIST)) mGp.syncHistoryAdapter.notifyDataSetChanged(); - refreshOptionMenu(); - } - } - private class MainPageChangeListener implements ViewPager.OnPageChangeListener { - @Override - public void onPageSelected(int position) { - mUtil.addDebugMsg(2,"I","onPageSelected entered, pos="+position); - mMainTabWidget.setCurrentTab(position); - mMainTabHost.setCurrentTab(position); - if (isUiEnabled()) setUiEnabled(); - } + @Override + public void onTabUnselected(TabLayout.Tab tab) { + } - @Override - public void onPageScrollStateChanged(int state) { - mUtil.addDebugMsg(2,"I","onPageScrollStateChanged entered, state="+state); - } + @Override + public void onTabReselected(TabLayout.Tab tab) { + } + }); - @Override - public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { - mUtil.addDebugMsg(2,"I","onPageScrolled entered, pos="+position); - } + } + + private void setButtonColor(Button btn) { +// if (Build.VERSION.SDK_INT<11) { +// btn.setBackgroundColor(Color.DKGRAY); +// } } @Override @@ -1292,24 +1281,24 @@ public boolean onPrepareOptionsMenu(Menu menu) { // } // LogCatUtil.prepareOptionMenu(mGp, mUtil, menu); - if (Build.VERSION.SDK_INT >= 27) { - if (Build.VERSION.SDK_INT>=29) { - if (checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED && - checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)==PackageManager.PERMISSION_GRANTED) { - menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(false); - } else { - menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(true); - } - } else { - if (checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED) { - menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(false); - } else { - menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(true); - } - } - } else { - menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(false); - } +// if (Build.VERSION.SDK_INT >= 27) { +// if (Build.VERSION.SDK_INT>=29) { +// if (checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED && +// checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)==PackageManager.PERMISSION_GRANTED) { +// menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(false); +// } else { +// menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(true); +// } +// } else { +// if (checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED) { +// menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(false); +// } else { +// menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(true); +// } +// } +// } else { +// menu.findItem(R.id.menu_top_request_grant_coarse_location).setVisible(false); +// } if (mGp.settingScheduleSyncEnabled) menu.findItem(R.id.menu_top_scheduler).setIcon(R.drawable.ic_64_schedule); else menu.findItem(R.id.menu_top_scheduler).setIcon(R.drawable.ic_64_schedule_disabled); @@ -1322,7 +1311,7 @@ public boolean onPrepareOptionsMenu(Menu menu) { //only show top sync button if there is at least one auto and valid sync task //in sync task select mode: always show the top sync button if there is at least one valid sync task //if we select non valid sync tasks, on start, a proper message is shown to help user understand the way button works - if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_TASK) && mGp.syncTaskList!=null && mGp.syncTaskList.size()>0) { + if (mCurrentTab.equals(mTabNameTask) && mGp.syncTaskList!=null && mGp.syncTaskList.size()>0) { menu.findItem(R.id.menu_top_sync).setVisible(false); for(SyncTaskItem sti:mGp.syncTaskList) { if ((sti.isSyncTaskAuto() && !sti.isSyncTestMode()) || @@ -1340,7 +1329,7 @@ public boolean onPrepareOptionsMenu(Menu menu) { //only show top start schedule button if there is at least one enabled and valid schedule //in schedule select mode: always show the start schedule button if there is at least one valid schedule //if we select non valid schedules, on start, a proper message is shown to help user understand the way button works - if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_SCHEDULE) && mGp.syncScheduleList!=null && mGp.syncScheduleList.size()>0) { + if (mCurrentTab.equals(mTabNameSchedule) && mGp.syncScheduleList!=null && mGp.syncScheduleList.size()>0) { menu.findItem(R.id.menu_top_scheduler).setVisible(true); menu.findItem(R.id.menu_top_exec_schedule).setVisible(false); for(ScheduleItem si:mGp.syncScheduleList) { @@ -1533,10 +1522,10 @@ public void negativeResponse(Context context, Object[] objects) {} case R.id.menu_top_select_storage: reselectSdcard("", ""); return true; - case R.id.menu_top_request_grant_coarse_location: - mGp.setSettingGrantCoarseLocationRequired(mContext, true); - checkLocationPermission(false); - return true; +// case R.id.menu_top_request_grant_coarse_location: +// mGp.setSettingGrantCoarseLocationRequired(mContext, true); +// checkLocationPermission(false); +// return true; // case R.id.menu_top_start_logcat: // LogCatUtil.startLogCat(mGp, mGp.getLogDirName(),"logcat.txt"); // return true; @@ -1903,15 +1892,15 @@ private void setContextButtonNormalMode() { } private void processHomeButtonPress() { - if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_TASK)) { + if (mCurrentTab.equals(mTabNameTask)) { if (mGp.syncTaskAdapter.isShowCheckBox()) { mGp.syncTaskAdapter.setShowCheckBox(false); mGp.syncTaskAdapter.notifyDataSetChanged(); setSyncTaskContextButtonNormalMode(); } - } else if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_MESSAGE)) { - } else if (mCurrentTab.equals(SMBSYNC2_TAB_NAME_HIST)) { + } else if (mCurrentTab.equals(mTabNameMessage)) { + } else if (mCurrentTab.equals(mTabNameHistory)) { if (mGp.syncHistoryAdapter.isShowCheckBox()) { mGp.syncHistoryAdapter.setShowCheckBox(false); mGp.syncHistoryAdapter.notifyDataSetChanged(); @@ -2014,81 +2003,83 @@ private void aboutSMBSync() { title.setText(getString(R.string.msgs_dlg_title_about) + " (Ver " + SystemInfo.getApplVersionName(mContext) + ")"); // get our tabHost from the xml - final TabHost tab_host = (TabHost) dialog.findViewById(R.id.about_tab_host); - tab_host.setup(); - - final TabWidget tab_widget = (TabWidget) dialog.findViewById(android.R.id.tabs); - - tab_widget.setStripEnabled(false); - tab_widget.setShowDividers(LinearLayout.SHOW_DIVIDER_NONE); - - CustomTabContentView tabViewProf = new CustomTabContentView(mContext, getString(R.string.msgs_about_dlg_func_btn)); - tab_host.addTab(tab_host.newTabSpec("func").setIndicator(tabViewProf).setContent(android.R.id.tabcontent)); + final CustomTabLayout tab_layout = (CustomTabLayout) dialog.findViewById(R.id.tab_layout); + tab_layout.addTab(mContext.getString(R.string.msgs_about_dlg_func_btn)); + tab_layout.addTab(mContext.getString(R.string.msgs_about_dlg_privacy_btn)); + tab_layout.addTab(mContext.getString(R.string.msgs_about_dlg_change_btn)); - CustomTabContentView tabViewPrivacy = new CustomTabContentView(mContext, getString(R.string.msgs_about_dlg_privacy_btn)); - tab_host.addTab(tab_host.newTabSpec("privacy").setIndicator(tabViewPrivacy).setContent(android.R.id.tabcontent)); - - CustomTabContentView tabViewHist = new CustomTabContentView(mContext, getString(R.string.msgs_about_dlg_change_btn)); - tab_host.addTab(tab_host.newTabSpec("change").setIndicator(tabViewHist).setContent(android.R.id.tabcontent)); + tab_layout.adjustTabWidth(); LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); - LinearLayout ll_func = (LinearLayout) vi.inflate(R.layout.about_dialog_func, null); - LinearLayout ll_privacy = (LinearLayout) vi.inflate(R.layout.about_dialog_privacy, null); - LinearLayout ll_change = (LinearLayout) vi.inflate(R.layout.about_dialog_change, null); - int zf=120; + int zf=(int)((float)100* GlobalParameters.getFontScaleFactorValue(mActivity)); + LinearLayout ll_func = (LinearLayout) vi.inflate(R.layout.about_dialog_func, null); final WebView func_view = (WebView) ll_func.findViewById(R.id.about_dialog_function); func_view.loadUrl("file:///android_asset/" + getString(R.string.msgs_dlg_title_about_func_desc)); func_view.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY); +// func_view.getSettings().setBuiltInZoomControls(true); +// func_view.getSettings().setDisplayZoomControls(true); +// func_view.getSettings().setSupportZoom(true); // func_view.getSettings().setBuiltInZoomControls(true); func_view.getSettings().setTextZoom(zf); - + LinearLayout ll_privacy = (LinearLayout) vi.inflate(R.layout.about_dialog_privacy, null); final WebView privacy_view = (WebView) ll_privacy.findViewById(R.id.about_dialog_privacy); privacy_view.loadUrl("file:///android_asset/" + getString(R.string.msgs_dlg_title_about_privacy_desc)); privacy_view.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY); -// func_view.getSettings().setBuiltInZoomControls(true); - privacy_view.getSettings().setTextZoom(zf); +// privacy_view.getSettings().setBuiltInZoomControls(true); + func_view.getSettings().setTextZoom(zf); - final WebView change_view = - (WebView) ll_change.findViewById(R.id.about_dialog_change_history); + LinearLayout ll_change = (LinearLayout) vi.inflate(R.layout.about_dialog_change, null); + final WebView change_view = (WebView) ll_change.findViewById(R.id.about_dialog_change_history); change_view.loadUrl("file:///android_asset/" + getString(R.string.msgs_dlg_title_about_change_desc)); change_view.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY); - change_view.getSettings().setTextZoom(zf); // change_view.getSettings().setBuiltInZoomControls(true); + func_view.getSettings().setTextZoom(zf); - final CustomViewPagerAdapter mAboutViewPagerAdapter = new CustomViewPagerAdapter(mActivity, + final CustomViewPagerAdapter adapter = new CustomViewPagerAdapter(mActivity, new WebView[]{func_view, privacy_view, change_view}); - final CustomViewPager mAboutViewPager = (CustomViewPager) dialog.findViewById(R.id.about_view_pager); + final CustomViewPager viewPager = (CustomViewPager) dialog.findViewById(R.id.about_view_pager); // mMainViewPager.setBackgroundColor(mThemeColorList.window_color_background); - mAboutViewPager.setOffscreenPageLimit(3); - mAboutViewPager.setAdapter(mAboutViewPagerAdapter); - mAboutViewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() { + viewPager.setAdapter(adapter); + viewPager.setOffscreenPageLimit(3); +// viewPager.setSwipeEnabled(false); + viewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener(){ @Override public void onPageSelected(int position) { -// mUtil.addDebugMsg(2,"I","onPageSelected entered, pos="+position); - tab_widget.setCurrentTab(position); - tab_host.setCurrentTab(position); +// mUtil.addDebugMsg(2,"I","onPageSelected entered, pos="+position); + tab_layout.getTabAt(position).select(); } @Override public void onPageScrollStateChanged(int state) { -// mUtil.addDebugMsg(2,"I","onPageScrollStateChanged entered, state="+state); +// mUtil.addDebugMsg(2,"I","onPageScrollStateChanged entered, state="+state); } @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { -// mUtil.addDebugMsg(2,"I","onPageScrolled entered, pos="+position); +// util.addDebugMsg(2,"I","onPageScrolled entered, pos="+position); } }); - tab_host.setOnTabChangedListener(new OnTabChangeListener() { + tab_layout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener(){ + @Override + public void onTabSelected(TabLayout.Tab tab) { +// mUtil.addDebugMsg(2,"I","onTabSelected entered, state="+tab); + viewPager.setCurrentItem(tab.getPosition()); + } + + @Override + public void onTabUnselected(TabLayout.Tab tab) { +// mUtil.addDebugMsg(2,"I","onTabUnselected entered, state="+tab); + } + @Override - public void onTabChanged(String tabId) { - mUtil.addDebugMsg(2, "I", "onTabchanged entered. tab=" + tabId); - mAboutViewPager.setCurrentItem(tab_host.getCurrentTab()); + public void onTabReselected(TabLayout.Tab tab) { +// mUtil.addDebugMsg(2,"I","onTabReselected entered, state="+tab); } + }); final Button btnOk = (Button) dialog.findViewById(R.id.about_dialog_btn_ok); @@ -2113,22 +2104,22 @@ public void onCancel(DialogInterface arg0) { } private void terminateApplication() { - if (mMainTabHost.getCurrentTabTag().equals(SMBSYNC2_TAB_NAME_TASK)) {// + if (mMainTabLayout.getSelectedTabName().equals(mTabNameTask)) {// if (mGp.syncTaskAdapter.isShowCheckBox()) { mGp.syncTaskAdapter.setShowCheckBox(false); mGp.syncTaskAdapter.notifyDataSetChanged(); setSyncTaskContextButtonNormalMode(); return; } - } else if (mMainTabHost.getCurrentTabTag().equals(SMBSYNC2_TAB_NAME_SCHEDULE)) { + } else if (mMainTabLayout.getSelectedTabName().equals(mTabNameSchedule)) { if (mGp.syncScheduleAdapter.isSelectMode()) { mGp.syncScheduleAdapter.setSelectMode(false); mGp.syncScheduleAdapter.notifyDataSetChanged(); setScheduleContextButtonNormalMode(); return; } - } else if (mMainTabHost.getCurrentTabTag().equals(SMBSYNC2_TAB_NAME_MESSAGE)) { - } else if (mMainTabHost.getCurrentTabTag().equals(SMBSYNC2_TAB_NAME_HIST)) { + } else if (mMainTabLayout.getSelectedTabName().equals(mTabNameMessage)) { + } else if (mMainTabLayout.getSelectedTabName().equals(mTabNameHistory)) { if (mGp.syncHistoryAdapter.isShowCheckBox()) { mGp.syncHistoryAdapter.setShowCheckBox(false); mGp.syncHistoryAdapter.notifyDataSetChanged(); @@ -2214,6 +2205,9 @@ public void negativeResponse(Context context, Object[] objects) {} ntfy); } + mGp.setDisplayFontScale(mActivity); + reloadScreen(false); + if (mGp.settingFixDeviceOrientationToPortrait) setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); else setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED); @@ -2237,7 +2231,6 @@ private void listSettingsOption() { ", settingGrantCoarseLocationRequired="+mGp.settingGrantLocationRequired + ", settingSupressAppSpecifiDirWarning=" + mGp.settingSupressAppSpecifiDirWarning + - ", settingSupressLocationServiceWarning=" + mGp.settingSupressLocationServiceWarning + ", settingFixDeviceOrientationToPortrait=" + mGp.settingFixDeviceOrientationToPortrait + ", settingForceDeviceTabletViewInLandscape=" + mGp.settingForceDeviceTabletViewInLandscape + ", settingScreenThemeLanguage=" + mGp.settingScreenThemeLanguage + " (value=" + mGp.settingScreenThemeLanguageValue + ")" + @@ -2326,14 +2319,9 @@ public void negativeResponse(Context c, Object[] o) { } private final int REQUEST_PERMISSIONS_WRITE_EXTERNAL_STORAGE = 1; - private final int REQUEST_PERMISSIONS_ACCESS_LOCATION = 2; - private final int REQUEST_PERMISSIONS_ACCESS_BACKGROUND_LOCATION =3; - /* - Target SDK 29縺ォ螟画峩縺ォ繧医jACCESS_COARSE_LOCATION縺九iACCESS_FINE_LOCATION縺ォ螟画峩 - https://developer.android.com/guide/topics/connectivity/wifi-scan?hl=ja - */ - private void checkRequiredPermissions() { + private NotifyEvent mNtfyExternalStoragePermission=null; + private void checkRequiredPermissions(final NotifyEvent p_ntfy) { if (Build.VERSION.SDK_INT >= 23) { mUtil.addDebugMsg(1, "I", "Prermission WriteExternalStorage=" + checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) + ", WakeLock=" + checkSelfPermission(Manifest.permission.WAKE_LOCK)); @@ -2342,8 +2330,8 @@ private void checkRequiredPermissions() { ntfy.setListener(new NotifyEventListener() { @Override public void positiveResponse(Context c, Object[] o) { - requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, - REQUEST_PERMISSIONS_WRITE_EXTERNAL_STORAGE); + mNtfyExternalStoragePermission=p_ntfy; + requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, REQUEST_PERMISSIONS_WRITE_EXTERNAL_STORAGE); } @Override @@ -2368,110 +2356,10 @@ public void negativeResponse(Context c, Object[] o) {} mContext.getString(R.string.msgs_main_permission_external_storage_title), mContext.getString(R.string.msgs_main_permission_external_storage_request_msg), ntfy); } else { -// Hide location permission at start time -// checkLocationPermission(false); + p_ntfy.notifyToListener(true, null); } } else { -// Hide location permission at start time -// checkLocationPermission(false); - } - } - - public void checkLocationPermission(boolean force_permission) { - if (Build.VERSION.SDK_INT >= 27) { - if (Build.VERSION.SDK_INT >= 29) { - mUtil.addDebugMsg(1, "I", "Permission LocationCoarse=" + checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)+ - ", Backgrund Location=" + checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)+ - ", settingGrantCoarseLocationRequired="+mGp.settingGrantLocationRequired); - if (checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)!=PackageManager.PERMISSION_GRANTED && - (mGp.settingGrantLocationRequired || force_permission)) { - NotifyEvent ntfy = new NotifyEvent(mContext); - ntfy.setListener(new NotifyEventListener() { - @Override - public void positiveResponse(Context c, Object[] o) { - requestPermissions(new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, REQUEST_PERMISSIONS_ACCESS_LOCATION); - } - - @Override - public void negativeResponse(Context c, Object[] o) { - mGp.setSettingGrantCoarseLocationRequired(mContext, false); - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); - } - }); - if (Build.VERSION.SDK_INT>=30) { - showLocationPermissionMessage(mContext.getString(R.string.msgs_main_permission_coarse_location_title), - mContext.getString(R.string.msgs_main_permission_coarse_location_request_msg_api30), - mContext.getString(R.string.msgs_main_location_location_permission_screen_shot), ntfy); - } else { - mUtil.showCommonDialog(true, "W", - mContext.getString(R.string.msgs_main_permission_coarse_location_title), - mContext.getString(R.string.msgs_main_permission_coarse_location_request_msg), ntfy); - } - } else { - if (checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)!=PackageManager.PERMISSION_GRANTED) { - checkBackgroundLocationPermission(null); - } - } - } else { - mUtil.addDebugMsg(1, "I", "Permission LocationCoarse=" + checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)+ - ", settingGrantCoarseLocationRequired="+mGp.settingGrantLocationRequired); - if (checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)!=PackageManager.PERMISSION_GRANTED && - (mGp.settingGrantLocationRequired || force_permission)) { - NotifyEvent ntfy = new NotifyEvent(mContext); - ntfy.setListener(new NotifyEventListener() { - @Override - public void positiveResponse(Context c, Object[] o) { - requestPermissions(new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, REQUEST_PERMISSIONS_ACCESS_LOCATION); - } - - @Override - public void negativeResponse(Context c, Object[] o) { - mGp.setSettingGrantCoarseLocationRequired(mContext, false); - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); - } - }); - mUtil.showCommonDialog(true, "W", - mContext.getString(R.string.msgs_main_permission_coarse_location_title), - mContext.getString(R.string.msgs_main_permission_coarse_location_request_msg), ntfy); - } else { - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); - } - } - } - } - - public void checkBackgroundLocationPermission(final NotifyEvent p_ntfy) { - mUtil.addDebugMsg(1, "I", "Background location permission=" + checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)); - if (checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)!=PackageManager.PERMISSION_GRANTED && - (mGp.settingGrantLocationRequired)) { - NotifyEvent ntfy_bg_location_request = new NotifyEvent(mContext); - ntfy_bg_location_request.setListener(new NotifyEventListener() { - @Override - public void positiveResponse(Context c, Object[] o) { - requestPermissions(new String[]{Manifest.permission.ACCESS_BACKGROUND_LOCATION}, REQUEST_PERMISSIONS_ACCESS_BACKGROUND_LOCATION); - } - - @Override - public void negativeResponse(Context c, Object[] o) { - mGp.setSettingGrantCoarseLocationRequired(mContext, false); - if (p_ntfy!=null) p_ntfy.notifyToListener(true, null); - } - }); - - if (checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)!=PackageManager.PERMISSION_GRANTED) { - if (Build.VERSION.SDK_INT>=30) { - showLocationPermissionMessage(mContext.getString(R.string.msgs_main_permission_background_location_title), - mContext.getString(R.string.msgs_main_permission_background_location_request_msg_api30), - mContext.getString(R.string.msgs_main_location_background_location_permission_screen_shot), ntfy_bg_location_request); - } else { - mUtil.showCommonDialog(true, "W", - mContext.getString(R.string.msgs_main_permission_background_location_title), - mContext.getString(R.string.msgs_main_permission_background_location_request_msg), - ntfy_bg_location_request); - } - } else { - if (p_ntfy!=null) p_ntfy.notifyToListener(true, null); - } + p_ntfy.notifyToListener(true, null); } } @@ -2484,9 +2372,7 @@ public void onRequestPermissionsResult(int requestCode, String[] permissions, in mUiHandler.postDelayed(new Runnable() { @Override public void run() { - checkStorageStatus(); -// Hide location permission at start time -// checkLocationPermission(false); + if (mNtfyExternalStoragePermission!=null) mNtfyExternalStoragePermission.notifyToListener(true, null); } }, 500); } else { @@ -2505,50 +2391,6 @@ public void negativeResponse(Context c, Object[] o) {} mContext.getString(R.string.msgs_main_permission_external_storage_title), mContext.getString(R.string.msgs_main_permission_external_storage_denied_msg), ntfy_term); } - } else if (REQUEST_PERMISSIONS_ACCESS_LOCATION == requestCode) { - if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { - if (Build.VERSION.SDK_INT>=29) { - checkBackgroundLocationPermission(null); - } else { - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); - } - } else { - mGp.setSettingGrantCoarseLocationRequired(mContext, false); - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); -// NotifyEvent ntfy_deny=new NotifyEvent(mContext); -// ntfy_deny.setListener(new NotifyEventListener() { -// @Override -// public void positiveResponse(Context context, Object[] objects) { -// mGp.setSettingGrantCoarseLocationRequired(mContext, false); -// SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); -// } -// @Override -// public void negativeResponse(Context context, Object[] objects) {} -// }); -// mUtil.showCommonDialog(false, "W", -// mContext.getString(R.string.msgs_main_permission_coarse_location_title), -// mContext.getString(R.string.msgs_main_permission_coarse_location_denied_msg), ntfy_deny); - } - } else if (REQUEST_PERMISSIONS_ACCESS_BACKGROUND_LOCATION == requestCode) { - if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); - } else { - mGp.setSettingGrantCoarseLocationRequired(mContext, false); - SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); -// NotifyEvent ntfy_deny=new NotifyEvent(mContext); -// ntfy_deny.setListener(new NotifyEventListener() { -// @Override -// public void positiveResponse(Context context, Object[] objects) { -// mGp.setSettingGrantCoarseLocationRequired(mContext, false); -// SyncTaskEditor.checkLocationServiceWarning(mActivity, mGp, mUtil); -// } -// @Override -// public void negativeResponse(Context context, Object[] objects) {} -// }); -// mUtil.showCommonDialog(false, "W", -// mContext.getString(R.string.msgs_main_permission_background_location_title), -// mContext.getString(R.string.msgs_main_permission_background_location_denied_msg), ntfy_deny); - } } } @@ -3197,7 +3039,7 @@ public void negativeResponse(Context context, Object[] objects) { String del_list = ""; for (int i = 0; i < mGp.syncScheduleAdapter.getCount(); i++) { if (mGp.syncScheduleAdapter.getItem(i).isChecked) { - del_list += mGp.syncScheduleAdapter.getItem(i).scheduleName + "\n"; + del_list += "- "+mGp.syncScheduleAdapter.getItem(i).scheduleName + "\n"; } } mUtil.showCommonDialog(true, "W", @@ -3236,7 +3078,7 @@ public void negativeResponse(Context context, Object[] objects) { String del_list = ""; for (int i = 0; i { private ColorStateList mTextColor=null; - public AdapterSyncTask(Context c, int textViewResourceId, - ArrayList objects, GlobalParameters gp) { + public AdapterSyncTask(Context c, int textViewResourceId, ArrayList objects, GlobalParameters gp) { super(c, textViewResourceId, objects); mContext = c; id = textViewResourceId; @@ -298,15 +297,7 @@ else if (o.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_ARCHIVE)) holder.tv_last_sync_result.setTextColor(mThemeColorList.text_color_warning); } - if (!o.isSyncTaskError()) { - if (o.isSyncTestMode()) { - if (ThemeUtil.isLightThemeUsed(mContext)) - holder.ll_view.setBackgroundColor(Color.argb(64, 255, 32, 255)); - else holder.ll_view.setBackgroundColor(Color.argb(64, 255, 0, 128)); - } - } else { - holder.ll_view.setBackgroundColor(Color.argb(64, 255, 0, 0)); - } + boolean ap_list_specified=false; String master_dir = o.getMasterDirectoryName().startsWith("/")?o.getMasterDirectoryName().substring(1):o.getMasterDirectoryName(); if (o.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL)) { if (master_dir.equals("")) holder.tv_row_master.setText(o.getMasterLocalMountPoint()); @@ -339,6 +330,7 @@ else if (o.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_ARCHIVE)) holder.tv_row_master.setText("smb://" + host + "/" + share + "/"+ master_dir); } holder.iv_row_image_master.setImageResource(R.drawable.ic_32_server); + if (o.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) ap_list_specified=true; } holder.tv_row_master.requestLayout(); String target_dir = o.getTargetDirectoryName().startsWith("/")?o.getTargetDirectoryName().substring(1):o.getTargetDirectoryName(); @@ -370,8 +362,7 @@ else if (o.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_ARCHIVE)) holder.tv_row_target.setText((o.getTargetLocalMountPoint() + o.getTargetZipOutputFileName())); else holder.tv_row_target.setText((o.getTargetLocalMountPoint() + o.getTargetZipOutputFileName())); - if (o.isTargetZipUseExternalSdcard() && - mGp.safMgr.getSdcardRootPath().equals(SafManager.UNKNOWN_SDCARD_DIRECTORY)) { + if (o.isTargetZipUseExternalSdcard() && mGp.safMgr.getSdcardRootPath().equals(SafManager.UNKNOWN_SDCARD_DIRECTORY)) { holder.iv_row_image_target.setImageResource(R.drawable.ic_32_sdcard_bad); sync_btn_disable=true; } else { @@ -386,7 +377,16 @@ else if (o.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_ARCHIVE)) holder.tv_row_target.setText("smb://" + host + "/" + share + "/"+ target_dir); } holder.iv_row_image_target.setImageResource(R.drawable.ic_32_server); + if (o.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) ap_list_specified=true; + } + if (ap_list_specified) { + holder.tv_last_sync_result.setText(mContext.getString(R.string.msgs_main_permission_ap_list_no_longer_available_task_list_msg)); + holder.tv_last_sync_result.setTextColor(mThemeColorList.text_color_warning); + sync_btn_disable=true; + } else { + holder.tv_last_sync_result.setTextColor(mTextColor); } + holder.tv_row_target.requestLayout(); if (isShowCheckBox) { @@ -400,6 +400,16 @@ else if (o.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_ARCHIVE)) holder.ib_row_sync.setVisibility(CheckBox.VISIBLE); } } + + if (!o.isSyncTaskError()) { + if (o.isSyncTestMode()) { + if (ThemeUtil.isLightThemeUsed(mContext)) holder.ll_view.setBackgroundColor(Color.argb(64, 255, 32, 255)); + else holder.ll_view.setBackgroundColor(Color.argb(64, 255, 0, 128)); + } + } else { + holder.ll_view.setBackgroundColor(Color.argb(64, 255, 0, 0)); + } + final int p = position; holder.ib_row_sync.setOnClickListener(new View.OnClickListener() { diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ApplicationPasswordUtil.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ApplicationPasswordUtil.java index 91b7869e..622ad2d6 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ApplicationPasswordUtil.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ApplicationPasswordUtil.java @@ -1,3 +1,25 @@ +/* +The MIT License (MIT) +Copyright (c) 2011 Sentaroh + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or +substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +*/ package com.sentaroh.android.SMBSync2; import android.app.Activity; diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CommonUtilities.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CommonUtilities.java index b6183e1e..ea4d4431 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CommonUtilities.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CommonUtilities.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -223,12 +223,12 @@ static public String convertDateTimeWithTimzone(String time_zon_name, long time_ final public static String getWifiSsidName(WifiManager wm) { String wssid = ""; - if (wm.isWifiEnabled()) { - String tssid = wm.getConnectionInfo().getSSID(); - if (tssid == null || tssid.equals("")) wssid = ""; - else wssid = tssid.replaceAll("\"", ""); - if (wssid.equals("0x")) wssid = ""; - } +// if (wm.isWifiEnabled()) { +// String tssid = wm.getConnectionInfo().getSSID(); +// if (tssid == null || tssid.equals("")) wssid = ""; +// else wssid = tssid.replaceAll("\"", ""); +// if (wssid.equals("0x")) wssid = ""; +// } return wssid; } @@ -236,18 +236,6 @@ static public ArrayList listSystemInfo(Context c, GlobalParameters gp) { ArrayList out= SystemInfo.listSystemInfo(c, gp.safMgr); - if (Build.VERSION.SDK_INT>=27) { - out.add("setSettingGrantLocationRequired="+gp.settingGrantLocationRequired); - if (Build.VERSION.SDK_INT==27 || Build.VERSION.SDK_INT==28) { - out.add("ACCESS_COARSE_LOCATION Permission="+(c.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED)); - } else if (Build.VERSION.SDK_INT>=29) { - out.add("ACCESS_FINE_LOCATION Permission="+(c.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)==PackageManager.PERMISSION_GRANTED)); - boolean backgroundLocationPermissionApproved = c.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)== PackageManager.PERMISSION_GRANTED; - out.add("ACCESS_BACKGROUND_LOCATION="+backgroundLocationPermissionApproved); - } - out.add("LocationService enabled="+isLocationServiceEnabled(c, gp)+", warning="+gp.settingSupressLocationServiceWarning); - } - if (Build.VERSION.SDK_INT >= 28) { UsageStatsManager usageStatsManager = (UsageStatsManager) c.getSystemService(USAGE_STATS_SERVICE); if (usageStatsManager != null) { @@ -260,9 +248,7 @@ static public ArrayList listSystemInfo(Context c, GlobalParameters gp) { WifiManager wm=(WifiManager)c.getSystemService(Context.WIFI_SERVICE); try { - String ssid=""; - if (wm.isWifiEnabled() && wm.getConnectionInfo()!=null) ssid=wm.getConnectionInfo().getSSID(); - out.add(" WiFi="+wm.isWifiEnabled()+", SSID="+ssid); + out.add(" WiFi Enabled="+wm.isWifiEnabled()); } catch(Exception e) { out.add(" WiFi status obtain error, error="+e.getMessage()); } @@ -298,13 +284,12 @@ static public ArrayList listSystemInfo(Context c, GlobalParameters gp) { out.add(" Write sync result log="+gp.settingWriteSyncResultLog); out.add(" No compress file type="+gp.settingNoCompressFileType); out.add(" Prevent sync start delay="+gp.settingPreventSyncStartDelay); - out.add(" Suppress Location service warning="+gp.settingSupressLocationServiceWarning); out.add(" Management file directory="+gp.settingMgtFileDir); out.add(""); out.add(" Debug level="+gp.settingDebugLevel); out.add(" Log option="+gp.settingLogOption); - out.add(" Logcat option="+gp.settingPutLogcatOption); +// out.add(" Logcat option="+gp.settingPutLogcatOption); out.add(" Log max file count="+gp.settingLogMaxFileCount); out.add(""); @@ -594,14 +579,14 @@ public String getConnectedWifiSsid() { String ret = ""; WifiManager mWifi = (WifiManager) mContext.getSystemService(Context.WIFI_SERVICE); String ssid = ""; - if (mWifi.isWifiEnabled()) { - ssid = mWifi.getConnectionInfo().getSSID(); - if (ssid != null && - !ssid.equals("0x") && - !ssid.equals("") && - !ssid.equals("")) ret = ssid; -// Log.v("","ssid="+ssid); - } +// if (mWifi.isWifiEnabled()) { +// ssid = mWifi.getConnectionInfo().getSSID(); +// if (ssid != null && +// !ssid.equals("0x") && +// !ssid.equals("") && +// !ssid.equals("")) ret = ssid; +//// Log.v("","ssid="+ssid); +// } addDebugMsg(2, "I", "getConnectedWifiSsid WifiEnabled=" + mWifi.isWifiEnabled() +", SSID=" + ssid + ", result=" + ret); return ret; } diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/Constants.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/Constants.java index ec20f689..4c044e0d 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/Constants.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/Constants.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -40,9 +40,6 @@ public class Constants { public final static boolean BUILD_FOR_AMAZON=false; - public final static String SMBSYNC2_TAB_NAME_TASK="task", SMBSYNC2_TAB_NAME_SCHEDULE="sched", - SMBSYNC2_TAB_NAME_MESSAGE="msg", SMBSYNC2_TAB_NAME_HIST="hist"; - public static final String SMBSYNC2_CONFIRM_REQUEST_COPY="Copy"; public static final String SMBSYNC2_CONFIRM_REQUEST_DELETE_FILE="DeleteFile"; public static final String SMBSYNC2_CONFIRM_REQUEST_DELETE_DIR="DeleteDir"; diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomDirectorySelectPreference.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomDirectorySelectPreference.java index b914aa65..01719823 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomDirectorySelectPreference.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomDirectorySelectPreference.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomTabLayout.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomTabLayout.java new file mode 100644 index 00000000..8c0e94a6 --- /dev/null +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/CustomTabLayout.java @@ -0,0 +1,113 @@ +/* +The MIT License (MIT) +Copyright (c) 2020 Sentaroh + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or +substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +*/ +package com.sentaroh.android.SMBSync2; + +import android.content.Context; +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.support.design.widget.TabLayout; +import android.util.AttributeSet; +import android.view.MotionEvent; +import android.view.View; +import android.widget.LinearLayout; + + + +public class CustomTabLayout extends TabLayout { + private Context c=null; + public CustomTabLayout(@NonNull Context context) { + super(context); + c=context; + } + + public CustomTabLayout(@NonNull Context context, @Nullable AttributeSet attrs) { + super(context, attrs); + c=context; + } + + public CustomTabLayout(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) { + super(context, attrs, defStyleAttr); + c=context; + } + + public void addTab(String tab_name) { + addTab(this.newTab().setText(tab_name).setTag(tab_name)); +// TextView tabOne = (TextView) LayoutInflater.from(c).inflate(R.layout.custom_tab_layout_tab_item, null); +// tabOne.setText(tab_name); +//// tabOne.setTextSize(CommonDialog.toPixel(c.getResources(), 18)); +// this.getTabAt(this.getTabCount()-1).setCustomView(tabOne); + } + + public void adjustTabWidth() { + LinearLayout tab_layout=((LinearLayout)this.getChildAt(0)); + for(int i = 0; imNsdServiceList=new ArrayList(); - - public NsdSmbNameResolution(Context c) { - mNsdManager = (NsdManager) c.getSystemService(NSD_SERVICE); - } - - public String query(String query_name, final int time_out) { - mQueryName =query_name; - log.debug("Query Start for Name="+query_name); - startDiscovery(); - synchronized (mNsdManager) { - try { - mNsdManager.wait(time_out); - } catch (InterruptedException e) { - e.printStackTrace(); - } - stopDiscovery(); - } - log.debug("Query result="+ mQueryResult +", Name="+query_name); - return mQueryResult; - } - - public ArrayList list(final int time_out) { - mQueryName =""; - log.debug("List Start"); - startDiscovery(); - synchronized (mNsdManager) { - try { - mNsdManager.wait(time_out); - } catch (InterruptedException e) { - e.printStackTrace(); - } - stopDiscovery(); - } - log.debug("List ended, count="+mNsdServiceList.size()); - return mNsdServiceList; - } - - private void startDiscovery() { - mNsdManager.discoverServices(SMB_SERVICE_TYPE, NsdManager.PROTOCOL_DNS_SD, discoveryListener); - } - - private void stopDiscovery() { - mNsdManager.stopServiceDiscovery(discoveryListener); - } - - private NsdManager.DiscoveryListener discoveryListener = new NsdManager.DiscoveryListener() { - @Override - public void onStopDiscoveryFailed(String serviceType, int errorCode) { - log.trace(String.format("Failed to stop discovery serviceType=%s, errorCode=%d", serviceType, errorCode)); - } - @Override - public void onStartDiscoveryFailed(String serviceType, int errorCode) { - log.trace(String.format("Failed to start discovery serviceType=%s, errorCode=%d", serviceType, errorCode)); - } - @Override - public void onServiceLost(NsdServiceInfo serviceInfo) { - log.trace(String.format("Service lost serviceInfo=%s", serviceInfo)); - synchronized (mNsdManager) { - mNsdManager.notify(); - } - } - @Override - public void onServiceFound(NsdServiceInfo serviceInfo) { - mNsdServiceList.add(serviceInfo.getServiceName()); - log.trace(String.format("Service found serviceInfo=%s", serviceInfo)); - if (serviceInfo.getServiceName().equals(mQueryName)) { - mNsdManager.resolveService(serviceInfo, new NsdManager.ResolveListener() { - @Override - public void onServiceResolved(NsdServiceInfo serviceInfo) { - log.trace(String.format("Service resolved serviceInfo=%s", serviceInfo)); - mQueryResult =serviceInfo.getHost().getHostAddress(); - synchronized (mNsdManager) { - mNsdManager.notify(); - } - } - @Override - public void onResolveFailed(NsdServiceInfo serviceInfo, int errorCode) { - log.trace(String.format("Failed to resolve serviceInfo=%s, errorCode=%d", serviceInfo, errorCode)); - synchronized (mNsdManager) { - mNsdManager.notify(); - } - } - }); - } - } - @Override - public void onDiscoveryStopped(String serviceType) { - log.trace(String.format("Discovery stopped serviceType=%s", serviceType)); - synchronized (mNsdManager) { - mNsdManager.notify(); - } - } - @Override - public void onDiscoveryStarted(String serviceType) { - log.trace(String.format("Discovery started serviceType=%s", serviceType)); - } - }; - -} diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ReadSmbFilelist.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ReadSmbFilelist.java index c90441b3..0a20770f 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ReadSmbFilelist.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ReadSmbFilelist.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -38,6 +38,7 @@ this software and associated documentation files (the "Software"), to deal import java.net.InetAddress; import java.net.MalformedURLException; import java.util.ArrayList; +import java.util.Properties; public class ReadSmbFilelist implements Runnable { private ThreadCtrl getFLCtrl = null; @@ -147,8 +148,10 @@ private void readFileList() { if (mRemoteAuthInfo.smb_smb_protocol.equals(SyncTaskItem.SYNC_FOLDER_SMB_PROTOCOL_SMB1)) { auth=new JcifsAuth(JcifsAuth.JCIFS_FILE_SMB1, mRemoteAuthInfo.smb_domain_name, mRemoteAuthInfo.smb_user_name, mRemoteAuthInfo.smb_user_password); } else { + Properties prop_new = new Properties(); + prop_new.setProperty("jcifs.smb.client.responseTimeout", mGp.settingsSmbClientResponseTimeout); auth=new JcifsAuth(smb_level, mRemoteAuthInfo.smb_domain_name, mRemoteAuthInfo.smb_user_name, mRemoteAuthInfo.smb_user_password, - mRemoteAuthInfo.smb_ipc_signing_enforced, mRemoteAuthInfo.smb_use_smb2_negotiation); + mRemoteAuthInfo.smb_ipc_signing_enforced, mRemoteAuthInfo.smb_use_smb2_negotiation, prop_new); } try { @@ -235,6 +238,7 @@ private void readFileList() { } catch (JcifsException e) { e.printStackTrace(); + String cause=""; String[] e_msg=JcifsUtil.analyzeNtStatusCode(e, remoteUrl + remoteDir, mRemoteUserNameForLog); // e_msg[0] = e.getMessage()+"\n"+e_msg[0]; @@ -295,8 +299,10 @@ private void readShareList() { if (mRemoteAuthInfo.smb_smb_protocol.equals(SyncTaskItem.SYNC_FOLDER_SMB_PROTOCOL_SMB1)) { auth=new JcifsAuth(JcifsAuth.JCIFS_FILE_SMB1, mRemoteAuthInfo.smb_domain_name, mRemoteAuthInfo.smb_user_name, mRemoteAuthInfo.smb_user_password); } else { + Properties prop_new = new Properties(); + prop_new.setProperty("jcifs.smb.client.responseTimeout", mGp.settingsSmbClientResponseTimeout); auth=new JcifsAuth(smb_level, mRemoteAuthInfo.smb_domain_name, mRemoteAuthInfo.smb_user_name, mRemoteAuthInfo.smb_user_password, - mRemoteAuthInfo.smb_ipc_signing_enforced, mRemoteAuthInfo.smb_use_smb2_negotiation); + mRemoteAuthInfo.smb_ipc_signing_enforced, mRemoteAuthInfo.smb_use_smb2_negotiation, prop_new); } JcifsFile[] fl=null; try { diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/RemoteAuthInfo.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/RemoteAuthInfo.java index 6973966f..99aed876 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/RemoteAuthInfo.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/RemoteAuthInfo.java @@ -1,7 +1,7 @@ package com.sentaroh.android.SMBSync2; /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleConstants.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleConstants.java index 7bcc00a3..c40f3d37 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleConstants.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleConstants.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItem.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItem.java index 481d2b5c..e09c26e6 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItem.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItem.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItemEditor.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItemEditor.java index 58cf519d..e1a64a54 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItemEditor.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleItemEditor.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleUtil.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleUtil.java index 817507dd..92dfacdd 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleUtil.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ScheduleUtil.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SeekBarPreference.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SeekBarPreference.java index 75b973fb..0c8a551b 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SeekBarPreference.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SeekBarPreference.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutAutoSync.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutAutoSync.java index ff4caaa4..0a6efe95 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutAutoSync.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutAutoSync.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutMakeAutoSync.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutMakeAutoSync.java index 7f62c50f..44d79d7b 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutMakeAutoSync.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/ShortcutMakeAutoSync.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncHistoryItem.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncHistoryItem.java index 3abb475e..1f7b47a6 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncHistoryItem.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncHistoryItem.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncMessageItem.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncMessageItem.java index 03ccd380..554d2122 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncMessageItem.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncMessageItem.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncReceiver.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncReceiver.java index e07ca5ad..5d6e020d 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncReceiver.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncReceiver.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncRequestItem.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncRequestItem.java index 1f38f2bb..d462757c 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncRequestItem.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncRequestItem.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncService.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncService.java index bcc9836d..3e0f586a 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncService.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncService.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -96,8 +96,6 @@ public class SyncService extends Service { private Context mContext = null; - private WifiReceiver mWifiReceiver = new WifiReceiver(); - private SleepReceiver mSleepReceiver = new SleepReceiver(); @Override @@ -129,18 +127,7 @@ public void onCreate() { mWifiMgr = (WifiManager) mContext.getSystemService(Context.WIFI_SERVICE); - initWifiStatus(); - IntentFilter int_filter = new IntentFilter(); - int_filter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION); - int_filter.addAction(WifiManager.RSSI_CHANGED_ACTION); - int_filter.addAction(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION); - int_filter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION); - int_filter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION); - int_filter.addAction(WifiManager.NETWORK_IDS_CHANGED_ACTION); - registerReceiver(mWifiReceiver, int_filter); - - int_filter = new IntentFilter(); int_filter.addAction(Intent.ACTION_SCREEN_OFF); int_filter.addAction(Intent.ACTION_SCREEN_ON); int_filter.addAction(Intent.ACTION_USER_PRESENT); @@ -266,7 +253,6 @@ public boolean onUnbind(Intent intent) { public void onDestroy() { super.onDestroy(); mUtil.addDebugMsg(1, "I", CommonUtilities.getExecutedMethodName() + " entered"); - unregisterReceiver(mWifiReceiver); unregisterReceiver(mSleepReceiver); // unregisterReceiver(mUsbReceiver); stopForeground(true); @@ -928,71 +914,6 @@ private void hideDialogWindow() { } } - private void initWifiStatus() { - mGp.wifiIsActive = mWifiMgr.isWifiEnabled(); - if (mGp.wifiIsActive) { - mGp.wifiSsid = mUtil.getConnectedWifiSsid(); - } - mUtil.addDebugMsg(1, "I", "Wi-Fi Status, Active=" + mGp.wifiIsActive + ", SSID=" + mGp.wifiSsid); - } - - final private class WifiReceiver extends BroadcastReceiver { - @Override - final public void onReceive(Context c, Intent in) { - String tssid =null; - try { - tssid=mWifiMgr.getConnectionInfo().getSSID(); - } catch(Exception e){ - mUtil.addLogMsg("W", "WIFI receiver, getSSID() failed. msg="+e.getMessage()); - } - String wssid = ""; - String ss = ""; - try { - ss=mWifiMgr.getConnectionInfo().getSupplicantState().toString(); -// mUtil.addDebugMsg(1,"I","ss="+ss+", IP addr="+CommonUtilities.getIfIpAddress("wlan0")); -// mUtil.addDebugMsg(1,"I","ss="+ss+", IP addr="+String.format("%8x",mWifiMgr.getConnectionInfo().getIpAddress())); - } catch(Exception e){ - mUtil.addLogMsg("W", "WIFI receiver, getSupplicantState() failed. msg="+e.getMessage()); - } - if (tssid == null || tssid.equals("")) wssid = ""; - else wssid = tssid.replaceAll("\"", ""); - if (wssid.equals("0x")) wssid = ""; - - boolean new_wifi_enabled = mWifiMgr.isWifiEnabled(); - if (!new_wifi_enabled && mGp.wifiIsActive) { - mUtil.addDebugMsg(1, "I", "WIFI receiver, WIFI Off"); - mGp.wifiSsid = ""; - mGp.wifiIsActive = false; - } else { - if (ss.equals("COMPLETED") || ss.equals("ASSOCIATING") || ss.equals("ASSOCIATED")) { - if (mGp.wifiSsid.equals("") && !wssid.equals("")) { - mUtil.addDebugMsg(1, "I", "WIFI receiver, Connected WIFI Access point SSID=" + wssid); - mGp.wifiSsid = wssid; - mGp.wifiIsActive = true; - } - } else if (ss.equals("INACTIVE") || - ss.equals("DISCONNECTED") || - ss.equals("UNINITIALIZED") || - ss.equals("INTERFACE_DISABLED") || - ss.equals("SCANNING")) { - if (mGp.wifiIsActive) { - if (!mGp.wifiSsid.equals("")) { - mUtil.addDebugMsg(1, "I", "WIFI receiver, Disconnected WIFI Access point SSID=" + mGp.wifiSsid); - mGp.wifiSsid = ""; - mGp.wifiIsActive = true; - } - } else { - if (new_wifi_enabled) { - mUtil.addDebugMsg(1, "I", "WIFI receiver, WIFI On"); - mGp.wifiSsid = ""; - mGp.wifiIsActive = true; - } - } - } - } - } - } - final private class SleepReceiver extends BroadcastReceiver { @SuppressLint({"Wakelock", "NewApi"}) @Override diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskEditor.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskEditor.java index 52c4cab5..d4d84eee 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskEditor.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskEditor.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -601,12 +601,14 @@ public void run() { ct_specific_file_type_audio.setChecked(sv.specific_file_type_audio); ct_specific_file_type_image.setChecked(sv.specific_file_type_image); ct_specific_file_type_video.setChecked(sv.specific_file_type_video); - if (sv.specific_file_type || sv.specific_file_type_audio || sv.specific_file_type_image || sv.specific_file_type_video || !sv.sync_file_filter_info.equals("")) { + if (sv.specific_file_type || sv.specific_file_type_audio || sv.specific_file_type_image || sv.specific_file_type_video || + (!sv.sync_file_filter_info.equals("") && !sv.sync_file_filter_info.equals(mContext.getString(R.string.msgs_profile_sync_task_dlg_file_filter_not_specified)))) { performClickNoSound(ct_specific_file_type); } ct_specific_directory.setChecked(false); - if (sv.specific_diretory || !sv.sync_dir_filter_info.equals("")) { + if (sv.specific_diretory || + (!sv.sync_dir_filter_info.equals("") && !sv.sync_dir_filter_info.equals(mContext.getString(R.string.msgs_profile_sync_task_dlg_dir_filter_not_specified)))) { performClickNoSound(ct_specific_directory); } @@ -779,7 +781,7 @@ public void onClick(View v) { final Button btn_dir_view_keyword_insert_week_day_long = (Button) ll_dir_view.findViewById(R.id.edit_sync_folder_keyword_insert_weekday_long); final CheckedTextView ctv_smb_use_taken_date_time_for_directory_keyword = (CheckedTextView) dialog.findViewById(R.id.edit_sync_folder_dlg_smb_use_taken_date_time_for_directory_keyword); - if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR)) { + if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR) || sfev.folder_master) { ctv_smb_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.GONE); } else { ctv_smb_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.VISIBLE); @@ -864,8 +866,6 @@ public void onClick(View view) { } }); - final Button btn_sync_folder_logon = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_logon_btn); -// btn_sync_folder_logon.setVisibility(Button.GONE); final Button btn_sync_folder_list_share = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_list_share_btn); final EditText et_sync_folder_share_name = (EditText) dialog.findViewById(R.id.edit_sync_folder_dlg_share_name); et_sync_folder_share_name.setText(sfev.folder_remote_share); @@ -939,37 +939,6 @@ public void onClick(View v) { } }); - btn_sync_folder_logon.setOnClickListener(new OnClickListener() { - @Override - public void onClick(View v) { - String user=et_sync_folder_user.getText().toString().trim().length()>0?et_sync_folder_user.getText().toString().trim():null; - String pass=et_sync_folder_pswd.getText().toString().length()>0?et_sync_folder_pswd.getText().toString():null; - if (!ctv_sync_folder_use_pswd.isChecked()) { - user=pass=null; - } else { - if (et_sync_folder_user.getText().length()==0) user=null; - if (et_sync_folder_pswd.getText().length()==0) pass=null; - } - RemoteAuthInfo ra=new RemoteAuthInfo(); - ra.smb_domain_name=null; - ra.smb_user_name=user; - ra.smb_user_password=pass; - ra.smb_smb_protocol=getSmbSelectedProtocol(sp_sync_folder_smb_proto); - ra.smb_ipc_signing_enforced=ctv_sync_folder_smb_ipc_enforced.isChecked(); - ra.smb_use_smb2_negotiation=ctv_sync_folder_smb_use_smb2_negotiation.isChecked(); - String host=et_remote_host.getText().toString().trim(); - if (CommonUtilities.isIpAddressV6(host) ||CommonUtilities.isIpAddressV4(host)) { - mTaskUtil.testSmbLogonDlg("", host, - et_sync_folder_port.getText().toString().trim(), - et_sync_folder_share_name.getText().toString().trim(), ra, null); - } else { - mTaskUtil.testSmbLogonDlg(host, "", - et_sync_folder_port.getText().toString().trim(), - et_sync_folder_share_name.getText().toString().trim(), ra, null); - } - } - }); - btn_sync_folder_list_share.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { @@ -1069,7 +1038,7 @@ private void setSyncFolderInternalListener(final Dialog dialog, final SyncTaskIt final Button btn_dir_view_keyword_insert_week_day_long = (Button) ll_dir_view.findViewById(R.id.edit_sync_folder_keyword_insert_weekday_long); final CheckedTextView ctv_internal_use_taken_date_time_for_directory_keyword = (CheckedTextView) dialog.findViewById(R.id.edit_sync_folder_dlg_internal_use_taken_date_time_for_directory_keyword); - if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR)) { + if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR) || sfev.folder_master) { ctv_internal_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.GONE); } else { ctv_internal_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.VISIBLE); @@ -1213,7 +1182,7 @@ private void setSyncFolderSdcardListener(final Dialog dialog, final SyncTaskItem final Button btn_dir_view_keyword_insert_week_day_long = (Button) ll_dir_view.findViewById(R.id.edit_sync_folder_keyword_insert_weekday_long); final CheckedTextView ctv_sdcard_use_taken_date_time_for_directory_keyword = (CheckedTextView) dialog.findViewById(R.id.edit_sync_folder_dlg_sdcard_use_taken_date_time_for_directory_keyword); - if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR)) { + if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR) || sfev.folder_master) { ctv_sdcard_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.GONE); } else { ctv_sdcard_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.VISIBLE); @@ -1391,7 +1360,7 @@ private void setSyncFolderUsbListener(final Dialog dialog, final SyncTaskItem st mContext.getString(R.string.msg_edit_sync_folder_keyword_insert_week_day_long)); final CheckedTextView ctv_usb_use_taken_date_time_for_directory_keyword = (CheckedTextView) dialog.findViewById(R.id.edit_sync_folder_dlg_usb_use_taken_date_time_for_directory_keyword); - if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR)) { + if (sti.getSyncTaskType().equals(SyncTaskItem.SYNC_TASK_TYPE_MIRROR) || sfev.folder_master) { ctv_usb_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.GONE); } else { ctv_usb_use_taken_date_time_for_directory_keyword.setVisibility(CheckedTextView.VISIBLE); @@ -2203,7 +2172,6 @@ private SyncFolderEditValue buildSyncFolderEditValue(Dialog dialog, SyncFolderEd final EditText et_sync_folder_user = (EditText) dialog.findViewById(R.id.edit_sync_folder_dlg_remote_user); final EditText et_sync_folder_pswd = (EditText) dialog.findViewById(R.id.edit_sync_folder_dlg_remote_pass); - final Button btn_sync_folder_logon = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_logon_btn); final Button btn_sync_folder_list_share = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_list_share_btn); final EditText et_sync_folder_share_name = (EditText) dialog.findViewById(R.id.edit_sync_folder_dlg_share_name); @@ -2373,10 +2341,10 @@ private void setSyncFolderViewVisibility(final Dialog dialog, final boolean mast btn_sdcard_select_sdcard.setVisibility(Button.GONE); if (master) { - ll_internal_keyword_view.setVisibility(LinearLayout.GONE); - ll_sdcard_keyword_view.setVisibility(LinearLayout.GONE); - ll_usb_keyword_view.setVisibility(LinearLayout.GONE); - ll_smb_keyword_view.setVisibility(LinearLayout.GONE); + ll_internal_keyword_view.setVisibility(LinearLayout.VISIBLE); + ll_sdcard_keyword_view.setVisibility(LinearLayout.VISIBLE); + ll_usb_keyword_view.setVisibility(LinearLayout.VISIBLE); + ll_smb_keyword_view.setVisibility(LinearLayout.VISIBLE); ll_zip_keyword_view.setVisibility(LinearLayout.GONE); } else { ll_internal_keyword_view.setVisibility(LinearLayout.VISIBLE); @@ -2678,7 +2646,6 @@ private boolean checkSyncFolderValidation(Dialog dialog, SyncFolderEditValue org // final LinearLayout ll_sync_folder_smb_view = (LinearLayout)dialog.findViewById(R.id.edit_sync_folder_dlg_smb_host_view); // final Button btn_search_host = (Button)dialog.findViewById(R.id.edit_sync_folder_dlg_search_remote_host); // final EditText et_sync_folder_domain = (EditText)dialog.findViewById(R.id.edit_sync_folder_dlg_remote_domain); - final Button btn_sync_folder_logon = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_logon_btn); final Button btn_sync_folder_smb_list_share = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_list_share_btn); final Button btn_sync_folder_local_list_dir = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_list_internal_directory_btn); final Button btn_sync_folder_smb_list_dir = (Button) dialog.findViewById(R.id.edit_sync_folder_dlg_list_smb_directory_btn); @@ -2716,12 +2683,10 @@ private boolean checkSyncFolderValidation(Dialog dialog, SyncFolderEditValue org setDialogMsg(dlg_msg, mContext.getString(R.string.msgs_main_sync_profile_dlg_specify_host_address_or_name)); CommonDialog.setViewEnabled(getActivity(), btn_sync_folder_smb_list_share, false); } else { - CommonDialog.setViewEnabled(getActivity(), btn_sync_folder_logon, true); if (ctv_sync_folder_use_port.isChecked() && sync_folder_port.equals("")) { result = false; CommonDialog.setViewEnabled(getActivity(), btn_sync_folder_smb_list_share, false); setSyncFolderSmbListDirectoryButtonEnabled(dialog, false); - CommonDialog.setViewEnabled(getActivity(), btn_sync_folder_logon, false); setDialogMsg(dlg_msg, mContext.getString(R.string.msgs_main_sync_profile_dlg_specify_host_port_number)); } else { if (ctv_sync_folder_use_pswd.isChecked()) { @@ -2729,7 +2694,6 @@ private boolean checkSyncFolderValidation(Dialog dialog, SyncFolderEditValue org result = false; CommonDialog.setViewEnabled(getActivity(), btn_sync_folder_smb_list_share, false); setSyncFolderSmbListDirectoryButtonEnabled(dialog, false); - CommonDialog.setViewEnabled(getActivity(), btn_sync_folder_logon, false); setDialogMsg(dlg_msg, mContext.getString(R.string.msgs_main_sync_profile_dlg_specify_host_userid_pswd)); } else { if (sync_folder_user.equals(SMBSYNC2_PROF_DECRYPT_FAILED) || sync_folder_user.equals(SMBSYNC2_PROF_ENCRYPT_FAILED)) { @@ -2746,7 +2710,6 @@ private boolean checkSyncFolderValidation(Dialog dialog, SyncFolderEditValue org setDialogMsg(dlg_msg, mContext.getString(R.string.msgs_main_sync_profile_dlg_specify_host_pswd)); btn_sync_folder_smb_list_share.setEnabled(false); setSyncFolderSmbListDirectoryButtonEnabled(dialog, false); - btn_sync_folder_logon.setEnabled(false); } } } @@ -2883,112 +2846,112 @@ public void onCancel(DialogInterface arg0) { } } - static public void checkLocationServiceWarning(Activity activity, GlobalParameters gp, CommonUtilities cu) { - if (Build.VERSION.SDK_INT<=26) return; - if (Build.VERSION.SDK_INT>=29) { - boolean coarse_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)==PackageManager.PERMISSION_GRANTED); - boolean background_granted=background_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)==PackageManager.PERMISSION_GRANTED); - if (gp.settingSupressLocationServiceWarning || - (CommonUtilities.isLocationServiceEnabled(activity, gp) && coarse_granted && background_granted)) return; - boolean waring_required=false; - String used_st="", sep="-"; - for(SyncTaskItem st_item:gp.syncTaskList) { - if (st_item.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) { - waring_required=true; - used_st+=sep+st_item.getSyncTaskName(); - sep="\n-"; - } - } - - if (!waring_required) return; - - showLocationServiceWarning(activity, gp, cu, used_st); - } else { - boolean coarse_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED); - if (gp.settingSupressLocationServiceWarning || - (CommonUtilities.isLocationServiceEnabled(activity, gp) && coarse_granted)) return; - boolean waring_required=false; - String used_st="", sep="-"; - for(SyncTaskItem st_item:gp.syncTaskList) { - if (st_item.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) { - waring_required=true; - used_st+=sep+st_item.getSyncTaskName(); - sep="\n-"; - } - } - - if (!waring_required) return; - - showLocationServiceWarning(activity, gp, cu, used_st); - } - } - - static public void showLocationServiceWarning(final Activity activity, final GlobalParameters gp, final CommonUtilities cu, final String used_st) { - - final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity); - - final Dialog dialog = new Dialog(activity, gp.applicationTheme);//, android.R.style.Theme_Black); - dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); - dialog.setContentView(R.layout.show_warning_message_dlg); - - final LinearLayout title_view = (LinearLayout) dialog.findViewById(R.id.show_warning_message_dlg_title_view); - final TextView title = (TextView) dialog.findViewById(R.id.show_warning_message_dlg_title); - title_view.setBackgroundColor(gp.themeColorList.title_background_color); - title.setText(activity.getString(R.string.msgs_main_app_specific_dir_used_title)); - title.setTextColor(gp.themeColorList.title_text_color); - title.setText(activity.getString(R.string.msgs_main_location_service_warning_title)); - - String msg_text=""; - boolean coarse_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)==PackageManager.PERMISSION_GRANTED); - if (Build.VERSION.SDK_INT>=29) { - boolean background_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)==PackageManager.PERMISSION_GRANTED); - boolean loc=CommonUtilities.isLocationServiceEnabled(activity, gp); - if (!CommonUtilities.isLocationServiceEnabled(activity, gp) && (!coarse_granted||!background_granted)) { - msg_text = activity.getString(R.string.msgs_main_location_service_warning_msg_both); - } else if (!CommonUtilities.isLocationServiceEnabled(activity, gp)) { - msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_location); - } else if (!coarse_granted || !background_granted) { - msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_coarse); - } - } else { - if (!CommonUtilities.isLocationServiceEnabled(activity, gp) && !coarse_granted) { - msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_both); - } else if (!CommonUtilities.isLocationServiceEnabled(activity, gp)) { - msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_location); - } else if (!coarse_granted) { - msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_coarse); - } - } - - if (!used_st.equals("")) msg_text+="\n\n"+used_st; - ((TextView) dialog.findViewById(R.id.show_warning_message_dlg_msg)).setText(msg_text); - - final Button btnClose = (Button) dialog.findViewById(R.id.show_warning_message_dlg_close); - final CheckedTextView ctvSuppr = (CheckedTextView) dialog.findViewById(R.id.show_warning_message_dlg_ctv_suppress); - CommonUtilities.setCheckedTextView(ctvSuppr); - ctvSuppr.setText(R.string.msgs_main_location_service_warning_suppress); - - CommonDialog.setDlgBoxSizeCompact(dialog); - ctvSuppr.setChecked(false); - // Close繝懊ち繝ウ縺ョ謖螳 - btnClose.setOnClickListener(new OnClickListener() { - public void onClick(View v) { - dialog.dismiss(); - if (ctvSuppr.isChecked()) { - prefs.edit().putBoolean(activity.getString(R.string.settings_suppress_warning_location_service_disabled), true).commit(); - gp.settingSupressLocationServiceWarning =true; - } - } - }); - // Cancel繝ェ繧ケ繝翫シ縺ョ謖螳 - dialog.setOnCancelListener(new Dialog.OnCancelListener() { - @Override - public void onCancel(DialogInterface arg0) { - btnClose.performClick(); - } - }); - dialog.show(); - } +// static public void checkLocationServiceWarning(Activity activity, GlobalParameters gp, CommonUtilities cu) { +// if (Build.VERSION.SDK_INT<=26) return; +// if (Build.VERSION.SDK_INT>=29) { +// boolean coarse_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)==PackageManager.PERMISSION_GRANTED); +// boolean background_granted=background_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)==PackageManager.PERMISSION_GRANTED); +// if (gp.settingSupressLocationServiceWarning || +// (CommonUtilities.isLocationServiceEnabled(activity, gp) && coarse_granted && background_granted)) return; +// boolean waring_required=false; +// String used_st="", sep="-"; +// for(SyncTaskItem st_item:gp.syncTaskList) { +// if (st_item.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) { +// waring_required=true; +// used_st+=sep+st_item.getSyncTaskName(); +// sep="\n-"; +// } +// } +// +// if (!waring_required) return; +// +// showLocationServiceWarning(activity, gp, cu, used_st); +// } else { +// boolean coarse_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)==PackageManager.PERMISSION_GRANTED); +// if (gp.settingSupressLocationServiceWarning || +// (CommonUtilities.isLocationServiceEnabled(activity, gp) && coarse_granted)) return; +// boolean waring_required=false; +// String used_st="", sep="-"; +// for(SyncTaskItem st_item:gp.syncTaskList) { +// if (st_item.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) { +// waring_required=true; +// used_st+=sep+st_item.getSyncTaskName(); +// sep="\n-"; +// } +// } +// +// if (!waring_required) return; +// +// showLocationServiceWarning(activity, gp, cu, used_st); +// } +// } + +// static public void showLocationServiceWarning(final Activity activity, final GlobalParameters gp, final CommonUtilities cu, final String used_st) { +// +// final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity); +// +// final Dialog dialog = new Dialog(activity, gp.applicationTheme);//, android.R.style.Theme_Black); +// dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); +// dialog.setContentView(R.layout.show_warning_message_dlg); +// +// final LinearLayout title_view = (LinearLayout) dialog.findViewById(R.id.show_warning_message_dlg_title_view); +// final TextView title = (TextView) dialog.findViewById(R.id.show_warning_message_dlg_title); +// title_view.setBackgroundColor(gp.themeColorList.title_background_color); +// title.setText(activity.getString(R.string.msgs_main_app_specific_dir_used_title)); +// title.setTextColor(gp.themeColorList.title_text_color); +// title.setText(activity.getString(R.string.msgs_main_location_service_warning_title)); +// +// String msg_text=""; +// boolean coarse_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)==PackageManager.PERMISSION_GRANTED); +// if (Build.VERSION.SDK_INT>=29) { +// boolean background_granted=(activity.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)==PackageManager.PERMISSION_GRANTED); +// boolean loc=CommonUtilities.isLocationServiceEnabled(activity, gp); +// if (!CommonUtilities.isLocationServiceEnabled(activity, gp) && (!coarse_granted||!background_granted)) { +// msg_text = activity.getString(R.string.msgs_main_location_service_warning_msg_both); +// } else if (!CommonUtilities.isLocationServiceEnabled(activity, gp)) { +// msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_location); +// } else if (!coarse_granted || !background_granted) { +// msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_coarse); +// } +// } else { +// if (!CommonUtilities.isLocationServiceEnabled(activity, gp) && !coarse_granted) { +// msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_both); +// } else if (!CommonUtilities.isLocationServiceEnabled(activity, gp)) { +// msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_location); +// } else if (!coarse_granted) { +// msg_text=activity.getString(R.string.msgs_main_location_service_warning_msg_coarse); +// } +// } +// +// if (!used_st.equals("")) msg_text+="\n\n"+used_st; +// ((TextView) dialog.findViewById(R.id.show_warning_message_dlg_msg)).setText(msg_text); +// +// final Button btnClose = (Button) dialog.findViewById(R.id.show_warning_message_dlg_close); +// final CheckedTextView ctvSuppr = (CheckedTextView) dialog.findViewById(R.id.show_warning_message_dlg_ctv_suppress); +// CommonUtilities.setCheckedTextView(ctvSuppr); +// ctvSuppr.setText(R.string.msgs_main_location_service_warning_suppress); +// +// CommonDialog.setDlgBoxSizeCompact(dialog); +// ctvSuppr.setChecked(false); +// // Close繝懊ち繝ウ縺ョ謖螳 +// btnClose.setOnClickListener(new OnClickListener() { +// public void onClick(View v) { +// dialog.dismiss(); +// if (ctvSuppr.isChecked()) { +// prefs.edit().putBoolean(activity.getString(R.string.settings_suppress_warning_location_service_disabled), true).commit(); +// gp.settingSupressLocationServiceWarning =true; +// } +// } +// }); +// // Cancel繝ェ繧ケ繝翫シ縺ョ謖螳 +// dialog.setOnCancelListener(new Dialog.OnCancelListener() { +// @Override +// public void onCancel(DialogInterface arg0) { +// btnClose.performClick(); +// } +// }); +// dialog.show(); +// } private void invokeEditDirFilterDlg(final Dialog dialog, final SyncTaskItem n_sti, final String type, final TextView dlg_msg) { final CheckedTextView ctvEnsureTargetExactMirror = (CheckedTextView) mDialog.findViewById(R.id.edit_sync_task_option_ctv_sync_ensure_target_is_exact_mirror); @@ -3204,6 +3167,27 @@ private void setSpinnerSyncFolderMountPoint(SyncTaskItem sti, Spinner spinner, S int sel_no = 0; // ArrayListmpl=LocalMountPoint.getLocalMountpointList2(mContext); ArrayList mpl = LocalMountPoint.getLocalMountpointList2(mContext); + + if (Build.VERSION.SDK_INT>=26) { + File[] fl=mContext.getExternalFilesDirs(null); + if (fl!=null && fl.length>1) { + for(File fi:fl) { + if (fi!=null && fi.getPath()!=null) { + String mp_name=fi.getPath().substring(0, fi.getPath().indexOf("/Android/data")); + boolean found=false; + for(String mi:mpl) { + if (mi.equals(mp_name)) { + found=true; + break; + } + } + if (!found) mpl.add(mp_name); + } + } + for(String mi:mpl) mUtil.addDebugMsg(1,"I","setSpinnerSyncFolderMountPoint MP entry="+mi); + } + } + if (mpl == null || mpl.size() == 0) { adapter.add(mGp.internalRootDirectory); mUtil.addDebugMsg(1,"I","setSpinnerSyncFolderMountPoint add MP by InternalStorage only."); @@ -3468,7 +3452,7 @@ private void setSpinnerTwoWaySyncConflictRule(Spinner spinner, String cv) { private void setSpinnerSyncTaskWifiOption(Spinner spinner, String cv) { CommonUtilities.setSpinnerBackground(mContext, spinner, mGp.isScreenThemeIsLight()); final CustomSpinnerAdapter adapter = - new CustomSpinnerAdapter(mContext, android.R.layout.simple_spinner_item); + new AdapterWifiOption(getActivity(), android.R.layout.simple_spinner_item); adapter.setDropDownViewResource(android.R.layout.select_dialog_singlechoice); spinner.setPrompt(mContext.getString(R.string.msgs_main_sync_profile_dlg_wifi_option_prompt)); spinner.setAdapter(adapter); @@ -3481,7 +3465,7 @@ private void setSpinnerSyncTaskWifiOption(Spinner spinner, String cv) { int sel = 0; if (cv.equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_OFF)) sel = 0; else if (cv.equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_ANY_AP)) sel = 1; - else if (cv.equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) sel = 2; + else if (cv.equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) sel = 3; else if (cv.equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_PRIVATE_ADDR)) sel = 3; else if (cv.equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_ADDR)) sel = 4; @@ -3587,6 +3571,9 @@ public void editSyncTask(final String type, final SyncTaskItem pfli) { dlg_msg.setTextColor(mGp.themeColorList.text_color_error); dlg_msg.setVisibility(TextView.GONE); + final Button btn_ok = (Button) mDialog.findViewById(R.id.edit_profile_sync_dlg_btn_ok); + CommonDialog.setViewEnabled(getActivity(), btn_ok, false); + final Button swap_master_target = (Button) mDialog.findViewById(R.id.edit_sync_task_change_master_and_target_btn); final Button master_folder_info = (Button) mDialog.findViewById(R.id.edit_sync_task_master_folder_info_btn); final ImageView master_folder_icon = (ImageView) mDialog.findViewById(R.id.edit_sync_task_master_folder_info_icon); @@ -3730,6 +3717,13 @@ public void onClick(View v) { final Spinner spinnerSyncWifiStatus = (Spinner) mDialog.findViewById(R.id.edit_sync_task_option_spinner_wifi_status); setSpinnerSyncTaskWifiOption(spinnerSyncWifiStatus, n_sti.getSyncOptionWifiStatusOption()); + + if ((n_sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB)||n_sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB)) && + n_sti.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) { + mUtil.showCommonDialog(false, "W", mContext.getString(R.string.msgs_main_permission_ap_list_no_longer_available_dialog_title), + mContext.getString(R.string.msgs_main_permission_ap_list_no_longer_available_dialog_msg), null); + } + if (n_sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB) || n_sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB)) { ll_wifi_condition_view.setVisibility(LinearLayout.VISIBLE); ll_advanced_network_option_view.setVisibility(LinearLayout.VISIBLE); @@ -4238,8 +4232,6 @@ public void onNothingSelected(AdapterView parent) {} CommonDialog.setDlgBoxSizeLimit(mDialog, true); - final Button btn_ok = (Button) mDialog.findViewById(R.id.edit_profile_sync_dlg_btn_ok); - et_sync_main_task_name.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { @@ -4693,7 +4685,6 @@ public boolean onKey(DialogInterface dialogInterface, int kc, KeyEvent keyEvent) } }); // OK繝懊ち繝ウ縺ョ謖螳 - CommonDialog.setViewEnabled(getActivity(), btn_ok, false); btn_ok.setOnClickListener(new OnClickListener() { public void onClick(View v) { final SyncTaskItem new_stli = buildSyncTaskListItem(mDialog, n_sti); @@ -4730,7 +4721,7 @@ public void positiveResponse(Context c, Object[] o) { mUtil.addDebugMsg(1,"I","editSyncTask edit saved, type="+type+", task="+new_stli.getSyncTaskName()); ((ActivityMain)getActivity()).refreshOptionMenu(); - checkLocationServiceWarning(getActivity(), mGp, mUtil); +// checkLocationServiceWarning(getActivity(), mGp, mUtil); } @Override @@ -5846,4 +5837,28 @@ public void writeExternal(ObjectOutput objectOutput) throws IOException { objectOutput.writeUTF(zip_file_password); } } + + private class AdapterWifiOption extends CustomSpinnerAdapter { + private Activity a; + public AdapterWifiOption(Activity c, int textViewResourceId) { + super(c, textViewResourceId); + a=c; + } + + @Override + public boolean isEnabled(int position) { + return position!=2; + } + + @Override + public View getDropDownView(int position, View convertView, ViewGroup parent) { + final TextView text=(TextView)super.getDropDownView(position, convertView, parent); + if (position==2) { + CommonDialog.setViewEnabled(a, text, false); + } else { + CommonDialog.setViewEnabled(a, text, true); + } + return text; + } + } } diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskItem.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskItem.java index b5f9f4fc..41b9676e 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskItem.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskItem.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskUtil.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskUtil.java index 978e19ea..522bf8c7 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskUtil.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncTaskUtil.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -142,6 +142,7 @@ this software and associated documentation files (the "Software"), to deal import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_PROF_VER6; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_PROF_VER7; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_PROF_VER8; +import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_SCREEN_THEME_LANGUAGE_SYSTEM; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_UNLOAD_SETTINGS_TYPE_BOOLEAN; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_UNLOAD_SETTINGS_TYPE_INT; import static com.sentaroh.android.SMBSync2.Constants.SMBSYNC2_UNLOAD_SETTINGS_TYPE_LONG; @@ -1387,7 +1388,7 @@ public void deleteSyncTask(final NotifyEvent p_ntfy) { for (int i = 0; i < mGp.syncTaskAdapter.getCount(); i++) { if (mGp.syncTaskAdapter.getItem(i).isChecked()) { - dpmsg = dpmsg + mGp.syncTaskAdapter.getItem(i).getSyncTaskName() + "\n"; + dpmsg = dpmsg + "- "+mGp.syncTaskAdapter.getItem(i).getSyncTaskName() + "\n"; dpnum[i] = i; } else dpnum[i] = -1; } @@ -2783,6 +2784,9 @@ public void editWifiIPAddressListDlg(final ArrayList addr_list, final No title.setTextColor(mGp.themeColorList.title_text_color); title.setText(mContext.getString(R.string.msgs_profile_sync_task_dlg_wifi_addr_title)); + LinearLayout ll_filter_guide=(LinearLayout)ll_dlg_view.findViewById(R.id.filter_select_edit_ip_address_guide_ll); + ll_filter_guide.setVisibility(LinearLayout.VISIBLE); + Button add_current_addr = (Button) dialog.findViewById(R.id.filter_select_edit_list_dir_btn); add_current_addr.setText(mContext.getString(R.string.msgs_profile_sync_task_dlg_wifi_addr_add_current_addr)); @@ -7966,7 +7970,6 @@ public static void saveSettingsParmsToFile(Context c, PrintWriter pw, boolean en saveSettingsParmsToFileString(c, pw, "", encrypt_required, cp, c.getString(R.string.settings_mgt_dir)); saveSettingsParmsToFileBoolean(c, pw, false, encrypt_required, cp, c.getString(R.string.settings_suppress_warning_app_specific_dir)); - saveSettingsParmsToFileBoolean(c, pw, false, encrypt_required, cp, c.getString(R.string.settings_suppress_warning_location_service_disabled)); saveSettingsParmsToFileString(c, pw, "1", encrypt_required, cp, c.getString(R.string.settings_notification_message_when_sync_ended)); saveSettingsParmsToFileString(c, pw, "0", encrypt_required, cp, c.getString(R.string.settings_playback_ringtone_when_sync_ended)); @@ -7974,9 +7977,12 @@ public static void saveSettingsParmsToFile(Context c, PrintWriter pw, boolean en saveSettingsParmsToFileString(c, pw, "0", encrypt_required, cp, c.getString(R.string.settings_vibrate_when_sync_ended)); saveSettingsParmsToFileBoolean(c, pw, false, encrypt_required, cp, c.getString(R.string.settings_device_orientation_portrait)); saveSettingsParmsToFileBoolean(c, pw, false, encrypt_required, cp, c.getString(R.string.settings_device_orientation_landscape_tablet)); - saveSettingsParmsToFileString(c, pw, "0", encrypt_required, cp, c.getString(R.string.settings_screen_theme_language)); + saveSettingsParmsToFileString(c, pw, SMBSYNC2_SCREEN_THEME_LANGUAGE_SYSTEM, + encrypt_required, cp, c.getString(R.string.settings_screen_theme_language)); saveSettingsParmsToFileString(c, pw, "0", encrypt_required, cp, c.getString(R.string.settings_screen_theme)); saveSettingsParmsToFileBoolean(c, pw, true, encrypt_required, cp, c.getString(R.string.settings_dim_screen_on_while_sync)); + saveSettingsParmsToFileString(c, pw, GlobalParameters.FONT_SCALE_FACTOR_NORMAL, + encrypt_required, cp, c.getString(R.string.settings_display_font_scale_factor)); saveSettingsParmsToFileBoolean(c, pw, false, encrypt_required, cp, c.getString(R.string.settings_log_option)); saveSettingsParmsToFileBoolean(c, pw, false, encrypt_required, cp, c.getString(R.string.settings_put_logcat_option)); diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThread.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThread.java index 03ee1569..33cc1611 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThread.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThread.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -75,6 +75,7 @@ this software and associated documentation files (the "Software"), to deal import java.util.Comparator; import java.util.Date; import java.util.Locale; +import java.util.Properties; import java.util.TimeZone; import java.util.concurrent.TimeUnit; import java.util.regex.Matcher; @@ -486,6 +487,13 @@ private void listSyncOption(SyncTaskItem sti) { ", MountPoint=" + sti.getTargetLocalMountPoint() + ", UseTakenDateTime=" + sti.isTargetUseTakenDateTimeToDirectoryNameKeyword(), ""); + mStwa.util.addDebugMsg(1, "I", " Archive Suffix=" + sti.getArchiveSuffixOption() + + ", Rename file template=" + sti.getArchiveRenameFileTemplate() + + ", Rename directory template=" + sti.getArchiveCreateDirectoryTemplate() + + ", Use rename=" + sti.isArchiveUseRename() + + ", Retntion period=" + sti.getArchiveRetentionPeriod() + + ", Create directory=" + sti.isArchiveCreateDirectory() + + ""); mStwa.util.addDebugMsg(1, "I", " File filter Audio=" + sti.isSyncFileTypeAudio() + ", Image=" + sti.isSyncFileTypeImage() + ", Video=" + sti.isSyncFileTypeVideo() + @@ -536,7 +544,9 @@ private void initSyncParms(SyncTaskItem sti) { if (sti.getMasterSmbProtocol().equals(SyncTaskItem.SYNC_FOLDER_SMB_PROTOCOL_SMB1)) { mStwa.masterAuth=new JcifsAuth(JcifsAuth.JCIFS_FILE_SMB1, mst_dom, mst_user, mst_pass); } else { - mStwa.masterAuth=new JcifsAuth(mst_smb_level, mst_dom, mst_user, mst_pass, sti.isMasterSmbIpcSigningEnforced(), sti.isMasterSmbUseSmb2Negotiation()); + Properties prop_new = new Properties(); + prop_new.setProperty("jcifs.smb.client.responseTimeout", mGp.settingsSmbClientResponseTimeout); + mStwa.masterAuth=new JcifsAuth(mst_smb_level, mst_dom, mst_user, mst_pass, sti.isMasterSmbIpcSigningEnforced(), sti.isMasterSmbUseSmb2Negotiation(), prop_new); } String tgt_dom=null, tgt_user=null, tgt_pass=null; @@ -547,7 +557,9 @@ private void initSyncParms(SyncTaskItem sti) { if (sti.getTargetSmbProtocol().equals(SyncTaskItem.SYNC_FOLDER_SMB_PROTOCOL_SMB1)) { mStwa.targetAuth=new JcifsAuth(JcifsAuth.JCIFS_FILE_SMB1, tgt_dom, tgt_user, tgt_pass); } else { - mStwa.targetAuth=new JcifsAuth(tgt_smb_level, tgt_dom, tgt_user, tgt_pass, sti.isTargetSmbIpcSigningEnforced(), sti.isTargetSmbUseSmb2Negotiation()); + Properties prop_new = new Properties(); + prop_new.setProperty("jcifs.smb.client.responseTimeout", mGp.settingsSmbClientResponseTimeout); + mStwa.targetAuth=new JcifsAuth(tgt_smb_level, tgt_dom, tgt_user, tgt_pass, sti.isTargetSmbIpcSigningEnforced(), sti.isTargetSmbUseSmb2Negotiation(), prop_new); } mStwa.syncTaskRetryCount = mStwa.syncTaskRetryCountOriginal = Integer.parseInt(sti.getSyncOptionRetryCount()) + 1; @@ -976,10 +988,11 @@ private static boolean isReplaceKeywordRequiredAtWhileSync(String fp) { private int performSync(SyncTaskItem sti) { int sync_result = 0; long time_millis = System.currentTimeMillis(); - String from, to, to_temp; + String from, from_temp, to, to_temp; if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL)) { - from = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(sti.getTargetLocalMountPoint(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1001,7 +1014,8 @@ private int performSync(SyncTaskItem sti) { } } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_ZIP)) { - from = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = sti.getTargetLocalMountPoint() + sti.getTargetZipOutputFileName(); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1024,7 +1038,8 @@ private int performSync(SyncTaskItem sti) { } } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD)) { - from = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1056,7 +1071,8 @@ private int performSync(SyncTaskItem sti) { } } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB)) { - from = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1089,7 +1105,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB)) { //Internal to SMB - from = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(sti.getMasterLocalMountPoint(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildSmbHostUrl(mStwa.targetSmbAddress, sti.getTargetSmbPort(), sti.getTargetSmbShareName(), sti.getTargetDirectoryName()); @@ -1111,7 +1128,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL)) { //External to Internal - from = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(sti.getTargetLocalMountPoint(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1144,7 +1162,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL)) { //External to Internal - from = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(sti.getTargetLocalMountPoint(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1177,7 +1196,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD)) { //External to External - from = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1210,7 +1230,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB)) { //External to External - from = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1243,7 +1264,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB)) { //External to External - from = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1276,7 +1298,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD)) { //External to External - from = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1309,8 +1332,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SDCARD) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB)) { //External to SMB - from = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); - + from_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildSmbHostUrl(mStwa.targetSmbAddress, sti.getTargetSmbPort(), sti.getTargetSmbShareName(), sti.getTargetDirectoryName()); @@ -1344,8 +1367,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_USB) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB)) { //External to SMB - from = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); - + from_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getMasterDirectoryName()); + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildSmbHostUrl(sti.getTargetSmbAddr(), sti.getTargetSmbPort(), sti.getTargetSmbShareName(), sti.getTargetDirectoryName()); @@ -1379,9 +1402,8 @@ private int performSync(SyncTaskItem sti) { } else if (sti.getMasterFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_SMB) && sti.getTargetFolderType().equals(SyncTaskItem.SYNC_FOLDER_TYPE_INTERNAL)) { //External to Internal - from = buildSmbHostUrl(mStwa.masterSmbAddress, - sti.getMasterSmbPort(), sti.getMasterSmbShareName(), sti.getMasterDirectoryName()) + "/"; - + from_temp = buildSmbHostUrl(mStwa.masterSmbAddress, sti.getMasterSmbPort(), sti.getMasterSmbShareName(), sti.getMasterDirectoryName()) + "/"; + from=replaceKeywordValue(from_temp, time_millis); to_temp = buildStorageDir(sti.getTargetLocalMountPoint(), sti.getTargetDirectoryName()); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); @@ -1404,8 +1426,9 @@ private int performSync(SyncTaskItem sti) { //External to External to_temp = buildStorageDir(mGp.safMgr.getSdcardRootPath(), sti.getTargetDirectoryName()); - from = buildSmbHostUrl(mStwa.masterSmbAddress, + from_temp = buildSmbHostUrl(mStwa.masterSmbAddress, sti.getMasterSmbPort(), sti.getMasterSmbShareName(), sti.getMasterDirectoryName()) + "/"; + from=replaceKeywordValue(from_temp, time_millis); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); else to = replaceKeywordValue(to_temp, time_millis); @@ -1439,8 +1462,9 @@ private int performSync(SyncTaskItem sti) { //External to External to_temp = buildStorageDir(mGp.safMgr.getUsbRootPath(), sti.getTargetDirectoryName()); - from = buildSmbHostUrl(mStwa.masterSmbAddress, + from_temp = buildSmbHostUrl(mStwa.masterSmbAddress, sti.getMasterSmbPort(), sti.getMasterSmbShareName(), sti.getMasterDirectoryName()) + "/"; + from=replaceKeywordValue(from_temp, time_millis); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); else to = replaceKeywordValue(to_temp, time_millis); @@ -1475,8 +1499,9 @@ private int performSync(SyncTaskItem sti) { to_temp = buildSmbHostUrl(mStwa.targetSmbAddress, sti.getTargetSmbPort(), sti.getTargetSmbShareName(), sti.getTargetDirectoryName()) + "/"; - from = buildSmbHostUrl(mStwa.masterSmbAddress, + from_temp = buildSmbHostUrl(mStwa.masterSmbAddress, sti.getMasterSmbPort(), sti.getMasterSmbShareName(), sti.getMasterDirectoryName()) + "/"; + from=replaceKeywordValue(from_temp, time_millis); if (sti.isTargetUseTakenDateTimeToDirectoryNameKeyword()) to = to_temp;//replaceKeywordValue(to_temp, time_millis); else to = replaceKeywordValue(to_temp, time_millis); @@ -1993,47 +2018,48 @@ private String isWifiConditionSatisfied(SyncTaskItem sti) { if (sti.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_ANY_AP)) { if (!isConnectedToAnyWifiAP()) result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected); } else if (sti.getSyncOptionWifiStatusOption().equals(SyncTaskItem.SYNC_WIFI_STATUS_WIFI_CONNECT_SPECIFIC_AP)) { - if (!isConnectedToAnyWifiAP()) result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected); - else { - ArrayList wl = sti.getSyncOptionWifiConnectedAccessPointWhiteList(); - ArrayList inc = new ArrayList(); - int flags = Pattern.CASE_INSENSITIVE; - for (String apl : wl) { - if (apl.startsWith("I")) { - String prefix = "", suffix = ""; - if (apl.substring(1).endsWith("*")) suffix = "$"; - inc.add(Pattern.compile(prefix + MiscUtil.convertRegExp(apl.substring(1)) + suffix, flags)); - mStwa.util.addDebugMsg(1, "I", "isWifiConditionSatisfied AP include added=" + inc.get(inc.size() - 1).toString()); - } - } - if (!getWifiConnectedAP().equals("")) { - if (inc.size() > 0) { - Matcher mt; - boolean found = false; - for (Pattern pat : inc) { - if (Build.VERSION.SDK_INT>=27) { - mt = pat.matcher(getWifiConnectedAP()); - } else { - mt = pat.matcher(mGp.wifiSsid); - } - if (mt.find()) { - found = true; - mStwa.util.addDebugMsg(1, "I", "isWifiConditionSatisfied AP include matched=" + pat.toString()); - break; - } - } - if (!found) { - if (sti.isSyncOptionTaskSkipIfConnectAnotherWifiSsid()) { - result = mStwa.context.getString(R.string.msgs_mirror_sync_skipped_wifi_ap_conn_other); - } else { - result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_conn_other); - } - } - } - } else { - result=getWiFiAPNameErrorReason(sti); - } - } + result = mStwa.context.getString(R.string.msgs_main_permission_ap_list_no_longer_available_sync_msg); +// if (!isConnectedToAnyWifiAP()) result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected); +// else { +// ArrayList wl = sti.getSyncOptionWifiConnectedAccessPointWhiteList(); +// ArrayList inc = new ArrayList(); +// int flags = Pattern.CASE_INSENSITIVE; +// for (String apl : wl) { +// if (apl.startsWith("I")) { +// String prefix = "", suffix = ""; +// if (apl.substring(1).endsWith("*")) suffix = "$"; +// inc.add(Pattern.compile(prefix + MiscUtil.convertRegExp(apl.substring(1)) + suffix, flags)); +// mStwa.util.addDebugMsg(1, "I", "isWifiConditionSatisfied AP include added=" + inc.get(inc.size() - 1).toString()); +// } +// } +// if (!getWifiConnectedAP().equals("")) { +// if (inc.size() > 0) { +// Matcher mt; +// boolean found = false; +// for (Pattern pat : inc) { +// if (Build.VERSION.SDK_INT>=27) { +// mt = pat.matcher(getWifiConnectedAP()); +// } else { +// mt = pat.matcher(mGp.wifiSsid); +// } +// if (mt.find()) { +// found = true; +// mStwa.util.addDebugMsg(1, "I", "isWifiConditionSatisfied AP include matched=" + pat.toString()); +// break; +// } +// } +// if (!found) { +// if (sti.isSyncOptionTaskSkipIfConnectAnotherWifiSsid()) { +// result = mStwa.context.getString(R.string.msgs_mirror_sync_skipped_wifi_ap_conn_other); +// } else { +// result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_conn_other); +// } +// } +// } +// } else { +// result=getWiFiAPNameErrorReason(sti); +// } +// } } } } @@ -2056,41 +2082,41 @@ private String isWifiConditionSatisfied(SyncTaskItem sti) { return result; } - private String getWiFiAPNameErrorReason(SyncTaskItem sti) { - String result=""; - if (Build.VERSION.SDK_INT>=27) { - if (!CommonUtilities.isLocationServiceEnabled(mStwa.context, mStwa.gp)) { - result=mStwa.context.getString(R.string.msgs_main_location_error_location_service_is_disabled); - return result; - } - } - WifiManager wm = (WifiManager) mStwa.context.getSystemService(Context.WIFI_SERVICE); - if (wm.isWifiEnabled()) { - String ssid_name=wm.getConnectionInfo().getSSID(); - if (ssid_name!=null) { - if (Build.VERSION.SDK_INT==27 || Build.VERSION.SDK_INT==28) {//Android 8.1 && 9 - if (mStwa.context.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)!= PackageManager.PERMISSION_GRANTED) { - result=mStwa.context.getString(R.string.msgs_main_location_error_location_permission_not_granted); - } - } else if (Build.VERSION.SDK_INT>=29) {//Android 10 莉・荳 - if (mStwa.context.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)!= PackageManager.PERMISSION_GRANTED) { - result=mStwa.context.getString(R.string.msgs_main_location_error_location_permission_not_granted); - } else if (mStwa.context.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)!= PackageManager.PERMISSION_GRANTED) { - result=mStwa.context.getString(R.string.msgs_main_location_error_background_location_permission_not_granted); - } - } else { - result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected)+" ssid="+ssid_name; - } - } else { - //SSID is null - result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected)+" ssid="+ssid_name; - } - } else { - //WIFI Off - result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_is_off); - } - return result; - } +// private String getWiFiAPNameErrorReason(SyncTaskItem sti) { +// String result=""; +// if (Build.VERSION.SDK_INT>=27) { +// if (!CommonUtilities.isLocationServiceEnabled(mStwa.context, mStwa.gp)) { +// result=mStwa.context.getString(R.string.msgs_main_location_error_location_service_is_disabled); +// return result; +// } +// } +// WifiManager wm = (WifiManager) mStwa.context.getSystemService(Context.WIFI_SERVICE); +// if (wm.isWifiEnabled()) { +// String ssid_name=wm.getConnectionInfo().getSSID(); +// if (ssid_name!=null) { +// if (Build.VERSION.SDK_INT==27 || Build.VERSION.SDK_INT==28) {//Android 8.1 && 9 +// if (mStwa.context.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION)!= PackageManager.PERMISSION_GRANTED) { +// result=mStwa.context.getString(R.string.msgs_main_location_error_location_permission_not_granted); +// } +// } else if (Build.VERSION.SDK_INT>=29) {//Android 10 莉・荳 +// if (mStwa.context.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION)!= PackageManager.PERMISSION_GRANTED) { +// result=mStwa.context.getString(R.string.msgs_main_location_error_location_permission_not_granted); +// } else if (mStwa.context.checkSelfPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION)!= PackageManager.PERMISSION_GRANTED) { +// result=mStwa.context.getString(R.string.msgs_main_location_error_background_location_permission_not_granted); +// } +// } else { +// result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected)+" ssid="+ssid_name; +// } +// } else { +// //SSID is null +// result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_ap_not_connected)+" ssid="+ssid_name; +// } +// } else { +// //WIFI Off +// result = mStwa.context.getString(R.string.msgs_mirror_sync_can_not_start_wifi_is_off); +// } +// return result; +// } private boolean isPrivateAddress(String if_addr) { if (if_addr.startsWith("10.")) return true; diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadArchiveFile.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadArchiveFile.java index 84a843ca..3bc62b75 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadArchiveFile.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadArchiveFile.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -2479,6 +2479,7 @@ static final public String[] getFileExifDateTime(SyncThreadWorkArea stwa, SyncTa // if (date_time==null || date_time[0]==null) { // date_time= StringUtil.convDateTimeTo_YearMonthDayHourMinSec(last_mod).split(" "); // } + try {fis_retry.close();} catch(Exception e) {}; return date_time; } diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadCopyFile.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadCopyFile.java index bef6fb82..98bf9dd6 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadCopyFile.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadCopyFile.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncFile.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncFile.java index 1a5ba3b0..cbbe21a4 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncFile.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncFile.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncZip.java b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncZip.java index 0ddc4a3e..d6297c77 100644 --- a/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncZip.java +++ b/SMBSync2/src/main/java/com/sentaroh/android/SMBSync2/SyncThreadSyncZip.java @@ -2,7 +2,7 @@ /* The MIT License (MIT) -Copyright (c) 2011-2018 Sentaroh +Copyright (c) 2011 Sentaroh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SMBSync2/src/main/res/layout-land/edit_sync_folder_dlg_smb.xml b/SMBSync2/src/main/res/layout-land/edit_sync_folder_dlg_smb.xml index ca46e817..3b542a91 100644 --- a/SMBSync2/src/main/res/layout-land/edit_sync_folder_dlg_smb.xml +++ b/SMBSync2/src/main/res/layout-land/edit_sync_folder_dlg_smb.xml @@ -177,14 +177,6 @@ -