Skip to content

Commit

Permalink
Merge pull request #258 from simulot:simulot/issue215
Browse files Browse the repository at this point in the history
Fix Display the path of log file name (#256)
  • Loading branch information
simulot authored May 26, 2024
2 parents 734bbeb + 9b70932 commit 8805ca7
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
53 changes: 50 additions & 3 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,52 @@ The default log file is:
The log file's name is displayed at exection end.


### 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`
- Apple `$HOME/Library/Application Support/immich-go/immich-go.json`

### Store the log files into sensible dir for user's system
The default log file is:
- Linux `$HOME/.cache/immich-go/immich-go_YYYY-MM-DD_HH-MI-SS.log`
- Windows `%LocalAppData%\immich-go\immich-go_YYYY-MM-DD_HH-MI-SS.log`
- Apple `$HOME/Library/Caches/immich-go/immich-go_YYYY-MM-DD_HH-MI-SS.log`

## Release next

<<<<<<< HEAD
### 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
=======
### fix [#215](https://github.com/simulot/immich-go/issues/215) Use XDG_CONFIG_HOME for storing config
>>>>>>> origin/main
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`
- Apple `$HOME/Library/Application Support/immich-go/immich-go.json`

### Store the log files into sensible dir for user's system
The default log file is:
- Linux `$HOME/.cache/immich-go/immich-go_YYYY-MM-DD_HH-MI-SS.log`
- Windows `%LocalAppData%\immich-go\immich-go_YYYY-MM-DD_HH-MI-SS.log`
- Apple `$HOME/Library/Caches/immich-go/immich-go_YYYY-MM-DD_HH-MI-SS.log`

<<<<<<< HEAD
=======
### Feat: [[#249](https://github.com/simulot/immich-go/issues/249)] Fix Display the path of log file name

The log file's name is displayed at exection end.


>>>>>>> origin/main
## Release 0.14.1

### fix [#246](https://github.com/simulot/immich-go/issues/246) Google Takeout 403 Forbidden on non admin user
Expand All @@ -31,9 +77,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
}

0 comments on commit 8805ca7

Please # to comment.