diff --git a/README.md b/README.md index 9b9ddbea..3df198ef 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ I spent **a lot of** time fixing bugs and making this work stable 💖 - would b ### Be aware if you move your photos on your Android phone... ☝ (99% of the times), if you move some files in Android, their creation and modification time is reset to current. -"Simple Gallery" app usually keeps original file creation time when moving and coping (but I don't guarantee it). It's also pretty cool - check it out: https://github.com/SimpleMobileTools/Simple-Gallery +"Simple Gallery" app usually keeps original file creation time when moving and copying (but I don't guarantee it). It's also pretty cool - check it out: https://github.com/SimpleMobileTools/Simple-Gallery ### What to do when you got rid of Google Photos? What are the alternatives? 🗺 - I really recommend you using [Syncthing](https://syncthing.net/) for syncing your photos and files across devices. It does so through your local Wi-Fi, so you're not dependent on any service or internet connection. It will also keep original file creation date and metadata, so it resolves Android issue that I mentioned before. diff --git a/bin/gpth.dart b/bin/gpth.dart index 5eac20fb..0e2f2e0f 100644 --- a/bin/gpth.dart +++ b/bin/gpth.dart @@ -361,7 +361,7 @@ void main(List arguments) async { final barCopy = FillingBar( total: outputFileCount(media, args['albums']), - desc: "${args['copy'] ? 'Coping' : 'Moving'} photos to output folder", + desc: "${args['copy'] ? 'Copying' : 'Moving'} photos to output folder", width: barWidth, ); await moveFiles( diff --git a/lib/moving.dart b/lib/moving.dart index 358d2b37..e995a0e8 100644 --- a/lib/moving.dart +++ b/lib/moving.dart @@ -157,7 +157,7 @@ Stream moveFiles( // in case powershell fails/whatever print('Creating shortcut for ' '${p.basename(mainFile.path)} in ${p.basename(folder.path)} ' - 'failed :(\n$e\n - coping normal file instead'); + 'failed :(\n$e\n - copying normal file instead'); result = await moveFile(); } } else {