Skip to content

Commit f99b8e8

Browse files
author
William Troup
authored
Merge pull request #2 from williamtroup/0.2.1
0.2.1
2 parents f579a70 + 52f9553 commit f99b8e8

File tree

13 files changed

+30
-18
lines changed

13 files changed

+30
-18
lines changed

PACK.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nuget pack syntax.js.nuspec

PUBLISH.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm publish --access=public

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
Select.js
33

44
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Select.js%2C%20a%20free%20JavaScript%select%builder&url=https://github.com/williamtroup/Select.js&hashtags=javascript,html,select)
5-
[![npm](https://img.shields.io/badge/npmjs-v0.2.0-blue)](https://www.npmjs.com/package/jselect.js)
6-
[![nuget](https://img.shields.io/badge/nuget-v0.2.0-purple)](https://www.nuget.org/packages/jSelect.js/)
5+
[![npm](https://img.shields.io/badge/npmjs-v0.2.1-blue)](https://www.npmjs.com/package/jselect.js)
6+
[![nuget](https://img.shields.io/badge/nuget-v0.2.1-purple)](https://www.nuget.org/packages/jSelect.js/)
77
[![license](https://img.shields.io/badge/license-MIT-green)](https://github.com/williamtroup/Select.js/blob/main/LICENSE.txt)
88
[![discussions Welcome](https://img.shields.io/badge/discussions-Welcome-red)](https://github.com/williamtroup/Select.js/discussions)
99
[![coded by William Troup](https://img.shields.io/badge/coded_by-William_Troup-yellow)](https://github.com/williamtroup)
1010
</h1>
1111

1212
> <p align="center">A lightweight, and easy-to-use, JavaScript library for creating multi-select drop-down lists!</p>
13-
> <p align="center">v0.2.0</p>
13+
> <p align="center">v0.2.1</p>
1414
<br />
1515
1616
![Select.js](docs/images/main.png)
@@ -20,6 +20,7 @@ Select.js
2020
<h1>What features does Select.js have?</h1>
2121

2222
- Zero-dependencies and extremely lightweight!
23+
- Maintains existing SELECT DOM element for FORM compatibility.
2324
- Full API available via public functions.
2425
- Fully styled in CSS/SASS (including the buttons) and compatible with the Bootstrap library.
2526
- Full CSS theme support (using :root variables, with a default dark-mode theme).

README_NUGET.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Select.js v0.2.0
1+
# Select.js v0.2.1
22

33
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Select.js%2C%20a%20free%20JavaScript%select%builder&url=https://github.com/williamtroup/Select.js&hashtags=javascript,html,select)
4-
[![npm](https://img.shields.io/badge/npmjs-v0.2.0-blue)](https://www.npmjs.com/package/jselect.js)
5-
[![nuget](https://img.shields.io/badge/nuget-v0.2.0-purple)](https://www.nuget.org/packages/jSelect.js/)
4+
[![npm](https://img.shields.io/badge/npmjs-v0.2.1-blue)](https://www.npmjs.com/package/jselect.js)
5+
[![nuget](https://img.shields.io/badge/nuget-v0.2.1-purple)](https://www.nuget.org/packages/jSelect.js/)
66
[![license](https://img.shields.io/badge/license-MIT-green)](https://github.com/williamtroup/Select.js/blob/main/LICENSE.txt)
77
[![discussions Welcome](https://img.shields.io/badge/discussions-Welcome-red)](https://github.com/williamtroup/Select.js/discussions)
88
[![coded by William Troup](https://img.shields.io/badge/coded_by-William_Troup-yellow)](https://github.com/williamtroup)
@@ -13,6 +13,7 @@
1313
## What features does Select.js have?
1414

1515
- Zero-dependencies and extremely lightweight!
16+
- Maintains existing SELECT DOM element for FORM compatibility.
1617
- Full API available via public functions.
1718
- Fully styled in CSS/SASS (including the buttons) and compatible with the Bootstrap library.
1819
- Full CSS theme support (using :root variables, with a default dark-mode theme).

dist/select.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Select.js v0.2.0 | (c) Bunoon | MIT License */
1+
/*! Select.js v0.2.1 | (c) Bunoon | MIT License */
22
(function() {
33
function render() {
44
var tagTypes = _configuration.domElementTypes;
@@ -350,7 +350,7 @@
350350
return this;
351351
};
352352
this.getVersion = function() {
353-
return "0.2.0";
353+
return "0.2.1";
354354
};
355355
(function(documentObject, windowObject) {
356356
_parameter_Document = documentObject;

dist/select.js.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Select.js Library v0.2.0
2+
* Select.js Library v0.2.1
33
*
44
* Copyright 2023 Bunoon
55
* Released under the MIT License

dist/select.js.min.css

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

dist/select.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/CHANGE_LOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Select.js - Change Log:
22

3+
## Version 0.2.1:
4+
- Added PACK.sh and PUBLISH.sh files for quickly packing and publishing the project.
5+
- Documentation improvements.
6+
- Fixed documentation header in the main "src/select.js" file.
7+
8+
<br>
9+
10+
311
## Version 0.2.0:
412

513
#### **Library:**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jselect.js",
33
"title": "Select.js",
44
"description": "A lightweight, and easy-to-use, JavaScript library for creating multi-select drop-down lists!",
5-
"version": "0.2.0",
5+
"version": "0.2.1",
66
"main": "dist/select.js",
77
"author": {
88
"name": "Bunoon"

0 commit comments

Comments
 (0)