Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ac52a7f
Make CueSync a web component
nkdas91 Oct 28, 2024
ae2c83a
Remove an event listener before adding it, to avoid having duplicate …
nkdas91 Nov 7, 2024
f0115a5
Hide the settings menu when clicked outside
nkdas91 Dec 10, 2024
6021a55
Update CueSync behavior to reflect attribute changes
nkdas91 Dec 11, 2024
d4e8120
Refactor and remove redundancy
nkdas91 Dec 11, 2024
e7b734c
Rename audio, video and transcript files
nkdas91 Dec 16, 2024
5e71da5
Move CSS from cuesync.js to a separate cuesync.scss file for better s…
nkdas91 Dec 16, 2024
d9477d5
Move documentation related to v2 into a new folder
nkdas91 Jan 21, 2025
0c80cab
Add version selector
nkdas91 Apr 4, 2025
ead1ddb
Merge branch main into web-component
nkdas91 Apr 10, 2025
5c85a09
Merge branch 'main' into web-component
nkdas91 Apr 10, 2025
3a78a25
Update documentation
nkdas91 Apr 16, 2025
d399ee2
Call _renderComponent() before calling _requestRefresh() to remove un…
nkdas91 Apr 16, 2025
456cc49
Rename class names and css custom properties
nkdas91 Apr 17, 2025
00de59e
Update Specs page
nkdas91 Apr 17, 2025
5bb3c8c
Update examples doc
nkdas91 Apr 17, 2025
8ef766e
Update docs and add an image marking different parts of CueSync compo…
nkdas91 Apr 18, 2025
bc60da3
Add an image showing different parts of the cuesync element
nkdas91 Apr 21, 2025
81523f2
Update JS variables
nkdas91 Apr 21, 2025
94b0efb
Update dependencies
nkdas91 Apr 21, 2025
8e32387
Add links to framework examples
nkdas91 Apr 24, 2025
f2f88b1
Update description and cdn links
nkdas91 Apr 25, 2025
8732b51
Merge main into web-component
nkdas91 Apr 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .bundlewatch.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@
"files": [
{
"path": "./dist/css/cuesync.css",
"maxSize": "555 B"
"maxSize": "1.35 kB"
},
{
"path": "./dist/css/cuesync.min.css",
"maxSize": "535 B"
"maxSize": "1.2 kB"
},
{
"path": "./dist/js/cuesync.esm.js",
"maxSize": "4.30 kB"
"maxSize": "7.15 kB"
},
{
"path": "./dist/js/cuesync.esm.min.js",
"maxSize": "3.00 kB"
"maxSize": "5.55 kB"
},
{
"path": "./dist/js/cuesync.js",
"maxSize": "4.50 kB"
"maxSize": "7.35 kB"
},
{
"path": "./dist/js/cuesync.min.js",
"maxSize": "3.00 kB"
"maxSize": "5.65 kB"
}
],
"ci": {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<h3 align="center">CueSync</h3>

<p align="center">
CueSync is a JavaScript library designed to simplify the integration of interactive transcripts into multimedia content.
CueSync is a JavaScript library that simplifies the integration of interactive transcripts into your media projects.
</p>

## Table of contents
Expand Down
4 changes: 4 additions & 0 deletions build/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import path from 'node:path'
import process from 'node:process'
import { fileURLToPath } from 'node:url'
import { babel } from '@rollup/plugin-babel'
import css from 'rollup-plugin-import-css'
import banner from './banner.mjs'

const __dirname = path.dirname(fileURLToPath(import.meta.url))
Expand All @@ -11,6 +12,9 @@ const ESM = process.env.ESM === 'true'
const destinationFile = `cuesync${ESM ? '.esm' : ''}`
const external = []
const plugins = [
css({
minify: true
}),
babel({
// Only transpile our source code
exclude: 'node_modules/**',
Expand Down
8 changes: 4 additions & 4 deletions hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ publishDir: "_site"
module:
mounts:
- source: dist
target: static/1.0/dist
target: static/2.0/dist
- source: site/content
target: content
- source: site/static
Expand All @@ -47,8 +47,8 @@ related:
toLower: false

params:
description: "CueSync is a JavaScript library designed to simplify the integration of interactive transcripts into multimedia content."
description: "CueSync is a JavaScript library that simplifies the integration of interactive transcripts into your media projects."
authors: "Neeraj Kumar Das"

current_version: "1.0.0-alpha1"
docs_version: "1.0"
current_version: "2.0.0-alpha1"
docs_version: "2.0"
Loading