Skip to content

azlibdar/pride

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pride: Minimal Todo List

A Chrome browser extension - No sign-ups, no hassle—just pure productivity.


Features 🐧

  • Minimal Design: Simple, user-friendly interface.
  • No Sign-Ups Required: Start using immediately without any registration.
  • Persistent Storage: Tasks are saved locally in your browser.
  • Audio Feedback: Get a sound notification upon task completion.
  • Automatic Task Deletion: Completed tasks are automatically deleted after 10 hours.
  • Offline Functionality: Works seamlessly offline using local storage.

Screenshots

App screenshot 1 App screenshot 2

Download

You can download the Pride: Minimal Todo List extension from the Chrome Web Store by clicking the button below:

Download from Chrome Web Store


Contributing

We welcome contributions from the community! Here’s a step-by-step guide to help you get started:


1. Fork the Repository

First, fork the repository to your GitHub account by clicking the "Fork" button at the top right of the repository page.

2. Clone the Forked Repository

Clone the forked repository to your local machine:

git clone https://github.com/your-username/pride.git
cd pride

3. Create a New Branch

Create a new branch for your work. Use a descriptive name for your branch based on the type of contribution:

git checkout -b feature/new-task-feature

4. Make Changes and Update Version

Make the necessary changes to the code. Update the version in the manifest.json file. Use semantic versioning: x.y.z where x is the major version, y is the minor version, and z is the patch version. Increment the version number appropriately:

"version": "1.0.1",

5. Commit and Push Changes

Commit your changes with a descriptive message. Tag your commit with the version number:

git add .
git commit -m "Add new task feature and update version to 1.0.1"
git tag v1.0.1 -m "Version 1.0.1"
git push origin feature/new-task-feature
git push origin v1.0.1

Note: Changes to README.md do not require a version update.

6. Create a Pull Request

Navigate to your forked repository on GitHub. Click on the Pull Requests tab and then click the New Pull Request button. Select your branch and submit the pull request for review.

7. Wait for Review

Your pull request will be reviewed. You might be asked to make additional changes. Once your pull request is approved, it will be merged into the main repository.




Thank you for contributing to Pride: Minimal Todo List!