Merge branch 'rmcrackan:master' into master
This commit is contained in:
commit
cc72517284
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -27,4 +27,4 @@ If applicable, add screenshots to help explain your problem.
|
|||||||
[e.g. Windows 10, Windows 11, Mac, Linux (State distribution)]
|
[e.g. Windows 10, Windows 11, Mac, Linux (State distribution)]
|
||||||
|
|
||||||
**Log Files**
|
**Log Files**
|
||||||
Attach your Libation log file here. Logs are typically in your `[user]\Libation` folder. (For example, on windows: `C:\my_username\Libation`) Also within Libation, on the first tab in Settings you can click the button 'Open log folder'
|
Attach your Libation log file here. Logs are typically in your `[user]\Libation` folder. (For example, on windows: `C:\my_username\Libation`) Also within Libation, on the first tab in Settings you can click the button 'Open log folder'. If your user folder contains the file "LibationCrash.log", attach that also.
|
||||||
|
|||||||
@ -124,7 +124,7 @@ main() {
|
|||||||
init_config_file Settings.json
|
init_config_file Settings.json
|
||||||
|
|
||||||
info "loading settings"
|
info "loading settings"
|
||||||
update_settings Settings.json Books /data
|
update_settings Settings.json Books "${LIBATION_BOOKS_DIR:-/data}"
|
||||||
update_settings Settings.json InProgress /tmp
|
update_settings Settings.json InProgress /tmp
|
||||||
|
|
||||||
info "loading database"
|
info "loading database"
|
||||||
|
|||||||
@ -7,6 +7,10 @@
|
|||||||
|
|
||||||
# Frequently Asked Questions
|
# Frequently Asked Questions
|
||||||
|
|
||||||
|
## Q: Where can I get help for my specific problem?
|
||||||
|
|
||||||
|
**A:** [You can open an issue here](https://github.com/rmcrackan/Libation/issues) for bug reports, feature requests, or specialized help.
|
||||||
|
|
||||||
## Q: What's the difference between 'Classic' and 'Chardonnay'?
|
## Q: What's the difference between 'Classic' and 'Chardonnay'?
|
||||||
|
|
||||||
**A:** First and most importantly: Classic and Chardonnay have the exact same features.
|
**A:** First and most importantly: Classic and Chardonnay have the exact same features.
|
||||||
|
|||||||
@ -15,6 +15,7 @@
|
|||||||
- [Download PDF attachments](#download-pdf-attachments)
|
- [Download PDF attachments](#download-pdf-attachments)
|
||||||
- [Details of downloaded files](#details-of-downloaded-files)
|
- [Details of downloaded files](#details-of-downloaded-files)
|
||||||
- [Export your library](#export-your-library)
|
- [Export your library](#export-your-library)
|
||||||
|
- [I still need help](#i-still-need-help)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -148,3 +149,7 @@ When you set up Libation, you'll specify a Books directory. Libation looks insid
|
|||||||

|

|
||||||
|
|
||||||
Export your library to Excel, CSV, or JSON
|
Export your library to Excel, CSV, or JSON
|
||||||
|
|
||||||
|
### I still need help
|
||||||
|
|
||||||
|
[You can open an issue here](https://github.com/rmcrackan/Libation/issues) for bug reports, feature requests, or specialized help.
|
||||||
|
|||||||
@ -8,23 +8,23 @@
|
|||||||
|
|
||||||
[](https://repology.org/project/libation/versions)
|
[](https://repology.org/project/libation/versions)
|
||||||
|
|
||||||
New Libation releases are automatically packed into `.deb` and `.rpm` package and are available from the Libation repository's releases page.
|
New Libation releases are automatically packed into `.deb` and `.rpm` package and are available from the [Libation repository's releases page](https://github.com/rmcrackan/Libation/releases).
|
||||||
|
|
||||||
Run this command in your terminal to download and install Libation, replacing the url with the latest Libation package url:
|
Run these commands in your terminal to download and install Libation. **Make sure you replace** `X.X.X` with the latest Libation version and `ARCH` with your CPU's architechture (either `amd64` or `arm64`).
|
||||||
|
|
||||||
### Debian
|
### Debian
|
||||||
```Console
|
```Console
|
||||||
wget -O libation.deb https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay.deb &&
|
wget -O libation.deb https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay-ARCH.deb
|
||||||
sudo apt install ./libation.deb
|
sudo apt install ./libation.deb
|
||||||
```
|
```
|
||||||
### Redhat and CentOS
|
### Redhat and CentOS
|
||||||
```Console
|
```Console
|
||||||
wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay.rpm &&
|
wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay-ARCH.rpm
|
||||||
sudo yum install ./libation.rpm
|
sudo yum install ./libation.rpm
|
||||||
```
|
```
|
||||||
### Fedora
|
### Fedora
|
||||||
```Console
|
```Console
|
||||||
wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay.rpm &&
|
wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay-ARCH.rpm
|
||||||
sudo dnf5 install ./libation.rpm
|
sudo dnf5 install ./libation.rpm
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
|
|||||||
@ -22,6 +22,7 @@
|
|||||||
- [Download PDF attachments](Documentation/GettingStarted.md#download-pdf-attachments)
|
- [Download PDF attachments](Documentation/GettingStarted.md#download-pdf-attachments)
|
||||||
- [Details of downloaded files](Documentation/GettingStarted.md#details-of-downloaded-files)
|
- [Details of downloaded files](Documentation/GettingStarted.md#details-of-downloaded-files)
|
||||||
- [Export your library](Documentation/GettingStarted.md#export-your-library)
|
- [Export your library](Documentation/GettingStarted.md#export-your-library)
|
||||||
|
- If you still need help, [you can open an issue here](https://github.com/rmcrackan/Libation/issues) for bug reports, feature requests, or specialized help.
|
||||||
- [Searching and filtering](Documentation/SearchingAndFiltering.md)
|
- [Searching and filtering](Documentation/SearchingAndFiltering.md)
|
||||||
- [Tags](Documentation/SearchingAndFiltering.md#tags)
|
- [Tags](Documentation/SearchingAndFiltering.md#tags)
|
||||||
- [Searches](Documentation/SearchingAndFiltering.md#searches)
|
- [Searches](Documentation/SearchingAndFiltering.md#searches)
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Version>12.4.4.1</Version>
|
<Version>12.4.5.1</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Octokit" Version="14.0.0" />
|
<PackageReference Include="Octokit" Version="14.0.0" />
|
||||||
|
|||||||
@ -132,7 +132,7 @@ namespace LibationFileManager
|
|||||||
public bool AllowLibationFixup { get => GetNonString(defaultValue: true); set => SetNonString(value); }
|
public bool AllowLibationFixup { get => GetNonString(defaultValue: true); set => SetNonString(value); }
|
||||||
|
|
||||||
[Description("Create a cue sheet (.cue)")]
|
[Description("Create a cue sheet (.cue)")]
|
||||||
public bool CreateCueSheet { get => GetNonString(defaultValue: true); set => SetNonString(value); }
|
public bool CreateCueSheet { get => GetNonString(defaultValue: false); set => SetNonString(value); }
|
||||||
|
|
||||||
[Description("Retain the Aax file after successfully decrypting")]
|
[Description("Retain the Aax file after successfully decrypting")]
|
||||||
public bool RetainAaxFile { get => GetNonString(defaultValue: false); set => SetNonString(value); }
|
public bool RetainAaxFile { get => GetNonString(defaultValue: false); set => SetNonString(value); }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user