-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from yashovardhan99/master
Timer release
- Loading branch information
Showing
18 changed files
with
580 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# These are supported funding model platforms | ||
|
||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
patreon: # Replace with a single Patreon username | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
custom: paypal.me/yashovardhan99 # Replace with a single custom sponsorship URL |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# How to Contribute | ||
Firstly, thanks for reading this! This means you are here to help me improve this project and make it better for other developers! | ||
## How to contribute | ||
To get started, first fork this repository's main branch (see [Fork a repo](https://help.github.com/articles/fork-a-repo/)). Forking a repo makes a local copy of this repository in your github account. Now, you can freely make any changes you want and then submit a pull request to allow us to merge your changes back here. (Learn more [About pull requests](https://help.github.com/articles/about-pull-requests/)). | ||
|
||
Now, there are many different ways you can contribute to this project and you don't need to be a programmer for all of them! You can help: | ||
* Improve the documentation | ||
* Create new issues. [Guide](https://help.github.com/articles/creating-an-issue/) | ||
* Fix simple issues; and, | ||
* Add new features! | ||
|
||
## Documentation | ||
The documentation mainly consists of the [Readme.md file](https://github.com/yashovardhan99/TimeIt/blob/master/README.md) and a [set of JavaDocs](https://github.com/yashovardhan99/TimeIt/tree/gh-pages/JavaDocs). The website is published using the `gh-pages` branch. | ||
|
||
1. Please do not make any direct modification to the JavaDocs folder. It is generated automatically for every new release using the javadoc comments in the `.java` files of the `timeit` module. Instead, make any changes in the commented javadocs of the appropriate class. | ||
2. Do not make any changes to any branch except the `master` branch. The master branch is the active development branch. For important changes, they will be merged in other branches as and when required. For the website, any changes in the readme will be merged from time to time depending on the severity of the fix. | ||
3. Do not change the writing style or make major changes in the readme. Instead, you can write your own helping documentation which can later be integrated into the project (possibly via GitHub wiki). | ||
|
||
## Opening an issuee | ||
Before opening an issue, make sure that a similar issue is not already open (or has been recently closed). If you are working on a fix already, indicate so when opening the issue. Do not open issues for very small issues like spelling errors, missing punctuations etc. Instead, consider fixing them yourself and submit a single pull request with all such changes. | ||
|
||
## Fixing issues | ||
If you want to fix an issue with the library, consider indicating so in the issue discussion. If no issue exists, consider opening one. Do not open issues for very minor fixes. | ||
|
||
## Adding new features | ||
If you are working on expanding the project, consider opening an issue with the enhancement tag and indicate that you are working on it. This helps prevent duplication of effort. If an issue already exists requesting such a feature, comment there instead stating that you wish to work on it. | ||
|
||
## License | ||
Any changes you make to this project should be in compliance with the license requirements. | ||
|
||
Copyright 2018 Yashovardhan Dhanania | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,6 @@ | ||
# | ||
# Copyright 2018 Yashovardhan Dhanania | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
#Sun Jun 30 13:56:33 IST 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.