Skip to content

Commit

Permalink
Bump version (1.18.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
AgustinSRG committed Aug 14, 2024
1 parent 5c2e360 commit f8f906c
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 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.1
version: 1.18.2

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.1"
const BACKEND_VERSION = "1.18.2"

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.1
VITE__VERSION_DATE=2024-08-07
VITE__VERSION=1.18.2
VITE__VERSION_DATE=2024-08-14
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.1",
"version": "1.18.2",
"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.1"
const VERSION = "1.18.2"

// 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.1"
"version": "1.18.2"
},
"description": "",
"minimum-os": "win7",
Expand All @@ -36,8 +36,8 @@
"#1": {
"0000": {
"fixed": {
"file_version": "1.18.1.0",
"product_version": "1.18.1.0"
"file_version": "1.18.2.0",
"product_version": "1.18.2.0"
},
"info": {
"0409": {
Expand All @@ -51,7 +51,7 @@
"OriginalFilename": "",
"PrivateBuild": "",
"ProductName": "PersonalMediaVault",
"ProductVersion": "1.18.1",
"ProductVersion": "1.18.2",
"SpecialBuild": ""
}
}
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=18
PMV_VERSION_REVISION=1
PMV_VERSION_REVISION=2

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.1.0" Language="!(loc.LanguageID)" Manufacturer="AgustinSRG" UpgradeCode="63d97155-cc29-4629-bc40-b690a6b68e58">
<Product Id="*" Name="PersonalMediaVault" Version="1.18.2.5" 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.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.18.1-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.18.2-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.2-x64-es.msi -ext WixUIExtension -ext WixUtilExtension

0 comments on commit f8f906c

Please sign in to comment.