Skip to content

Instantly share code, notes, and snippets.

@majkinetor
Last active July 18, 2024 01:02
Show Gist options
  • Save majkinetor/a700c70b8847b29ebb1c918d47ee4eb1 to your computer and use it in GitHub Desktop.
Save majkinetor/a700c70b8847b29ebb1c918d47ee4eb1 to your computer and use it in GitHub Desktop.
Update-AUPackages Report #powershell #chocolatey

Update-AUPackages

51 2020.7.16.10025 UTC: 2020-07-16 01:00 majkinetor/au-packages

This file is automatically generated by the update_all.ps1 script using the AU module.

Ignored | History | Force Test | Releases | TESTING AU NEXT VERSION

LAST RUN HAD 1 ERROR !!!

Finished 51 packages after 1.42 minutes.
2 updated, 2 pushed, 0 ignored
1 errors - 1 update, 0 push.

Pushed

Icon Name Updated Pushed RemoteVersion NuspecVersion
signal True 🔸 True 1.34.4 1.34.3
statping True 🔸 📥 True 0.90.60 0.90.58

Errors

Icon Name RemoteVersion NuspecVersion Error
smplayer 20.6.0 au_GetLatest failed; ; ; ; ; ; SourceForge - Unable to display the page requested; ; ; html, b ...

smplayer

au_GetLatest failed


    
        
        
        SourceForge - Unable to display the page requested
        
        
            html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
            body { line-height: 1;}
            ol, ul { list-style: none; }
            table { border-collapse: collapse; border-spacing: 0; }
            caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; }
            q, blockquote { quotes: none; }
            q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; }
            a img { border: none; }
            article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }
            body { background: #fff; color: #333; font-family: "Lato", sans-serif; font-size: 14px; margin: 0; padding: 0; }
            a {color: #0099cc; text-decoration: none; }
                a:hover {color:#006699;}
            #header, footer {background:#333333; text-align: center;color:#fff}
                #header svg  { width: 267px;; }
                #header svg .st1, #header svg .st2 { fill: #fff; }
                #header svg  .st0 { fill: #FF6600; }
            #header section { margin: 0 auto; padding: 5px 0; }
            #error-logo svg {display: block; margin: 50px auto 50px;width:167px;}
                #error-logo svg .st0{fill:#F26722}
                #error-logo svg .st1{fill:#CCCCCB}

            #content { margin: 0 auto;  }
                #content h1 {margin: 3.21429rem 0 2.5rem 0; font-size: 2.28571rem; font-weight: 400; text-align: center}
                #content p { margin-bottom: 20px; font-size: 18px; text-align: center}
                #content h1, #content p {margin-left: 1em; margin-right: 1em}
            #content #error-message { float: left; margin-right: 20px; }
            #content #twitter { margin:60px auto; position: relative; }
                #content #twitter > * {margin: 0 auto;display: block;}
                #content #twitter #twitter-bird { margin-top: 5px;}
                #content #twitter #message-bubble { position: relative; border: 2px solid #F2F2F2;  width: 333px; min-height: 150px; padding: 9px 0; }
            footer {display: block;height: 60px;line-height:60px;font-size: 14px;}

            @media print, screen and (min-width: 728px) {
                #error-logo svg {display: block; margin: 150px auto 50px;width:267px;height:235px;}
            }
        
    
    
        
            
                

                                                                                                                                                                                                                                                        
            
        
        
            
                
                    
                
                
                
            
            Oops, looks like something went wrong.
            
                For updates, follow us on twitter or check the status dashboard.
            
            
                While we fix the issue, checkout Slashdot.
            
            
                
                    Tweets by @sfnet_ops
                    !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
                
                
            
        
        
            © 2017 Slashdot Media. All Rights Reserved.
        
        
          var url, filename, project;

         /*
          Match:
           /projects/xyz/files/a/download
                  /a/b/c/download
                  /a/download?use_mirror=m (url params aren't in window.location.pathname)
          non-greedy match on project name
          optional greedy match on file path including trailing slash
          regular match on base file name
          */
          var regexp = new RegExp('^/projects/(.+?)/files/(.*/)?(.+)/download$');
          var matches = window.location.pathname.match(regexp);
          if (matches) {
              project = matches[1];
              var path = matches[2] || ''; // may be undefined
              filename = matches[3];
              url = '//downloads.sourceforge.net/project/' + project + '/' + path + filename;
          }

          if (window.location.pathname === '/project/downloading.php') {
              /*
              match:
                /project/downloading.php?groupname=xyz&filename=abc.zip
                                        abc.zip&use_mirror=m
              non-greedy match on project name
              non-greedy match on filename, terminated by EOL or '&'
              */
              var legacy_re = new RegExp('groupname=(.+?)&filename=(.+?)($|&)');
              var legacy_matches = window.location.search.match(legacy_re);
              if (legacy_matches) {
                  project = legacy_matches[1];
                  filename = legacy_matches[2];
                  url = '//downloads.sourceforge.net/' + project + '/' + filename;
              }
          }

          /*global console*/
          if (url && filename) {
              url += '?fromerrorjs=1';
              if (window.location.hostname === 'sourceforge.net') {
                  window.location = url;
              } else if (window.console) {
                  console.log('redirecting to ' + url);
              }
              document.title = 'Downloading ' + decodeURIComponent(filename);
              document.getElementsByTagName('h1')[0].innerHTML = 'Downloading ' + decodeURIComponent(filename) + ' ...';
          }

OK

Icon Name Updated Pushed RemoteVersion NuspecVersion
ansifilter False 📥 False 2.16.1 2.16.1
copyq False 📥 False 3.12.0 3.12.0
cpu-z False False 1.92 1.92.0.20200616
cpu-z.install False False 1.92 1.92.0.20200616
cpu-z.portable False False 1.92 1.92.0.20200613
dbeaver False 📥 False 7.1.2 7.1.2
dbeaver-ee False 📥 False 7.1.0 7.1.0
dngrep False 📥 False 2.9.256.0 2.9.256.0
eac False False 1.5 1.4
eraser False 📥 False 6.2.0.2989 6.2.0.2988
etcher False False 1.5.101 1.5.101
foobar2000 False 📥 False 1.5.5 1.5.5
freeencoderpack False 📥 False 2020.07.11 2020.07.11
furmark False 📥 False 1.21.2.0 1.20.9.0
fzf False 📥 False 0.21.1 0.19.0
gitlab-runner False 📥 False 13.1.0 13.1.0
html-tidy False 📥 False 5.6.0 5.6.0
influxdb False False 1.8.1 1.8.1
influxdb1 False 📥 False 1.8.1 1.8.1
invoke-build False False 5.6.0 5.6.0
k6 False 📥 False 0.27.0 0.26.0
lamexp False 📥 False 4.18 4.18
less False 📥 False 5.62 5.62
loki False 📥 False 1.5.0 1.5.0
miller False 📥 False 5.7.0 5.7.0
mkcert False 📥 False 1.4.1 1.4.1
mls-software-openssh False False 8.3.1.1 8.3.1.1
mp3directcut False 📥 False 2.30 2.29
musikcube False 📥 False 0.93.1 0.92.1
nexus-oss False False 2.14.18.01 2.14.18.01
nirlauncher False 📥 False 1.23.26 1.23.26
pandoc False 📥 False 2.10 2.10
pass-winmenu False 📥 False 1.10.1 1.9.1.20190612
pgmetrics False 📥 False 1.9.2 1.9.2
plantuml False 📥 False 1.2020.15 1.2020.15
postgresql False 🕄 False 12.3 12.3
postgrest False 📥 False 7.0.1 7.0.1
rundeck False 📥 False 3.3.0 3.3.0
rundeck-cli False 📥 False 1.3.1 1.3.1
shutup10 False 📥 False 1.8.1413 1.8.1413
signal True 🔸 True 1.34.4 1.34.3
solr False 🕄 📥 False 6.6.6 6.6.6
soulseek False False 2018.11.16 2018.11.16
statping True 🔸 📥 True 0.90.60 0.90.58
tagscanner False 📥 False 6.1.5 6.1.5
trid False 📥 False 2.24.20200711 2.24.20200711
usql False 📥 False 0.7.8 0.7.7
visualsvnserver False False 4.2.2 4.2.2
wkhtmltopdf False 📥 False 0.12.6 0.12.5
yed False False 3.20 3.19.1.1

ansifilter

ansifilter - checking updates using au version 2020.7.16.10025

URL check
  http://www.andre-simon.de/zip/ansifilter-2.16.1-x64.zip
  http://www.andre-simon.de/zip/ansifilter-2.16.1.zip
nuspec version: 2.16.1
remote version: 2.16.1
No new version found

copyq

copyq - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/hluk/CopyQ/releases/download/v3.12.0/copyq-v3.12.0-setup.exe
nuspec version: 3.12.0
remote version: 3.12.0
No new version found

cpu-z

cpu-z - checking updates using au version 2020.7.16.10025

URL check
  http://download.cpuid.com/cpu-z/cpu-z_1.92-en.exe
nuspec version: 1.92.0.20200616
remote version: 1.92
No new version found

cpu-z.install

cpu-z.install - checking updates using au version 2020.7.16.10025

URL check
  http://download.cpuid.com/cpu-z/cpu-z_1.92-en.exe
nuspec version: 1.92.0.20200616
remote version: 1.92
No new version found

cpu-z.portable

cpu-z.portable - checking updates using au version 2020.7.16.10025

URL check
  http://download.cpuid.com/cpu-z/cpu-z_1.92-en.zip
nuspec version: 1.92.0.20200613
remote version: 1.92
No new version found

dbeaver

dbeaver - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/dbeaver/dbeaver/releases/download/7.1.2/dbeaver-ce-7.1.2-x86_64-setup.exe
nuspec version: 7.1.2
remote version: 7.1.2
No new version found

dbeaver-ee

dbeaver-ee - checking updates using au version 2020.7.16.10025

URL check
  https://dbeaver.com/files/7.1.0/dbeaver-ee-7.1.0-x86_64-setup.exe
nuspec version: 7.1.0
remote version: 7.1.0
No new version found

dngrep

dngrep - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/dnGrep/dnGrep/releases/download/v2.9.256.0/dnGREP.2.9.256.x64.msi
  https://github.com/dnGrep/dnGrep/releases/download/v2.9.256.0/dnGREP.2.9.256.x86.msi
nuspec version: 2.9.256.0
remote version: 2.9.256.0
No new version found

eac

eac - checking updates using au version 2020.7.16.10025

URL check
  http://www.exactaudiocopy.de/eac-1.5.exe
nuspec version: 1.4
remote version: 1.5
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/eac/1.5

eraser

eraser - checking updates using au version 2020.7.16.10025

URL check
  https://sourceforge.net/projects/eraser/files/Eraser%206/6.2/Eraser%206.2.0.2989.exe/download
nuspec version: 6.2.0.2988
remote version: 6.2.0.2989
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/eraser/6.2.0.2989

etcher

etcher - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/balena-io/etcher/releases/download/v1.5.101/balenaEtcher-Setup-1.5.101.exe
nuspec version: 1.5.101
remote version: 1.5.101
No new version found

foobar2000

foobar2000 - checking updates using au version 2020.7.16.10025

URL check
  https://www.foobar2000.org/files/82e3ec0bdc608f4e6ca6a38ec999142c/foobar2000_v1.5.5.exe
nuspec version: 1.5.5
remote version: 1.5.5
No new version found

freeencoderpack

freeencoderpack - checking updates using au version 2020.7.16.10025

URL check
  http://www.foobar2000.org/files/ccb3ef146efdf899546de87ce36bf717/Free_Encoder_Pack-2020-07-11.exe
nuspec version: 2020.07.11
remote version: 2020.07.11
No new version found

furmark

furmark - checking updates using au version 2020.7.16.10025

URL check
  https://geeks3d.com/downloads/2020p/FurMark_1.21.2.0_Setup.exe
nuspec version: 1.20.9.0
remote version: 1.21.2.0
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/furmark/1.21.2.0

fzf

fzf - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/junegunn/fzf-bin/releases/download/0.21.1/fzf-0.21.1-windows_386.zip
  https://github.com/junegunn/fzf-bin/releases/download/0.21.1/fzf-0.21.1-windows_amd64.zip
nuspec version: 0.19.0
remote version: 0.21.1
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/fzf/0.21.1

gitlab-runner

gitlab-runner - checking updates using au version 2020.7.16.10025

URL check
  https://gitlab-runner-downloads.s3.amazonaws.com/v13.1.0/binaries/gitlab-runner-windows-amd64.exe
  https://gitlab-runner-downloads.s3.amazonaws.com/v13.1.0/binaries/gitlab-runner-windows-386.exe
nuspec version: 13.1.0
remote version: 13.1.0
No new version found

html-tidy

html-tidy - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/htacg/tidy-html5/releases/download/5.6.0/tidy-5.6.0-vc14-32b.zip
  https://github.com/htacg/tidy-html5/releases/download/5.6.0/tidy-5.6.0-vc14-64b.zip
nuspec version: 5.6.0
remote version: 5.6.0
No new version found

influxdb

influxdb - checking updates using au version 2020.7.16.10025

URL check
  https://dl.influxdata.com/influxdb/releases/influxdb-1.8.1_windows_amd64.zip
nuspec version: 1.8.1
remote version: 1.8.1
No new version found

influxdb1

influxdb1 - checking updates using au version 2020.7.16.10025

URL check
  https://dl.influxdata.com/influxdb/releases/influxdb-1.8.1_windows_amd64.zip
nuspec version: 1.8.1
remote version: 1.8.1
No new version found

invoke-build

invoke-build - checking updates using au version 2020.7.16.10025

nuspec version: 5.6.0
remote version: 5.6.0
No new version found

k6

k6 - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/loadimpact/k6/releases/download/v0.27.0/k6-v0.27.0-win32.zip
  https://github.com/loadimpact/k6/releases/download/v0.27.0/k6-v0.27.0-win64.zip
nuspec version: 0.26.0
remote version: 0.27.0
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/k6/0.27.0

lamexp

lamexp - checking updates using au version 2020.7.16.10025

URL check
  https://github.com//lordmulder/LameXP/releases/download/Release_418/LameXP.2019-12-18.Release-Static.Build-2240.exe
nuspec version: 4.18
remote version: 4.18
No new version found

less

less - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/jftuga/less-Windows/releases/download/less-v562.0/less.exe
nuspec version: 5.62
remote version: 5.62
No new version found

loki

loki - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/grafana/loki/releases/download/v1.5.0/loki-windows-amd64.exe.zip
nuspec version: 1.5.0
remote version: 1.5.0
No new version found

miller

miller - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/johnkerl/miller/releases/download/v5.7.0/mlr.exe
  https://github.com/johnkerl/miller/releases/download/v5.7.0/msys-2.0.dll
nuspec version: 5.7.0
remote version: 5.7.0
No new version found

mkcert

mkcert - checking updates using au version 2020.7.16.10025

URL check
  https://github.com//FiloSottile/mkcert/releases/download/v1.4.1/mkcert-v1.4.1-windows-amd64.exe
nuspec version: 1.4.1
remote version: 1.4.1
No new version found

mls-software-openssh

mls-software-openssh - checking updates using au version 2020.7.16.10025

URL check
  https://www.mls-software.com/files/setupssh-8.3p1-1.exe
nuspec version: 8.3.1.1
remote version: 8.3.1.1
No new version found

mp3directcut

mp3directcut - checking updates using au version 2020.7.16.10025

URL check
  https://www.filecroco.com/download-file/download-mp3directcut/88/79/
nuspec version: 2.29
remote version: 2.30
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/mp3directcut/2.30

musikcube

musikcube - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/clangen/musikcube/releases/download/0.93.1/musikcube_win32_with_milkdrop2_0.93.1.zip
nuspec version: 0.92.1
remote version: 0.93.1
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/musikcube/0.93.1

nexus-oss

nexus-oss - checking updates using au version 2020.7.16.10025

nuspec version: 2.14.18.01
remote version: 2.14.18.01
No new version found

nirlauncher

nirlauncher - checking updates using au version 2020.7.16.10025

nuspec version: 1.23.26
remote version: 1.23.26
No new version found

pandoc

pandoc - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/jgm/pandoc/releases/download/2.10/pandoc-2.10-windows-x86_64.msi
nuspec version: 2.10
remote version: 2.10
No new version found

pass-winmenu

pass-winmenu - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/geluk/pass-winmenu/releases/download/v1.10.1/pass-winmenu-nogpg.zip
nuspec version: 1.9.1.20190612
remote version: 1.10.1
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/pass-winmenu/1.10.1

pgmetrics

pgmetrics - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/rapidloop/pgmetrics/releases/download/v1.9.2/pgmetrics_1.9.2_windows_amd64.zip
nuspec version: 1.9.2
remote version: 1.9.2
No new version found

plantuml

plantuml - checking updates using au version 2020.7.16.10025

nuspec version: 1.2020.15
remote version: 1.2020.15
No new version found

postgresql

postgresql - checking updates using au version 2020.7.16.10025

*** Stream: postgresql ***
URL check
nuspec version: 12.3
remote version: 12.3
No new version found

*** Stream: postgresql-9.4 ***
URL check
nuspec version: 9.4.26
remote version: 9.4.26
No new version found

*** Stream: 9.4 ***
URL check
  https://get.enterprisedb.com/postgresql/postgresql-9.4.26-1-windows-x64.exe
  https://get.enterprisedb.com/postgresql/postgresql-9.4.26-1-windows.exe
nuspec version: 9.4.26
remote version: 9.4.26
No new version found

*** Stream: postgresql-9.5 ***
URL check
nuspec version: 9.5.22
remote version: 9.5.22
No new version found

*** Stream: 9.5 ***
URL check
  https://get.enterprisedb.com/postgresql/postgresql-9.5.22-1-windows-x64.exe
  https://get.enterprisedb.com/postgresql/postgresql-9.5.22-1-windows.exe
nuspec version: 9.5.22
remote version: 9.5.22
No new version found

*** Stream: postgresql-9.6 ***
URL check
nuspec version: 9.6.18
remote version: 9.6.18
No new version found

*** Stream: 9.6 ***
URL check
  https://get.enterprisedb.com/postgresql/postgresql-9.6.18-1-windows-x64.exe
  https://get.enterprisedb.com/postgresql/postgresql-9.6.18-1-windows.exe
nuspec version: 9.6.18
remote version: 9.6.18
No new version found

*** Stream: postgresql-10.13 ***
URL check
nuspec version: 10.13
remote version: 10.13
No new version found

*** Stream: 10.13 ***
URL check
  https://get.enterprisedb.com/postgresql/postgresql-10.13-1-windows-x64.exe
  https://get.enterprisedb.com/postgresql/postgresql-10.13-1-windows.exe
nuspec version: 10.13.1
remote version: 10.13
No new version found

*** Stream: postgresql-11.8 ***
URL check
nuspec version: 11.8
remote version: 11.8
No new version found

*** Stream: 11.8 ***
URL check
  https://get.enterprisedb.com/postgresql/postgresql-11.8-1-windows-x64.exe
nuspec version: 11.8.1
remote version: 11.8
No new version found

*** Stream: postgresql-12.3 ***
URL check
nuspec version: 12.3
remote version: 12.3
No new version found

*** Stream: 12.3 ***
URL check
  https://get.enterprisedb.com/postgresql/postgresql-12.3-1-windows-x64.exe
nuspec version: 12.3
remote version: 12.3
No new version found

postgrest

postgrest - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/PostgREST/postgrest/releases/download/v7.0.1/postgrest-v7.0.1-windows-x64.zip
nuspec version: 7.0.1
remote version: 7.0.1
No new version found

rundeck

rundeck - checking updates using au version 2020.7.16.10025

URL check
  https://dl.bintray.com/rundeck/rundeck-maven/org/rundeck/rundeck/rundeck-3.3.0-20200701.war
nuspec version: 3.3.0
remote version: 3.3.0
No new version found

rundeck-cli

rundeck-cli - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/rundeck/rundeck-cli/releases/download/v1.3.1/rd-1.3.1.zip
nuspec version: 1.3.1
remote version: 1.3.1
No new version found

shutup10

shutup10 - checking updates using au version 2020.7.16.10025

URL check
  https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe
nuspec version: 1.8.1413
remote version: 1.8.1413
No new version found

signal

signal - checking updates using au version 2020.7.16.10025

URL check
  https://updates.signal.org/desktop/signal-desktop-win-1.34.4.exe
nuspec version: 1.34.3
remote version: 1.34.4
New version is available
Automatic checksum started
Package downloaded and hash calculated for 32 bit version
Package downloaded and hash calculated for 64 bit version
Setting package description from README.md
Updating files
  $Latest data:
    Checksum32                (String)     9de7801366e2cfde2cf8dec71a749b2d0542db721df1258e6b7d34b78f41e933
    Checksum64                (String)     9de7801366e2cfde2cf8dec71a749b2d0542db721df1258e6b7d34b78f41e933
    ChecksumType32            (String)     sha256
    ChecksumType64            (String)     sha256
    FileType                  (String)     exe
    NuspecVersion             (String)     1.34.3
    PackageName               (String)     signal
    ReleaseNotes              (String)     https://github.com/WhisperSystems/Signal-Desktop/releases/tag/v1.34.4
    URL32                     (String)     https://updates.signal.org/desktop/signal-desktop-win-1.34.4.exe
    Version                   (String)     1.34.4
  signal.nuspec
    setting id: signal
    updating version: 1.34.3 -> 1.34.4
  signal.nuspec
    (\<releaseNotes\>).*?(\</releaseNotes\>) = ${1}https://github.com/WhisperSystems/Signal-Desktop/releases/tag/v1.34.4$2
  .\tools\chocolateyInstall.ps1
    (?i)(^\s*checksum\s*=\s*)('.*')     = $1'9de7801366e2cfde2cf8dec71a749b2d0542db721df1258e6b7d34b78f41e933'
    (?i)(^\s*url\s*=\s*)('.*')          = $1'https://updates.signal.org/desktop/signal-desktop-win-1.34.4.exe'
Attempting to build package from 'signal.nuspec'.
Successfully created package 'C:\projects\au-packages\signal\signal.1.34.4.nupkg'

Package updated
Chocolatey v0.10.15
Attempting to push signal.1.34.4.nupkg to https://push.chocolatey.org
signal 1.34.4 was pushed successfully to https://push.chocolatey.org

solr

solr - checking updates using au version 2020.7.16.10025

*** Stream: 8 ***
URL check
  https://archive.apache.org/dist/lucene/solr/8.6.0/solr-8.6.0.zip
nuspec version: 8.6.0
remote version: 8.6.0
No new version found

*** Stream: 7 ***
URL check
  https://archive.apache.org/dist/lucene/solr/7.7.3/solr-7.7.3.zip
nuspec version: 7.7.2
remote version: 7.7.3
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/solr/7.7.3

*** Stream: 6 ***
URL check
  https://archive.apache.org/dist/lucene/solr/6.6.6/solr-6.6.6.zip
nuspec version: 6.6.6
remote version: 6.6.6
No new version found

soulseek

soulseek - checking updates using au version 2020.7.16.10025

nuspec version: 2018.11.16
remote version: 2018.11.16
No new version found

statping

statping - checking updates using au version 2020.7.16.10025

URL check
  https://github.com//statping/statping/releases/download/v0.90.60/statping-windows-386.zip
nuspec version: 0.90.58
remote version: 0.90.60
New version is available
Automatic checksum skipped
Running au_BeforeUpdate

7-Zip 18.06 (x86) : Copyright (c) 1999-2018 Igor Pavlov : 2018-12-30

Scanning the drive for archives:
1 file, 14260451 bytes (14 MiB)

Extracting archive: C:\projects\au-packages\statping\tools\statping-windows-386.zip
--
Path = C:\projects\au-packages\statping\tools\statping-windows-386.zip
Type = zip
Physical Size = 14260451

Everything is Ok

Size:       39150592
Compressed: 14260451
Setting package description from README.md
Updating files
  $Latest data:
    Checksum64                (String)     493C04463F91BD3DA3A72CB8A022FF6A9BDD5AE79C23B34BE978D289FD72747D
    ChecksumType64            (String)     sha256
    FileName64                (String)     statping-windows-386.zip
    FileType                  (String)     zip
    NuspecVersion             (String)     0.90.58
    PackageName               (String)     statping
    ReleaseNotes              (String)     https://github.com/hunterlong/statping/releases/tag/v0.90.60
    URL64                     (String)     https://github.com//statping/statping/releases/download/v0.90.60/statping-windows-386.zip
    Version                   (String)     0.90.60
  statping.nuspec
    setting id: statping
    updating version: 0.90.58 -> 0.90.60
  statping.nuspec
    (\<releaseNotes\>).*?(\</releaseNotes\>) = ${1}https://github.com/hunterlong/statping/releases/tag/v0.90.60$2
  .\legal\VERIFICATION.txt
    (?i)(\s+x64:).*                     = ${1} https://github.com//statping/statping/releases/download/v0.90.60/statping-windows-386.zip
    (?i)(checksum64:).*                 = ${1} 493C04463F91BD3DA3A72CB8A022FF6A9BDD5AE79C23B34BE978D289FD72747D
Attempting to build package from 'statping.nuspec'.
Successfully created package 'C:\projects\au-packages\statping\statping.0.90.60.nupkg'

Package updated
Chocolatey v0.10.15
Attempting to push statping.0.90.60.nupkg to https://push.chocolatey.org
statping 0.90.60 was pushed successfully to https://push.chocolatey.org

tagscanner

tagscanner - checking updates using au version 2020.7.16.10025

URL check
  https://www.xdlab.ru/files/tagscan-6.1.5_x64-setup.exe
  https://www.xdlab.ru/files/tagscan-6.1.5-setup.exe
nuspec version: 6.1.5
remote version: 6.1.5
No new version found

trid

trid - checking updates using au version 2020.7.16.10025

nuspec version: 2.24.20200711
remote version: 2.24.20200711
No new version found

usql

usql - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/xo/usql/releases/download/v0.7.8/usql-0.7.8-windows-amd64.zip
nuspec version: 0.7.7
remote version: 0.7.8
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/usql/0.7.8

visualsvnserver

visualsvnserver - checking updates using au version 2020.7.16.10025

URL check
  https://www.visualsvn.com/files/VisualSVN-Server-4.2.2-x64.msi
  https://www.visualsvn.com/files/VisualSVN-Server-4.2.2-win32.msi
nuspec version: 4.2.2
remote version: 4.2.2
No new version found

wkhtmltopdf

wkhtmltopdf - checking updates using au version 2020.7.16.10025

URL check
  https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox-0.12.6-1.msvc2015-win32.exe
  https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox-0.12.6-1.msvc2015-win64.exe
nuspec version: 0.12.5
remote version: 0.12.6
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/wkhtmltopdf/0.12.6

yed

yed - checking updates using au version 2020.7.16.10025

URL check
  https://www.yworks.com/resources/yed/demo/yEd-3.20.zip
nuspec version: 3.19.1.1
remote version: 3.20
New version is available but it already exists in the Chocolatey community feed (disable using $NoCheckChocoVersion):
  https://chocolatey.org/packages/yed/3.20

Update History

Showing maximum 120 dates.
Click on the first letter of the package name to see its report and on the remaining letters to see its git commit.


2020-07-15 (3) InfluxdbInfluxdb1Statping

2020-07-14 (5) RundeckLokiAnsifilterRundeckSolr

2020-07-13 (1) Postgrest

2020-07-12 (4) PostgrestCopyqFreeencoderpackTrid

2020-07-10 (1) Etcher

2020-07-09 (1) Trid

2020-07-08 (1) Rundeck-cli

2020-07-07 (1) Nirlauncher

2020-07-06 (2) DbeaverTrid

2020-07-03 (3) PostgresqlPostgresql12Trid

2020-07-02 (3) Postgresql12PandocTagscanner

2020-07-01 (1) Trid

2020-06-30 (1) Foobar2000

2020-06-29 (2) PlantumlTrid

2020-06-28 (1) Statping

2020-06-27 (1) Signal

2020-06-26 (1) Pgmetrics

2020-06-23 (4) LokiEtcherNirlauncherTrid

2020-06-22 (1) Dbeaver

2020-06-21 (4) StatpingDngrepPlantumlTrid

2020-06-20 (1) Gitlab-runner

2020-06-19 (2) SmplayerStatping

2020-06-18 (2) Dbeaver-eeStatping

2020-06-17 (1) Trid

2020-06-16 (5) Cpu-zCpu-z.installShutup10StatpingStatping

2020-06-15 (3) PlantumlStatpingTrid

2020-06-14 (1) Statping

2020-06-13 (2) Cpu-z.portableEtcher

2020-06-12 (2) SignalStatping

2020-06-11 (2) EtcherRundeck

2020-06-10 (2) Shutup10Trid

2020-06-09 (2) EtcherNirlauncher

2020-06-07 (3) EraserPlantumlTrid

2020-06-05 (3) MillerStatpingTrid

2020-06-03 (3) Rundeck-cliShutup10Statping

2020-06-01 (7) EtcherGitlab-runnerMls-software-opensshNirlauncherTridDbeaverDngrep

2020-05-31 (1) Trid

2020-05-28 (2) SolrTrid

2020-05-27 (2) MusikcubeStatping

2020-05-24 (1) Statping

2020-05-21 (8) EtcherInvoke-buildLessStatpingTridEtcherGitlab-runnerStatping

2020-05-20 (2) Nexus-ossRundeck

2020-05-19 (1) Postgresql12

2020-05-18 (5) LessDbeaverLessNirlauncherPlantuml

2020-05-17 (1) Trid

2020-05-16 (2) SignalStatping

2020-05-15 (1) Trid

2020-05-13 (3) EtcherShutup10Trid

2020-05-12 (2) Foobar2000Nirlauncher

2020-05-11 (1) Plantuml

2020-05-10 (1) Trid

2020-05-05 (2) DbeaverNirlauncher

2020-05-02 (2) CopyqStatping

2020-04-29 (2) Cpu-z.portableTrid

2020-04-28 (2) EtcherRundeck

2020-04-26 (1) Statping

2020-04-25 (1) Trid

2020-04-24 (2) SignalVisualsvnserver

2020-04-23 (1) Statping

2020-04-22 (2) Gitlab-runnerTrid

2020-04-19 (1) Trid

2020-04-15 (2) Influxdb1Trid

2020-04-14 (3) StatpingNirlauncherPgmetrics

2020-04-10 (1) Dngrep

2020-04-08 (2) Invoke-buildSignal

2020-04-06 (1) Mp3directcut

2020-04-03 (2) DngrepTrid

2020-03-26 (1) Trid

2020-03-25 (4) DbeaverEtcherRundeckShutup10

2020-03-22 (1) Trid

2020-03-19 (1) Plantuml

2020-03-15 (1) Trid

2020-03-12 (1) Trid

2020-03-11 (2) DngrepRundeck-cli

2020-03-10 (1) Dngrep

2020-03-09 (1) Trid

2020-03-08 (1) Rundeck-cli

2020-03-03 (1) Trid

2020-02-26 (3) FreeencoderpackTridPlantuml

2020-02-25 (1) Trid

2020-02-23 (1) Gitlab-runner

2020-02-20 (1) Etcher

2020-02-18 (4) Postgresql9EtcherNirlauncherTrid

2020-02-17 (2) DbeaverPlantuml

2020-02-15 (1) Trid

2020-02-14 (1) Postgresql12

2020-02-11 (2) SignalTrid

2020-02-07 (4) EacEtcherInvoke-buildTrid

2020-02-05 (2) EtcherShutup10

2020-02-04 (4) DbeaverNirlauncherSignalTrid

2020-01-29 (3) AnsifilterEtcherTrid

2020-01-28 (1) Etcher

2020-01-27 (1) Trid

2020-01-25 (1) Trid

2020-01-24 (2) Gitlab-runnerSignal

2020-01-22 (1) Dbeaver

2020-01-21 (1) Dngrep

2020-01-17 (2) signaltrid

2020-01-15 (2) SignalEtcher

2020-01-14 (4) MusikcubeNirlauncherPlantumlTrid

2020-01-09 (1) Pandoc

2020-01-08 (1) Trid

2020-01-07 (1) Dbeaver

2020-01-05 (1) Trid

2019-12-31 (1) Nirlauncher

2019-12-29 (1) Trid

2019-12-19 (2) LamexpSignal

2019-12-17 (4) RundeckK6Mp3directcutNirlauncher

2019-12-16 (2) Invoke-buildTrid

2019-12-14 (1) Etcher

2019-12-13 (2) PandocTrid

2019-12-11 (5) Cpu-zCpu-z.installCpu-z.portableEtcherPlantuml

2019-12-10 (2) EtcherTrid

2019-12-09 (1) Dbeaver-ee

2019-12-08 (2) Mp3directcutTrid

2019-12-07 (4) EtcherPandocShutup10Solr

2019-12-05 (1) Signal

2019-12-03 (1) Etcher

2019-12-02 (1) Dbeaver

2019-12-01 (2) UsqlMp3directcut

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment