Skip to content

Version 1.17.0

Compare
Choose a tag to compare
@AgustinSRG AgustinSRG released this 14 Apr 11:42
· 25 commits to master since this release
b2b4534

Changelog

  • Added button to display extended description in the player if the extended description is not empty
  • Added new search API (/api/search/advanced) to use for advanced search features. It allows for efficient multi-tag filtering, improving search times for larger vaults.
  • Fixed issue with keyboard scroll (using arrow keys) in split mode. Before this fix, the player would take preference, even if the page was focused.
  • Fixed minor style issue when focusing the album upload modal, it was adding an unnecessary outline.

Downloads

Linux with DEB package support

For apt-compatible Linux distributions, we provide a DEB package:

Version Arch Download Hash Hash alg.
1.17.0 amd64 Drive
Mega
12cb634c145eecf1140b7b7d83a93d8fe38f7b5a02426b649d0782e0c08c4cd8 SHA256

Download it, and check its integrity using:

sha256sum ./personalmediavault_1.17-0.deb

Then, install it using apt:

sudo apt install ./personalmediavault_1.17-0.deb

After the installation, the binary files will be available in /usr/bin, and the frontend files will be available in /usr/lib/pmv/www.

To run a vault, type:

pmv /path/to/vault

You can change the language the launcher uses setting the PMV_LANGUAGE environment variable to en or es.

Windows

For Windows, we provide a MSI installer:

Version Arch Language Download Hash
1.17.0 x64 English Mega SHA256: 529E87D25A7EEF64D823AEA0B452160730C6FA5F9A70644A6CD462D5C277A45A
1.17.0 x64 Spanish Mega SHA256: 755C2EDBD0F39A3B6F95DAA3BC1D5C969BBB5065A54ECAA8D209C70267C578A8

In order to install Personal Media Vault in Windows, run the installer and everything will be set up for the application to work.

When downloading the MSI installer, check the file hash with PowerShell to make sure the file was not modified:

Get-FileHash -Path "PersonalMediaVault-1.17.0-x64.msi" -Algorithm SHA256
Get-FileHash -Path "PersonalMediaVault-1.17.0-x64-es.msi" -Algorithm SHA256

After it's installed, create an empty folder to store your media vault and right click it. You should see a new option "Open with PersonalMediaVault". Click it to run the vault launcher.

Docker

You can run this project with docker, using the official image uploaded to Docker Hub.

In order to pull the image, type:

docker pull asanrom/pmv

To run a personal media vault instance, you can create a container, which is going to run the backend binary inside it.

Here is an example command to create a container:

docker run -p 80:80 -v /path/to/the/vault:/vault asanrom/pmv --daemon --clean --log-requests --vault-path /vault

You can replace /path/to/the/vault for the path where you have your vault stored.

For empty vaults, a default admin, with password admin will be created. You should change the password as soon as you first login into your vault to protect it with a strong password.

For more options, run:

docker run asanrom/pmv --help