Skip to content

Commit

Permalink
Release v6.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Feb 5, 2024
1 parent 46266a6 commit 6d06b95
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snapbackup",
"version": "6.5.0",
"version": "6.6.0",
"description": "The one-click backup utility",
"license": "GPL-3.0",
"type": "module",
Expand All @@ -21,8 +21,8 @@
"java"
],
"extra": {
"updated": "February 15, 2022",
"jarSize": "232 KB"
"updated": "February 4, 2024",
"jarSize": "234 KB"
},
"jshintConfig": {
"esversion": 11,
Expand Down
Binary file not shown.
Binary file added releases/archive/snapbackup-v6.6.0.jar
Binary file not shown.
Binary file added releases/snap-backup-installer-v6.6.0.pkg
Binary file not shown.
Binary file modified releases/snapbackup.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion src/java/com/centerkey/utils/TopMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public TopMap(int maxNumberElements) {

@Override
public V put(Long key, V value) {
while (containsKey(key)) key = key + 1; //hack to support duplicates
while (containsKey(key))
key = key + 1; //support duplicates
if (size() < maxElems || key > lastKey())
super.put(key, value);
if (size() > maxElems)
Expand Down
3 changes: 2 additions & 1 deletion src/java/org/snapbackup/settings/SystemAttributes.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public class SystemAttributes {
// Release constants
public static final String appTitle = "Snap Backup";
public static final String appName = "SnapBackup"; //".properties" name
public static final String appVersion = "6.5.0"; //keep in sync with package.json
public static final String appVersion = "6.6.0"; //keep in sync with package.json
// 6.6.0 - 2024/02/04 - Support Apple silicon (M1, M2, and M3)
// 6.5.0 - 2022/09/30 - Auto save settings and new --list and --current CLI flags
// 6.4.1 - 2022/08/28 - Filter out files stored in remote clouds
// 6.4.0 - 2022/02/15 - Support openjdk and use jpackage to create installer
Expand Down
5 changes: 3 additions & 2 deletions tools/build-website.sh.command
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

banner="Snap Backup - Website"
projectHome=$(cd $(dirname $0)/..; pwd)
apacheCfg=/usr/local/etc/httpd
apacheLog=/usr/local/var/log/httpd/error_log
pkgInstallHome=$(dirname $(dirname $(which httpd)))
apacheCfg=$pkgInstallHome/etc/httpd
apacheLog=$pkgInstallHome/var/log/httpd/error_log
webDocRoot=$(grep ^DocumentRoot $apacheCfg/httpd.conf | awk -F'"' '{ print $2 }')
cliFlagMsg="Use the '--no-server' flag to skip the interactive web server."
cliFlag=$1
Expand Down
7 changes: 5 additions & 2 deletions website/root/download/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h2>Download</h2>
</p>
<div>
<figure class=cake-layers>
<figcaption>Apple macOS</figcaption>
<figcaption>Apple macOS (M1, M2, and M3)</figcaption>
<div>
<a href={{releaseUrl}}/snap-backup-installer-v{{pkg.version}}{{macExtension}}>snap-backup-installer-v{{pkg.version}}{{macExtension}}</a>
<a href={{releaseUrl}}/snap-backup-installer-v{{pkg.version}}{{macExtension}}><img src=../graphics/os-icons/mac.svg alt=mac></a>
Expand All @@ -26,7 +26,10 @@ <h2>Download</h2>
Once downloading is complete, go into your <code>Downloads</code> folder and locate
the <code>snap-backup-installer-v{{pkg.version}}{{macExtension}}</code> file.&nbsp;
Then <b><i>&lt;control-click&gt;</i></b> on the file and select "<b>Open</b>" to
start the install.
start the install.<br><br>
For Macs with Intel processors, download
<nobr><code>snap-backup-installer-v6.5.0.pkg</code> at:</nobr>
<a href={{releaseUrl}}/archive class=external-site>Past Releases</a>
</div>
</figure>
</div>
Expand Down
4 changes: 4 additions & 0 deletions website/templates/news.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<div class=news>
<div>
<cite>February 4, 2024</cite>
<p>Snap Backup release 6.6.0 supports Apple silicon (M1, M2, and M3).</p>
</div>
<div>
<cite>September 30, 2022</cite>
<p>Snap Backup release 6.5.0 autosaves your settings.</p>
Expand Down

0 comments on commit 6d06b95

Please sign in to comment.