Skip to content

Commit c94fdc4

Browse files
committed
Fix relative path for logo card image in nested pages
1 parent b5e60e2 commit c94fdc4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"jshint": "~2.13",
7373
"less": "~4.4",
7474
"replacer-util": "~1.4",
75-
"rev-web-assets": "~1.4",
75+
"rev-web-assets": "~1.5",
7676
"rimraf": "~6.0",
7777
"run-scripts-util": "~1.3",
7878
"uglify-js": "~3.19",

src/java/org/snapbackup/settings/SystemAttributes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public class SystemAttributes {
7474
{ "Vahidin Qerimi", "http://vahidin.wordpress.com" }, //"sq"
7575
{ "WVam", "https://github.com/WVam" }, //"it"
7676
};
77-
public static final String appAuthors = "Dem Pilafian"; //names of code contributors
77+
public static final String appAuthors = "Pilaf T. Pilafian"; //names of code contributors
7878
public static final String appCopyright =
7979
"Copyright &copy; Individual contributors to the Snap Backup project<br>" +
8080
"Snap Backup&reg; is a registered trademark of Center Key";

tools/build-website.sh.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ publishWebFiles() {
5555
publish() {
5656
echo "Publishing:"
5757
echo $publishSite
58-
mkdir -p $publishFolder
58+
mkdir -pv $publishFolder
5959
cp -R website-target/3-rev/* $publishFolder
6060
ls -o $publishSite | grep snapbackup
6161
test -x "$(which tree)" && tree $publishFolder

tools/build.sh.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ createResources() {
5656
sips --resampleHeightWidth 480 480 --padToHeightWidth 512 512 $iconPng \
5757
--out SnapBackup.iconset/icon_512x512.png
5858
iconutil --convert icns SnapBackup.iconset
59-
mkdir -p package/macos
59+
mkdir -pv package/macos
6060
mv -v SnapBackup.icns package/macos
6161
sips --resampleHeightWidth 120 120 --padToHeightWidth 175 175 $iconPng \
6262
--out package/macos/SnapBackup-background.png

tools/static-analysis.sh.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ setupPmd() {
2929
downloadPmd() {
3030
echo "Downloading..."
3131
echo $pmdDownload
32-
mkdir -p tools/static-analysis/pmd
32+
mkdir -pv tools/static-analysis/pmd
3333
cd tools/static-analysis/pmd
3434
pwd
3535
curl --location --remote-name $pmdDownload

website/root/about/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>About</h2>
3434
<br>
3535
Chief Usability Officer:
3636
<p class=indent>
37-
<a href=https://centerkey.com/dem>Dem Pilafian</a>
37+
<a href=https://centerkey.com/pilaf>Pilaf T. Pilafian</a>
3838
</p>
3939
History:
4040
<p class=indent>

website/templates/page-begin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<meta property=og:title content="Snap Backup - {{pageTitle}}">
1818
<meta property=og:description content="The one-click backup utility">
1919
<meta property=og:type content="website">
20-
<meta property=og:image content="graphics/snap-backup-logo-card.png">
20+
<meta property=og:image content="{{webRoot}}/graphics/snap-backup-logo-card.png">
2121
<meta property=og:image:alt content="Logo">
2222
<title>Snap Backup &bull; {{pageTitle}}</title>
2323
<link rel=icon href={{webRoot}}/graphics/bookmark-icon.png>

0 commit comments

Comments
 (0)