simple-calendar-js 3.0.12 → 3.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/CONTRIBUTING.md +49 -0
- package/README.md +89 -1418
- package/dist/simple-calendar-js.min.css +1 -1
- package/dist/simple-calendar-js.min.js +1 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
No unreleased changes yet.
|
|
11
11
|
|
|
12
|
+
## [3.0.13] - 2026-03-08
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Simplified README from 1688 to 337 lines for better readability
|
|
16
|
+
- Moved detailed documentation to website (simplecalendarjs.com/docs)
|
|
17
|
+
- Fixed all relative links in README to use full GitHub URLs for npm compatibility
|
|
18
|
+
- Updated repository configuration for public release
|
|
19
|
+
- Added comprehensive contributing guidelines and issue templates
|
|
20
|
+
|
|
12
21
|
## [3.0.12] - 2026-03-06
|
|
13
22
|
|
|
14
23
|
### Added
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Contributing to SimpleCalendarJs
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in SimpleCalendarJs!
|
|
4
|
+
|
|
5
|
+
## Contribution Policy
|
|
6
|
+
|
|
7
|
+
**This project does not accept code contributions, pull requests, or external modifications.**
|
|
8
|
+
|
|
9
|
+
SimpleCalendarJs is maintained as a commercial product with a dual-licensing model:
|
|
10
|
+
- Free for personal and non-commercial use
|
|
11
|
+
- Paid commercial licenses for business use
|
|
12
|
+
|
|
13
|
+
To maintain code quality and licensing integrity, all development is handled exclusively by the project maintainer.
|
|
14
|
+
|
|
15
|
+
## How You Can Help
|
|
16
|
+
|
|
17
|
+
While we don't accept code contributions, you can still help improve SimpleCalendarJs:
|
|
18
|
+
|
|
19
|
+
### Report Issues
|
|
20
|
+
If you encounter bugs or have feature requests, please:
|
|
21
|
+
1. Open an issue on [GitHub Issues](https://github.com/pclslopes/SimpleCalendarJs/issues)
|
|
22
|
+
2. Provide detailed information:
|
|
23
|
+
- Steps to reproduce the problem
|
|
24
|
+
- Expected vs actual behavior
|
|
25
|
+
- Browser and version information
|
|
26
|
+
- Code snippets or examples
|
|
27
|
+
|
|
28
|
+
### Share Feedback
|
|
29
|
+
- Feature suggestions are welcome via GitHub Issues
|
|
30
|
+
- User experience feedback helps improve the library
|
|
31
|
+
- Documentation improvements can be suggested
|
|
32
|
+
|
|
33
|
+
### Support Other Users
|
|
34
|
+
- Help answer questions in GitHub Issues
|
|
35
|
+
- Share your implementation examples
|
|
36
|
+
- Write blog posts or tutorials about using SimpleCalendarJs
|
|
37
|
+
|
|
38
|
+
## Commercial Licensing
|
|
39
|
+
|
|
40
|
+
For commercial use, please purchase a license at:
|
|
41
|
+
https://www.simplecalendarjs.com
|
|
42
|
+
|
|
43
|
+
For licensing inquiries: simplecalendarjs@gmail.com
|
|
44
|
+
|
|
45
|
+
## Questions?
|
|
46
|
+
|
|
47
|
+
If you have questions about this policy or the project, feel free to open a discussion in GitHub Issues.
|
|
48
|
+
|
|
49
|
+
Thank you for understanding and supporting SimpleCalendarJs!
|