Skip to content

Commit

Permalink
Merge pull request #1 from daerSeebaer/2.5.23
Browse files Browse the repository at this point in the history
2.5.23
  • Loading branch information
daerSeebaer authored Apr 14, 2023
2 parents 1479292 + 9f63367 commit a071f13
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.nupkg
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# choco-urbackup-client
# choco-urbackup-client

Files for the creation of a chocolatey package for the client versions of UrBackup.

## Contributing
Please keep in line with the rules and standards laid out by Chocolatey: https://docs.chocolatey.org/en-us/create/create-packages

## Scope
This repository is only intended for work on that specific package. For general issues with Chocolatey or UrBackup, please consult the respective documentation.
12 changes: 6 additions & 6 deletions pkgfiles/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ $url = ''
$pp = Get-PackageParameters
if (!$pp.TrayIcon){
$pp.TrayIcon = 'False'
$UrExe = 'https://hndl.urbackup.org/Client/2.4.10/UrBackup%20Client%20NoTray%202.4.10.exe'
$ChkSum = '9E9261B753DF74C36B44FCCF2129D25FAB631C1600ED861C0795CC6E442A4E9B'
$UrExe = 'https://hndl.urbackup.org/Client/2.5.23/UrBackup%20Client%20NoTray%202.5.23.exe'
$ChkSum = '814B39E44A1C31A84B09756AD121487C4453AA3D4CE49DCABCBE49113784C426'
}
if ($pp.TrayIcon -eq 'False'){
$UrExe = 'https://hndl.urbackup.org/Client/2.4.10/UrBackup%20Client%20NoTray%202.4.10.exe'
$ChkSum = '9E9261B753DF74C36B44FCCF2129D25FAB631C1600ED861C0795CC6E442A4E9B'
$UrExe = 'https://hndl.urbackup.org/Client/2.5.23/UrBackup%20Client%20NoTray%202.5.23.exe'
$ChkSum = '814B39E44A1C31A84B09756AD121487C4453AA3D4CE49DCABCBE49113784C426'
}
if ($pp.TrayIcon -eq 'True'){
$UrExe = 'https://hndl.urbackup.org/Client/2.4.10/UrBackup%20Client%202.4.10.exe'
$ChkSum = '727B31ED6400DEDC48E3C362014FB85970D50799BFE084316EB79A028C37E434'
$UrExe = 'https://hndl.urbackup.org/Client/2.5.23/UrBackup%20Client%202.5.23.exe'
$ChkSum = 'B1B3B859981708E1E10DC9AAA1DD179533CF0F8BCD08DC2B4BC5D71CC549B07D'
}

#Based on Nsis
Expand Down
33 changes: 19 additions & 14 deletions pkgfiles/urbackup-client.nuspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<!-- == PACKAGE SPECIFIC SECTION == -->
<id>urbackup-client</id>
<version>2.4.10</version>
<title>UrBackup-Client (Install))</title>
<version>2.5.23</version>
<packageSourceUrl>https://github.com/daerSeebaer/choco-urbackup-client/</packageSourceUrl>
<owners>Sebastian Dallinger</owners>
<!-- == SOFTWARE SPECIFIC SECTION == -->
<title>UrBackup-Client (Install)</title>
<authors>Martin Raiber</authors>
<owners>Martin Raiber</owners>
<projectUrl>http://www.urbackup.org/</projectUrl>
<projectUrl>https://www.urbackup.org/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<docsUrl>https://www.urbackup.org/documentation.html</docsUrl>
<tags>urbackup-client admin backup</tags>
<description>UrBackup is an easy to setup Open Source client/server backup system, that through a combination of image and file backups accomplishes both data safety and a fast restoration time.

File and image backups are made while the system is running without interrupting current processes.

UrBackup also continuously watches folders you want backed up in order to quickly find differences to previous backups. Because of that, incremental file backups are really fast.

Your files can be restored through the web interface, via the client or the Windows Explorer while the backups of drive volumes can be restored with a bootable CD or USB-Stick (bare metal restore).

A web interface makes setting up your own backup server really easy. For a quick impression please look at the screenshots here.

Currently there are over 8300 running UrBackup server instances (with auto-update enabled) with some instances having hundreds of active clients.</description>
<tags>urbackup-client admin backup</tags>
File and image backups are made while the system is running without interrupting current processes.
UrBackup also continuously watches folders you want backed up in order to quickly find differences to previous backups. Because of that, incremental file backups are really fast.
Your files can be restored through the web interface, via the client or the Windows Explorer while the backups of drive volumes can be restored with a bootable CD or USB-Stick (bare metal restore).
A web interface makes setting up your own backup server really easy. For a quick impression please look at the screenshots here.
Currently there are over 8300 running UrBackup server instances (with auto-update enabled) with some instances having hundreds of active clients.</description>
<releaseNotes>https://www.urbackup.org/client_changelog.html</releaseNotes>
</metadata>
</package>

0 comments on commit a071f13

Please sign in to comment.