Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display-the-log-file-before-ending-the-program #256

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## Release next

### fix [#215](https://github.com/simulot/immich-go/issues/215) Use XDG_CONFIG_HOME for storing config
### Fix Display the path of log file name

The log file name is printed before the execution end.

### Fix [#215](https://github.com/simulot/immich-go/issues/215) Use XDG_CONFIG_HOME for storing config
The configuration file that contains the server and the key is now stored by default in following folder:
- Linux `$HOME/.config/immich-go/immich-go.json`
- Windows `%AppData%\immich-go\immich-go.json`
Expand All @@ -26,9 +30,10 @@ This release is focussed the improvement of the user experience.
### A shiny user interface

```
. _ _ _ _ . _|_ __ _ _
|| | || | ||(_| | (_|(_)
version dev _)
. _ _ _ _ . _|_ _ _
|| | || | ||(_| | ─ (_|(_)
v dev _)

```

Working with big database and big takeout files take some time. Users are now informed about the progression of different tasks:
Expand Down
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,6 @@ func Run(ctx context.Context) error {
if err != nil {
log.Error(err.Error())
}
fmt.Println("\nCheck the log file: ", app.LogFile)
return err
}