Skip to content

Commit

Permalink
Merge pull request #112 from JonathanTreffler/docs/bump_version+updat…
Browse files Browse the repository at this point in the history
…e_docs

(docs): bump version / update docs
  • Loading branch information
Thomas authored Feb 7, 2024
2 parents 24455b0 + 3f92059 commit 51f595b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.6.1
v1.7
8 changes: 4 additions & 4 deletions startapp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 51f595b

Please sign in to comment.