Skip to content

Commit 9fb7100

Browse files
tkirda-bisonclaude
andcommitted
docs(license): rename to LICENSE, drop DevBridge and dead URLs
- Rename `license.txt` to canonical `LICENSE` (no extension, no BOM). Standard tooling — GitHub's License badge, npm's licensee scan, Linguist — prefers this form. - Update copyright line to `Copyright (c) 2012-2026 Tomas Kirda and contributors`. Drops the dead `www.devbridge.com/projects/autocomplete/jquery/` URL and the DevBridge company attribution; Tomas is the maintainer per package.json `author`. License terms (MIT) unchanged. - `package.json` `files` references `LICENSE`. - `devbridge-autocomplete.jquery.json`: - License URL points at `LICENSE`. - Dead `demo: www.devbridge.com/sourcery/...` field removed. - `bugs` URL strips obsolete `?state=open` query param. - `dependencies.jquery` corrected from `>=1.7` to `>=3.0` to match `package.json` peer dep (out of sync since the 2.0 rewrite). - `readme.md` license link updated to `LICENSE`. - `scripts/build.mjs` banner copyright updated to match the new LICENSE line; dist files regenerated. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a31b885 commit 9fb7100

8 files changed

Lines changed: 10 additions & 11 deletions

license.txt renamed to LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2012 DevBridge and other contributors
1+
Copyright (c) 2012-2026 Tomas Kirda and contributors
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

devbridge-autocomplete.jquery.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@
1414
"licenses": [
1515
{
1616
"type": "MIT",
17-
"url": "https://github.com/devbridge/jQuery-Autocomplete/blob/master/license.txt"
17+
"url": "https://github.com/devbridge/jQuery-Autocomplete/blob/master/LICENSE"
1818
}
1919
],
20-
"bugs": "https://github.com/devbridge/jQuery-Autocomplete/issues?state=open",
20+
"bugs": "https://github.com/devbridge/jQuery-Autocomplete/issues",
2121
"homepage": "https://github.com/devbridge/jQuery-Autocomplete",
2222
"docs": "https://github.com/devbridge/jQuery-Autocomplete",
23-
"demo": "http://www.devbridge.com/sourcery/components/jquery-autocomplete/",
2423
"download": "https://github.com/devbridge/jQuery-Autocomplete/tree/master/dist",
2524
"dependencies": {
26-
"jquery": ">=1.7"
25+
"jquery": ">=3.0"
2726
}
2827
}

dist/jquery.autocomplete.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Ajax Autocomplete for jQuery, version 2.0.2
3-
* (c) 2025 Tomas Kirda
3+
* (c) 2012-2026 Tomas Kirda and contributors
44
*
55
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
66
* For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete

dist/jquery.autocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Ajax Autocomplete for jQuery, version 2.0.2
3-
* (c) 2025 Tomas Kirda
3+
* (c) 2012-2026 Tomas Kirda and contributors
44
*
55
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
66
* For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete

dist/jquery.autocomplete.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@
5656
"files": [
5757
"dist/",
5858
"readme.md",
59-
"license.txt"
59+
"LICENSE"
6060
]
6161
}

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ $('.autocomplete').devbridgeAutocomplete({ ... });
283283
## License
284284

285285
Ajax Autocomplete for jQuery is freely distributable under the terms of an
286-
MIT-style [license](https://github.com/devbridge/jQuery-Autocomplete/blob/master/license.txt).
286+
MIT-style [license](https://github.com/devbridge/jQuery-Autocomplete/blob/master/LICENSE).
287287
The copyright and permission notices must be included with any copy or
288288
substantial portion of the software.
289289

scripts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const version = pkg.version;
1414
const banner = [
1515
"/**",
1616
`* Ajax Autocomplete for jQuery, version ${version}`,
17-
"* (c) 2025 Tomas Kirda",
17+
"* (c) 2012-2026 Tomas Kirda and contributors",
1818
"*",
1919
"* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.",
2020
"* For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete",

0 commit comments

Comments
 (0)