Skip to content

Commit

Permalink
Release v1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jul 10, 2022
1 parent 45b426a commit 277120d
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion dist/blogger-tweaks.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/layouts/block-duo.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Block Duo layout -- Two big columns followed by a single footer
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/color-blocks.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Color Blocks layout -- Two columns of colorful blocks
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/color-slide.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Color Slide layout -- Top to botttom color transition
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/letterbox.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Letterbox layout -- Edge-to-edge semi-opaque bar over cover background image
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/modern.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Modern layout -- Clean blog post page
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/neon.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Neon layout -- For hackers and space junkies
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/neon.min.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
//! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License
var numNeonImages=8;$("body").addClass("neon-image-"+(Date.now()%8+1));
2 changes: 1 addition & 1 deletion dist/layouts/vertical-bars.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Vertical Bars layout -- traditional boring old-school webpage
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/zebra-sections.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Zebra Sections layout -- Edge-to-edge blocks with alternating background colors
Expand Down
4 changes: 2 additions & 2 deletions dist/lib-x.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License

declare global {
interface JQuery {
Expand Down Expand Up @@ -41,7 +41,7 @@ export declare type LibXSocialButton = {
link: string;
};
export declare type LibXMontageLoopOptions = {
selector?: string;
container?: string;
start?: number | null;
intervalMs?: number;
fadeMs?: number;
Expand Down
10 changes: 5 additions & 5 deletions dist/lib-x.dev.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License

const libXUi = {
plugin: {
Expand Down Expand Up @@ -261,15 +261,15 @@ const libXAnimate = {
montageLoop(options) {
var _a;
const defaults = {
selector: '.montage-loop',
container: '.montage-loop',
start: null,
intervalMs: 10000,
fadeMs: 3000,
};
const settings = Object.assign(Object.assign({}, defaults), options);
const imgs = $(settings.selector).addClass('montage-loop').children('img');
const imgs = $(settings.container).addClass('montage-loop').children('img');
if (!imgs.length)
console.error('[montage-loop] No images found:', settings.selector);
console.error('[montage-loop] No images found:', settings.container);
imgs.css({ transition: `all ${settings.fadeMs}ms` });
imgs.eq((_a = settings.start) !== null && _a !== void 0 ? _a : Date.now() % imgs.length).addClass('current');
const nextImage = () => {
Expand Down Expand Up @@ -359,7 +359,7 @@ const libXExtra = {
},
};
const libX = {
version: '1.5.4',
version: '1.5.5',
ui: libXUi,
util: libXUtil,
crypto: libXCrypto,
Expand Down
10 changes: 5 additions & 5 deletions dist/lib-x.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v1.5.4 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v1.5.5 ~~ https://github.com/center-key/web-ignition ~~ MIT License

import { dna } from 'dna.js';
const libXUi = {
Expand Down Expand Up @@ -262,15 +262,15 @@ const libXAnimate = {
montageLoop(options) {
var _a;
const defaults = {
selector: '.montage-loop',
container: '.montage-loop',
start: null,
intervalMs: 10000,
fadeMs: 3000,
};
const settings = Object.assign(Object.assign({}, defaults), options);
const imgs = $(settings.selector).addClass('montage-loop').children('img');
const imgs = $(settings.container).addClass('montage-loop').children('img');
if (!imgs.length)
console.error('[montage-loop] No images found:', settings.selector);
console.error('[montage-loop] No images found:', settings.container);
imgs.css({ transition: `all ${settings.fadeMs}ms` });
imgs.eq((_a = settings.start) !== null && _a !== void 0 ? _a : Date.now() % imgs.length).addClass('current');
const nextImage = () => {
Expand Down Expand Up @@ -360,7 +360,7 @@ const libXExtra = {
},
};
const libX = {
version: '1.5.4',
version: '1.5.5',
ui: libXUi,
util: libXUtil,
crypto: libXCrypto,
Expand Down
Loading

0 comments on commit 277120d

Please sign in to comment.