diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c386cd..48ff632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## 1.6.1 - 2024-01-26 +## 1.7 - 2024-02-07 + +### Added +- Automatically create symlinks for mounts (#110, thanks @xela1) ### Changed - Updated known-good Backblaze version to 9.0.1.763 > [!NOTE] > Backblaze will automatically be updated to a known-good version mentioned above, if your installed version is older. > This download of the new version may take some time, so you will only see a black screen until the download is finished. After that, the installer appears and you can update Backblaze by clicking on "install". +- Fix error `Make sure that your X server is running and that $DISPLAY is set correctly` when running basic CLI commands like `winecfg` by adding the DISPLAY environment variable to the Dockerfiles + ## 1.6 - 2024-01-22 diff --git a/README.md b/README.md index f85b81e..010f20b 100644 --- a/README.md +++ b/README.md @@ -141,9 +141,9 @@ container cannot be changed, but you are free to use any port on the host side. A minimum of 2 volumes need to be mounted to the container * /config - This is where Wine and Backblaze will be installed - * Backup drives - these are the locations you wish to backup, any volume that is mounted as /drive_**driveletter** (from d up to z) will be mounted automatically for use in BackBlaze with their equivalent letter, for example for example /drive_d will be mounted as D:. + * Backup drives - these are the locations you wish to backup, any volume that is mounted as /drive_**driveletter** (from d up to z) will be mounted automatically for use in Backblaze with their equivalent letter, for example /drive_d will be mounted as D: -You can mount drives with a different paths, but these will need to be mounted manually within wine using the following method +You can mount drives with different paths, but these will need to be mounted manually within wine using the following method 1. Add your storage path as a wine drive, so Backblaze can access it diff --git a/RELEASE_VERSION b/RELEASE_VERSION index 69fd868..72970ee 100644 --- a/RELEASE_VERSION +++ b/RELEASE_VERSION @@ -1 +1 @@ -v1.6.1 \ No newline at end of file +v1.7 \ No newline at end of file diff --git a/startapp.sh b/startapp.sh index 40d3451..233800d 100644 --- a/startapp.sh +++ b/startapp.sh @@ -61,11 +61,11 @@ start_app() { sleep infinity } -# Pre-install Wine +# Pre-initialize Wine if [ ! -d "$WINEPREFIX" ]; then - echo "WINE: Wine not installed, initializing" + echo "WINE: Wine not initialized, initializing" wineboot -i - log_message "WINE: Installed" + log_message "WINE: Initialization done" fi #Configure Extra Mounts @@ -168,7 +168,7 @@ if [ -f "${WINEPREFIX}drive_c/Program Files (x86)/Backblaze/bzbui.exe" ]; then handle_error "UPDATER: Local version file does not exist. Exiting updater." fi fi -else ## Client not currently installed +else # Client currently not installed fetch_and_install && start_app fi