Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master merge #2874

Merged
merged 12 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ description: Tell us about your issue.
title: "Provide a general summary of the issue"
labels: ["Type: Bug", "State: Triage"]
body:
- type: markdown
attributes:
value: "Note: I am no longer taking feature requests.
Beginning in 2024, tickets will be paid support only. Please see [this discussion](https://github.com/Eonasdan/tempus-dominus/discussions/2694)."
- type: checkboxes
attributes:
label: Prerequisites
Expand Down
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@ contact_links:
- name: Ask a question
url: https://github.com/Eonasdan/tempus-dominus/discussions/new
about: Ask and discuss questions with other community members
- name: Join the discord
url: https://discord.gg/BHS9jw9YPf
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/feature_request.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ src/docs/partials/examples/test.html
/docs/
/dist/plugins/examples/
coverage
dist
types

.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R53OEFF)

# Tempus Dominus Date/Time Picker v6.7.10
# Tempus Dominus Date/Time Picker v6.7.16

Tempus Dominus is a powerful and robust date time picker for javascript. Version 6 is another major rewrite over the previous version. V6 is written with modern browsers in mind and is written in typescript. Bootstrap, momentjs and jQuery are no longer required dependencies. Popper2 is all that is required for the picker to position correctly. If you still require jQuery (seriously, you should move off that asap) there's a jQuery provider that wraps the native js functions.

Expand Down
5 changes: 4 additions & 1 deletion build/change-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ const DRY_RUN =

// These are the filetypes we only care about replacing the version
const GLOB = [
'**/*.{css,html,js,json,md,scss,txt,yml,ts,nuspec,properties}',
'**/*.{css,js,json,md,scss,txt,yml,ts,nuspec,properties}',
'**/shell.html',
'**/installing.html',
'**/templates/index.html',
'!**/change-log*',
];
const GLOBBY_OPTIONS = {
Expand Down
Loading