Skip to content

Commit

Permalink
Merge pull request #285 from m1ndy/typo-patch-1
Browse files Browse the repository at this point in the history
Fixed a typo
  • Loading branch information
TheLastGimbus authored Feb 8, 2024
2 parents 821533e + 4009845 commit cd5eec3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion bin/gpth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ void main(List<String> 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(
Expand Down
2 changes: 1 addition & 1 deletion lib/moving.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Stream<int> 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 {
Expand Down

0 comments on commit cd5eec3

Please sign in to comment.