From 847642fe22cad13351cb57dd3827dec7a2d5c5eb Mon Sep 17 00:00:00 2001 From: "Aral Balkan (LabTop)" Date: Sun, 3 Jan 2021 13:11:21 +0000 Subject: [PATCH] Deploy Site.js version 16.0.5 --- .dynamic/version/release/index.js | 2 +- installation-scripts/install | 6 +++--- installation-scripts/install.txt | 12 ++++++------ package.json | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.dynamic/version/release/index.js b/.dynamic/version/release/index.js index b7b3db1..d213a61 100644 --- a/.dynamic/version/release/index.js +++ b/.dynamic/version/release/index.js @@ -1 +1 @@ -module.exports = (request, response) => { response.end('20210103123549') } +module.exports = (request, response) => { response.end('20210103130813') } diff --git a/installation-scripts/install b/installation-scripts/install index 4057949..8132b30 100755 --- a/installation-scripts/install +++ b/installation-scripts/install @@ -66,9 +66,9 @@ betaBinaryVersion=20200710135219 betaPackageVersion=14.1.1 betaSourceVersion=afde7bd -releaseBinaryVersion=20210103123549 -releasePackageVersion=16.0.4 -releaseSourceVersion=5c13f01 +releaseBinaryVersion=20210103130813 +releasePackageVersion=16.0.5 +releaseSourceVersion=d4fe1e9 binaryVersionVariableName="${releaseChannel}BinaryVersion" packageVersionVariableName="${releaseChannel}PackageVersion" diff --git a/installation-scripts/install.txt b/installation-scripts/install.txt index f81ac6b..be18ebb 100644 --- a/installation-scripts/install.txt +++ b/installation-scripts/install.txt @@ -1,6 +1,6 @@ ########################################################################################## # -# Site.js 20210103123549 (16.0.4/5c13f01) Installer for Windows 10 (PowerShell) +# Site.js 20210103130813 (16.0.5/d4fe1e9) Installer for Windows 10 (PowerShell) # # To use: # @@ -23,7 +23,7 @@ $installationScriptUrl = 'https://sitejs.org/install.txt' $installationScriptFileName = 'install-site.js.ps1' # The address to download the tar-gzipped archive of the Site.js binary from. -$archiveUrl = 'https://sitejs.org/binaries/release/windows/20210103123549.tar.gz' +$archiveUrl = 'https://sitejs.org/binaries/release/windows/20210103130813.tar.gz' # Emoji encodings (because Powershell is from the Stone Age and cannot handle # emoji literals in strings) @@ -86,7 +86,7 @@ if (!([Security.Principal.WindowsPrincipal] ` # Installer is running with regular privileges. Start a new PowerShell session with elevated privileges. # Write-Output '' - Write-Output " $satelliteEmoji Downloading Site.js 20210103123549 (16.0.4/5c13f01)$ellipsis" + Write-Output " $satelliteEmoji Downloading Site.js 20210103130813 (16.0.5/d4fe1e9)$ellipsis" # We need to start a new PowerShell session with elevated privileges but if we're running in memory # only after being downloaded by the installation command, we don't have a copy of ourselves to run. @@ -112,16 +112,16 @@ if (!([Security.Principal.WindowsPrincipal] ` Write-Output "`n`n`n`n`n`n" Write-Output ' Installing Site.js using administrator privileges...' Write-Output '' - Write-Output ' * Downloading Site.js 20210103123549 (16.0.4/5c13f01)...' + Write-Output ' * Downloading Site.js 20210103130813 (16.0.5/d4fe1e9)...' # Download the latest Site.js archive. - Invoke-WebRequest -Uri $archiveUrl -OutFile '20210103123549.tar.gz' + Invoke-WebRequest -Uri $archiveUrl -OutFile '20210103130813.tar.gz' Write-Output '' Write-Output ' * Extracting binary...' # Gunzip and untar the binary. - tar -xf 20210103123549.tar.gz + tar -xf 20210103130813.tar.gz Write-Output '' Write-Output ' * Installing binary...' diff --git a/package.json b/package.json index 40ebd93..c75ecf8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "site.js-site", - "version": "16.0.4", + "version": "16.0.5", "description": "Site.js web site", "main": "index.js", "scripts": { -- GitLab