Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
1.9.1
  • Loading branch information
AgustinSRG committed Aug 16, 2023
1 parent 2c1b979 commit 1454e6a
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion backend/doc/api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ swagger: "2.0"
info:
title: PersonalMediaVault Backend API
description: API to access PersonalMediaVault from a web client.
version: 1.9.0
version: 1.9.1

schemes:
- http
Expand Down
2 changes: 1 addition & 1 deletion backend/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
child_process_manager "github.com/AgustinSRG/go-child-process-manager"
)

const BACKEND_VERSION = "1.9.0"
const BACKEND_VERSION = "1.9.1"

type BackendOptions struct {
debug bool // Debug mode
Expand Down
4 changes: 2 additions & 2 deletions frontend/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VUE_APP_I18N_LOCALE=en
VUE_APP_I18N_FALLBACK_LOCALE=en
VUE_APP_VERSION=1.9.0
VUE_APP_VERSION_DATE=2023-08-15
VUE_APP_VERSION=1.9.1
VUE_APP_VERSION_DATE=2023-08-16
VUE_APP_HOME_URL=https://github.com/AgustinSRG/PersonalMediaVault
VUE_APP_GIT_URL=https://github.com/AgustinSRG/PersonalMediaVault
VUE_APP_LICENSE_URL=https://github.com/AgustinSRG/PersonalMediaVault/blob/master/LICENSE
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pmv-frontend",
"version": "1.9.0",
"version": "1.9.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion launcher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/nicksnyder/go-i18n/v2/i18n"
)

const VERSION = "1.9.0"
const VERSION = "1.9.1"

// Program entry point
func main() {
Expand Down
2 changes: 1 addition & 1 deletion launcher/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity name="PersonalMediaVault" version="1.9.0.0" processorArchitecture="*" type="win32" />
<assemblyIdentity name="PersonalMediaVault" version="1.9.1.0" processorArchitecture="*" type="win32" />
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
Expand Down
2 changes: 1 addition & 1 deletion packages/dpkg-deb/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cd ../packages/dpkg-deb

PMV_VERSION_MAJOR=1
PMV_VERSION_MINOR=9
PMV_VERSION_REVISION=0
PMV_VERSION_REVISION=1

PMV_BIN_ARCH=amd64

Expand Down
2 changes: 1 addition & 1 deletion packages/windows-msi/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

<!-- Use * to generate product ID on every build -->
<Product Id="*" Name="PersonalMediaVault" Version="1.9.0.0" Language="!(loc.LanguageID)" Manufacturer="AgustinSRG" UpgradeCode="63d97155-cc29-4629-bc40-b690a6b68e58">
<Product Id="*" Name="PersonalMediaVault" Version="1.9.1.0" Language="!(loc.LanguageID)" Manufacturer="AgustinSRG" UpgradeCode="63d97155-cc29-4629-bc40-b690a6b68e58">

<Package Compressed="yes" InstallScope="perMachine" Manufacturer="AgustinSRG" Description="!(loc.ProgramPackageDescription)" Platform="x64" />

Expand Down
4 changes: 2 additions & 2 deletions packages/windows-msi/make-wix.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ call candle -ext WixUIExtension -ext WixUtilExtension -arch x64 HeatFile.wxs -o

call candle -ext WixUIExtension -ext WixUtilExtension -arch x64 Product.wxs -o Product.wixobj

call light Product.wixobj -spdb HeatFile.wixobj -cultures:en-us -loc en-us.wxl -b PersonalMediaVault -o PersonalMediaVault-1.9.0-x64.msi -ext WixUIExtension -ext WixUtilExtension
call light Product.wixobj -spdb HeatFile.wixobj -cultures:es-es -loc es-es.wxl -b PersonalMediaVault -o PersonalMediaVault-1.9.0-x64-es.msi -ext WixUIExtension -ext WixUtilExtension
call light Product.wixobj -spdb HeatFile.wixobj -cultures:en-us -loc en-us.wxl -b PersonalMediaVault -o PersonalMediaVault-1.9.1-x64.msi -ext WixUIExtension -ext WixUtilExtension
call light Product.wixobj -spdb HeatFile.wixobj -cultures:es-es -loc es-es.wxl -b PersonalMediaVault -o PersonalMediaVault-1.9.1-x64-es.msi -ext WixUIExtension -ext WixUtilExtension

0 comments on commit 1454e6a

Please sign in to comment.