Skip to content

Commit

Permalink
Bump version (1.19.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
AgustinSRG committed Oct 19, 2024
1 parent 590f6ad commit 6f7185e
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 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.18.5
version: 1.19.0

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 @@ -13,7 +13,7 @@ import (
child_process_manager "github.com/AgustinSRG/go-child-process-manager"
)

const BACKEND_VERSION = "1.18.5"
const BACKEND_VERSION = "1.19.0"

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,6 +1,6 @@
VITE__I18N_LOCALE=en
VITE__VERSION=1.18.5
VITE__VERSION_DATE=2024-10-06
VITE__VERSION=1.19.0
VITE__VERSION_DATE=2024-10-19
VITE__HOME_URL=https://agustinsrg.github.io/pmv-site/
VITE__GIT_URL=https://github.com/AgustinSRG/PersonalMediaVault
VITE__LICENSE_URL=https://github.com/AgustinSRG/PersonalMediaVault/blob/master/LICENSE
Expand Down
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,7 +1,7 @@
{
"name": "pmv-frontend",
"type": "module",
"version": "1.18.5",
"version": "1.19.0",
"private": true,
"scripts": {
"serve": "vite",
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.18.5"
const VERSION = "1.19.0"

// Program entry point
func main() {
Expand Down
8 changes: 4 additions & 4 deletions launcher/winres/winres.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"0409": {
"identity": {
"name": "PersonalMediaVault",
"version": "1.18.5"
"version": "1.19.0"
},
"description": "",
"minimum-os": "win7",
Expand All @@ -36,8 +36,8 @@
"#1": {
"0000": {
"fixed": {
"file_version": "1.18.5.0",
"product_version": "1.18.5.0"
"file_version": "1.19.0.0",
"product_version": "1.19.0.0"
},
"info": {
"0409": {
Expand All @@ -51,7 +51,7 @@
"OriginalFilename": "",
"PrivateBuild": "",
"ProductName": "PersonalMediaVault",
"ProductVersion": "1.18.5",
"ProductVersion": "1.19.0",
"SpecialBuild": ""
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/dpkg-deb/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ cd ../packages/dpkg-deb
# Build package

PMV_VERSION_MAJOR=1
PMV_VERSION_MINOR=18
PMV_VERSION_REVISION=5
PMV_VERSION_MINOR=19
PMV_VERSION_REVISION=0

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.18.5.0" Language="!(loc.LanguageID)" Manufacturer="AgustinSRG" UpgradeCode="63d97155-cc29-4629-bc40-b690a6b68e58">
<Product Id="*" Name="PersonalMediaVault" Version="1.19.0.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.18.5-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.18.5-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.19.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.19.0-x64-es.msi -ext WixUIExtension -ext WixUtilExtension

0 comments on commit 6f7185e

Please sign in to comment.