Skip to content

Commit

Permalink
Merge branch 'master' into 0.6.0-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Nov 12, 2023
2 parents f50638c + 6a66b71 commit e54a048
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/comment-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Add immediate comment on new issues

on:
issues:
types: [opened]

jobs:
createComment:
runs-on: ubuntu-latest
steps:
- name: Create Comment
uses: peter-evans/[email protected]
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thank you for submitting this issue!
We, the Members of Meteor Community Packages take every issue seriously.
Our goal is to provide long-term lifecycles for packages and keep up
with the newest changes in Meteor and the overall NodeJs/JavaScript ecosystem.
However, we contribute to these packages mostly in our free time.
Therefore, we can't guarantee your issues to be solved within certain time.
If you think this issue is trivial to solve, don't hesitate to submit
a pull request, too! We will accompany you in the process with reviews and hints
on how to get development set up.
Please also consider sponsoring the maintainers of the package.
If you don't know who is currently maintaining this package, just leave a comment
and we'll let you know.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.build*
.versions

.idea/
10 changes: 10 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
- Added option to set the timesync URL using `TimeSync.setSyncUrl`
- ... more to come, v0.6.0 is a work in progress!

## v0.5.3

- Bump minimum Meteor version to 1.12
- Take into account `ROOT_URL` environment variable if set

## v0.5.2

- Travis CI NodeJS environment updated to use Node 12 and 14
- Updated package resolution to work for Meteor 2.3

## v0.5.1

- Fix an issue where `TimeSync.ServerTime` returned NaN when executed in meteor-desktop.
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Package.describe({
name: 'mizzao:timesync',
summary: 'NTP-style time synchronization between server and client',
version: '0.6.0',
git: 'https://github.com/mizzao/meteor-timesync.git'
git: "https://github.com/Meteor-Community-Packages/meteor-timesync"
});

Package.onUse(function (api) {
api.versionsFrom(["1.9", "2.3"]);
api.versionsFrom(["1.12", "2.3"]);

api.use([
'check',
Expand Down

0 comments on commit e54a048

Please sign in to comment.