├── .github
├── FUNDING.yml
├── workflows
│ ├── awesome-lint.yml
│ ├── update_contributors.yml
│ └── covert_to_pr.yml
├── scripts
│ └── update_contributors.py
└── ISSUE_TEMPLATE
│ ├── add_app.yml
│ └── edit_app.yml
├── assets
├── star.svg
├── paid.svg
└── opensource.svg
├── CONTRIBUTING.md
├── code-of-conduct.md
├── LICENSE
└── README.md
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: 0pandadev
2 |
--------------------------------------------------------------------------------
/.github/workflows/awesome-lint.yml:
--------------------------------------------------------------------------------
1 | name: Awesome readme lint
2 |
3 | on:
4 | pull_request:
5 |
6 | jobs:
7 | build:
8 | name: awesome readme lint
9 | runs-on: ubuntu-latest
10 | steps:
11 | - uses: actions/checkout@v2
12 | - uses: Scrum/awesome-lint-action@v0.1.1
13 | env:
14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15 |
--------------------------------------------------------------------------------
/assets/star.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/workflows/update_contributors.yml:
--------------------------------------------------------------------------------
1 | name: Update Contributors
2 |
3 | on:
4 | schedule:
5 | - cron: "0 0 * * *"
6 | workflow_dispatch:
7 |
8 | jobs:
9 | update-contributors:
10 | runs-on: ubuntu-latest
11 | steps:
12 | - uses: actions/checkout@v4
13 | with:
14 | token: ${{ secrets.PAT }}
15 |
16 | - name: Set up Python
17 | uses: actions/setup-python@v5
18 | with:
19 | python-version: "3.x"
20 |
21 | - name: Install dependencies
22 | run: |
23 | python -m pip install --upgrade pip
24 | pip install requests
25 |
26 | - name: Update contributors
27 | env:
28 | GITHUB_PAT: ${{ secrets.PAT }}
29 | id: update
30 | run: |
31 | output=$(python .github/scripts/update_contributors.py)
32 | echo "update_status=$output" >> $GITHUB_OUTPUT
33 |
34 | - name: Commit and push if changed
35 | if: steps.update.outputs.update_status == 'Contributors updated'
36 | run: |
37 | git config --local user.email "70103896+0PandaDEV@users.noreply.github.com"
38 | git config --local user.name "0PandaDEV"
39 | git add README.md
40 | git commit -m "Update contributors" && git push
41 |
--------------------------------------------------------------------------------
/assets/paid.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.github/scripts/update_contributors.py:
--------------------------------------------------------------------------------
1 | import os
2 | import re
3 | import requests
4 |
5 |
6 | def get_contributors():
7 | headers = {'Authorization': f"token {os.environ.get('GITHUB_PAT')}"}
8 | repo = os.environ.get('GITHUB_REPOSITORY')
9 | response = requests.get(
10 | f'https://api.github.com/repos/{repo}/contributors', headers=headers)
11 | return [contributor for contributor in response.json() if contributor['login'] != 'actions-user']
12 |
13 |
14 | def has_contributors_changed(contributors):
15 | with open('README.md', 'r') as file:
16 | content = file.read()
17 |
18 | for contributor in contributors:
19 | username = contributor['login']
20 | if f"https://github.com/{username}" not in content:
21 | return True
22 | return False
23 |
24 |
25 | def update_readme(contributors):
26 | with open('README.md', 'r') as file:
27 | content = file.read()
28 |
29 | new_block = "## Backers\n\nThanks to all contributors without you this project would not exist.\n\n"
30 |
31 | for contributor in contributors:
32 | avatar_url = contributor['avatar_url']
33 | new_block += f" "
34 |
35 | new_block += "\n\nPlease, consider supporting me as it is a lot of work to maintain this list! Thanks a lot.\n\n"
36 | new_block += "\n\n"
37 |
38 | pattern = r"(?ms)^## Backers\s*\n.*?(?=^\[oss\]:)"
39 | content = re.sub(pattern, new_block, content)
40 | with open('README.md', 'w') as file:
41 | file.write(content)
42 |
43 |
44 | if __name__ == "__main__":
45 | contributors = get_contributors()
46 | if has_contributors_changed(contributors):
47 | update_readme(contributors)
48 | print("Contributors updated")
49 | else:
50 | print("No changes in contributors")
51 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing Guidelines
2 |
3 | Please note that this project is released with a [Contributor Code of Conduct](CODE-OF-CONDUCT.md). By participating in this project, you agree to abide by its terms.
4 |
5 | ## Table of Contents
6 |
7 | - [Pull Request Guidelines](#pull-request-guidelines)
8 | - [How to add to this list](#how-to-add-to-this-list)
9 | - [Updating your Pull Request](#updating-your-pull-request)
10 |
11 | ## Pull Request Guidelines
12 |
13 | Please ensure your pull request adheres to the following guidelines:
14 |
15 | - Search previous suggestions to make sure your suggestion isn't a duplicate.
16 | - Make sure each list item is useful before adding it.
17 | - Create individual pull requests/issues for each suggestion.
18 | - Use [title-casing](http://titlecapitalization.com) (AP style) in the following format: `* [List Name](link)`
19 | - Link additions should be added in alphabetical order in the relevant category.
20 | - New categories or changes to the existing categorization are welcome.
21 | - Check your spelling and grammar.
22 | - Make sure your text editor is set to remove trailing whitespace.
23 | - The pull request and commit should have a useful title.
24 | - Annotate your PR to clarify what you did if the diff is confusing.
25 |
26 | Thank you for your suggestions!
27 |
28 | ## How to add to this list
29 |
30 | Either make an issue with the template Add Application, which will then automatically create a pull request, or make your manual changes as follows:
31 |
32 | If you don't have a [GitHub account](https://github.com/join), make one!
33 |
34 | 1. Fork this repo.
35 | 2. Make changes under correct section in `README.md`
36 | 3. Update `Contents` (if applicable)
37 | 4. Commit and open a Pull Request
38 |
39 | ## Updating your Pull Request
40 |
41 | Sometimes, a maintainer of an awesome list will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-windows list guidelines.
42 |
43 | [Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that.
44 |
--------------------------------------------------------------------------------
/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, gender identity and expression, level of experience,
9 | nationality, personal appearance, race, religion, or sexual identity and
10 | orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as physical or electronic
30 | address, without explicit permission
31 | * Other conduct that could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at . All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at [https://contributor-covenant.org/version/1/4][version]
72 |
73 | [homepage]: https://contributor-covenant.org
74 | [version]: https://contributor-covenant.org/version/1/4/
75 |
--------------------------------------------------------------------------------
/assets/opensource.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/add_app.yml:
--------------------------------------------------------------------------------
1 | name: Add Application
2 | description: Suggest an application to be added to the Awesome Windows list
3 | labels: ["Add"]
4 | title: "[ADD] "
5 | assignees:
6 | - 0pandadev
7 | body:
8 | - type: markdown
9 | attributes:
10 | value: |
11 | Thanks for taking the time to suggest an application for the Awesome Windows list!
12 | Please fill out the form below to provide details about the application.
13 |
14 | - type: input
15 | id: app-name
16 | attributes:
17 | label: Application Name
18 | description: What is the name of the application?
19 | placeholder: e.g., Awesome App
20 | validations:
21 | required: true
22 |
23 | - type: input
24 | id: app-url
25 | attributes:
26 | label: Application URL
27 | description: Provide the official website or download link for the application
28 | placeholder: https://example.com/awesome-app
29 | validations:
30 | required: true
31 |
32 | - type: dropdown
33 | id: app-category
34 | attributes:
35 | label: Category
36 | description: Which category does this application belong to?
37 | options:
38 | - API Development
39 | - Application Launchers
40 | - Audio
41 | - Backup
42 | - Browsers
43 | - Cloud Storage
44 | - Command Line Tools
45 | - Communication
46 | - Compression
47 | - Customization
48 | - Data Recovery
49 | - Databases
50 | - Developer Utilities
51 | - Email
52 | - File Management
53 | - Games
54 | - Graphics
55 | - IDEs
56 | - Networking
57 | - Office Suites
58 | - Productivity
59 | - Proxy and VPN Tools
60 | - Remote Access
61 | - Screen Capture
62 | - Screenshot
63 | - Security
64 | - System Utilities
65 | - Terminal
66 | - Text Editors
67 | - Version Control
68 | - Video Utilities
69 | - Virtualization
70 | - Window Management
71 | - Other (please specify in description)
72 | validations:
73 | required: true
74 |
75 | - type: textarea
76 | id: app-description
77 | attributes:
78 | label: Description
79 | description: Provide a brief description of the application and its key features
80 | placeholder: This application is awesome because...
81 | validations:
82 | required: true
83 |
84 | - type: checkboxes
85 | id: app-attributes
86 | attributes:
87 | label: Application Attributes
88 | description: Check all that apply
89 | options:
90 | - label: Open Source
91 | - label: Paid
92 | - label: Freemium (free with paid features)
93 |
94 | - type: input
95 | id: repo-url
96 | attributes:
97 | label: Repository URL
98 | description: If the application is open source, provide the URL to its repository (GitHub, GitLab, etc.)
99 | placeholder: https://github.com/example/awesome-app
100 | validations:
101 | required: false
102 |
103 | - type: textarea
104 | id: additional-info
105 | attributes:
106 | label: Additional Information
107 | description: Any other relevant information about the application
108 | placeholder: e.g., system requirements, version tested, etc.
109 |
110 | - type: checkboxes
111 | id: terms
112 | attributes:
113 | label: Code of Conduct
114 | description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/0pandadev/awesome-windows/blob/main/code-of-conduct.md)
115 | options:
116 | - label: I agree to follow this project's Code of Conduct
117 | required: true
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/edit_app.yml:
--------------------------------------------------------------------------------
1 | name: Edit Application
2 | description: Suggest an edit to an existing application in the Awesome Windows list
3 | labels: ["Edit"]
4 | title: "[EDIT] "
5 | assignees:
6 | - 0pandadev
7 | body:
8 | - type: markdown
9 | attributes:
10 | value: |
11 | Thanks for taking the time to suggest an edit for an application in the Awesome Windows list!
12 | Please fill out the form below to provide details about the proposed changes.
13 |
14 | - type: input
15 | id: app-name
16 | attributes:
17 | label: Application Name
18 | description: What is the name of the application you want to edit?
19 | placeholder: e.g., Awesome App
20 | validations:
21 | required: true
22 |
23 | - type: input
24 | id: app-url
25 | attributes:
26 | label: Current Application URL
27 | description: Provide the current URL listed for the application
28 | placeholder: https://example.com/awesome-app
29 | validations:
30 | required: true
31 |
32 | - type: dropdown
33 | id: edit-type
34 | attributes:
35 | label: Type of Edit
36 | description: What kind of edit are you proposing?
37 | options:
38 | - Update URL
39 | - Update Description
40 | - Update Category
41 | - Update Attributes (Free/Open Source/Paid/Freemium)
42 | - Remove Application
43 | - Other (please specify in description)
44 | validations:
45 | required: true
46 |
47 | - type: textarea
48 | id: edit-description
49 | attributes:
50 | label: Edit Description
51 | description: Describe the changes you're proposing in detail
52 | placeholder: The application URL should be updated to... / The description should be changed to...
53 | validations:
54 | required: true
55 |
56 | - type: input
57 | id: new-url
58 | attributes:
59 | label: New URL (if applicable)
60 | description: If you're proposing a URL change, provide the new URL here
61 | placeholder: https://example.com/new-awesome-app-url
62 |
63 | - type: dropdown
64 | id: new-category
65 | attributes:
66 | label: New Category (if applicable)
67 | description: If you're proposing a category change, select the new category
68 | options:
69 | - API Development
70 | - Application Launchers
71 | - Audio
72 | - Backup
73 | - Browsers
74 | - Cloud Storage
75 | - Command Line Tools
76 | - Communication
77 | - Compression
78 | - Customization
79 | - Data Recovery
80 | - Databases
81 | - Developer Utilities
82 | - Email
83 | - File Management
84 | - Games
85 | - Graphics
86 | - IDEs
87 | - Networking
88 | - Office Suites
89 | - Productivity
90 | - Proxy and VPN Tools
91 | - Remote Access
92 | - Screen Capture
93 | - Screenshot
94 | - Security
95 | - System Utilities
96 | - Terminal
97 | - Text Editors
98 | - Version Control
99 | - Video Utilities
100 | - Virtualization
101 | - Window Management
102 | - Other (please specify in description)
103 |
104 | - type: checkboxes
105 | id: new-attributes
106 | attributes:
107 | label: New Application Attributes (if applicable)
108 | description: If you're proposing attribute changes, check all that apply
109 | options:
110 | - label: Open Source
111 | - label: Paid
112 | - label: Freemium (free with paid features)
113 |
114 | - type: input
115 | id: new-repo-url
116 | attributes:
117 | label: New Repository URL (if applicable)
118 | description: If you're changing the open source status or updating the repository URL, provide the new URL here
119 | placeholder: https://github.com/example/awesome-app
120 |
121 | - type: textarea
122 | id: additional-info
123 | attributes:
124 | label: Additional Information
125 | description: Any other relevant information about the proposed edit
126 | placeholder: e.g., reason for the change, sources for new information, etc.
127 |
128 | - type: checkboxes
129 | id: terms
130 | attributes:
131 | label: Code of Conduct
132 | description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/0pandadev/awesome-windows/blob/main/code-of-conduct.md)
133 | options:
134 | - label: I agree to follow this project's Code of Conduct
135 | required: true
136 |
137 |
--------------------------------------------------------------------------------
/.github/workflows/covert_to_pr.yml:
--------------------------------------------------------------------------------
1 | name: Convert Issue to Pull Request
2 |
3 | on:
4 | issue_comment:
5 | types: [created]
6 | workflow_dispatch:
7 | inputs:
8 | issue_number:
9 | description: 'Issue number to convert to PR'
10 | required: true
11 | type: number
12 |
13 | jobs:
14 | convert_issue_to_pr:
15 | if: |
16 | (github.event_name == 'issue_comment' &&
17 | github.event.comment.body == '/convert' &&
18 | github.event.comment.user.login == '0pandadev' &&
19 | contains(github.event.issue.labels.*.name, 'Add')) ||
20 | github.event_name == 'workflow_dispatch'
21 | runs-on: ubuntu-latest
22 | steps:
23 | - name: Checkout repository
24 | uses: actions/checkout@v4
25 | with:
26 | token: ${{ secrets.PAT }}
27 |
28 | - name: Get issue details
29 | id: issue
30 | uses: actions/github-script@v7
31 | with:
32 | github-token: ${{ secrets.PAT }}
33 | script: |
34 | const issueNumber = context.payload.inputs ? context.payload.inputs.issue_number : context.issue.number;
35 | const issue = await github.rest.issues.get({
36 | owner: context.repo.owner,
37 | repo: context.repo.repo,
38 | issue_number: issueNumber
39 | });
40 | return issue.data;
41 |
42 | - name: Update README.md
43 | run: |
44 | ISSUE_BODY="${{ fromJson(steps.issue.outputs.result).body }}"
45 |
46 | # Extract relevant information from issue body
47 | APP_NAME=$(echo "$ISSUE_BODY" | awk '/### Application Name/{flag=1; next} /###/{flag=0} flag' | xargs)
48 | APP_URL=$(echo "$ISSUE_BODY" | awk '/### Application URL/{flag=1; next} /###/{flag=0} flag' | xargs)
49 | CATEGORY=$(echo "$ISSUE_BODY" | awk '/### Category/{flag=1; next} /###/{flag=0} flag' | xargs)
50 | APP_DESCRIPTION=$(echo "$ISSUE_BODY" | awk '/### Description/{flag=1; next} /###/{flag=0} flag' | xargs)
51 | REPO_URL=$(echo "$ISSUE_BODY" | awk '/### Repository URL/{flag=1; next} /###/{flag=0} flag' | xargs)
52 |
53 | # Check if the application is open source
54 | if echo "$ISSUE_BODY" | grep -q "\[X\] Open Source"; then
55 | if [ -n "$REPO_URL" ]; then
56 | OPEN_SOURCE_ICON="[![Open-Source Software][oss]]($REPO_URL)"
57 | else
58 | OPEN_SOURCE_ICON="![oss]"
59 | fi
60 | else
61 | OPEN_SOURCE_ICON=""
62 | fi
63 |
64 | # Check if the application is paid
65 | if echo "$ISSUE_BODY" | grep -q "\[X\] Paid"; then
66 | PAID_ICON="![paid]"
67 | else
68 | PAID_ICON=""
69 | fi
70 |
71 | # Create the new entry
72 | NEW_ENTRY="* [$APP_NAME]($APP_URL) - $APP_DESCRIPTION $OPEN_SOURCE_ICON $PAID_ICON"
73 |
74 | # Find the category section and insert the new entry
75 | awk -v new_entry="$NEW_ENTRY" -v category="$CATEGORY" '
76 | BEGIN {in_category=0; added=0}
77 | /^## / {
78 | if (in_category && !added) {
79 | print new_entry
80 | added=1
81 | }
82 | in_category = ($0 ~ "^## " category)
83 | print
84 | if (in_category) print ""
85 | next
86 | }
87 | in_category && /^\* / {
88 | if (!added && tolower(substr(new_entry, 3)) < tolower(substr($0, 3))) {
89 | print new_entry
90 | added=1
91 | }
92 | print
93 | next
94 | }
95 | {print}
96 | END {
97 | if (in_category && !added) print new_entry
98 | }
99 | ' README.md > README.md.tmp && mv README.md.tmp README.md
100 |
101 | # Set environment variables for later steps
102 | echo "APP_NAME=$APP_NAME" >> $GITHUB_ENV
103 | echo "CATEGORY=$CATEGORY" >> $GITHUB_ENV
104 | echo "APP_URL=$APP_URL" >> $GITHUB_ENV
105 | echo "APP_DESCRIPTION=$APP_DESCRIPTION" >> $GITHUB_ENV
106 | echo "OPEN_SOURCE_ICON=$OPEN_SOURCE_ICON" >> $GITHUB_ENV
107 | echo "FREE_ICON=$FREE_ICON" >> $GITHUB_ENV
108 | echo "REPO_URL=$REPO_URL" >> $GITHUB_ENV
109 |
110 | - name: Debug Output
111 | run: |
112 | echo "APP_NAME: $APP_NAME"
113 | echo "APP_URL: $APP_URL"
114 | echo "CATEGORY: $CATEGORY"
115 | echo "APP_DESCRIPTION: $APP_DESCRIPTION"
116 | echo "OPEN_SOURCE_ICON: $OPEN_SOURCE_ICON"
117 | echo "FREE_ICON: $FREE_ICON"
118 | echo "REPO_URL: $REPO_URL"
119 |
120 | - name: Create Pull Request
121 | uses: peter-evans/create-pull-request@v6
122 | with:
123 | token: ${{ secrets.PAT }}
124 | commit-message: "Add ${{ env.APP_NAME }} to ${{ env.CATEGORY }} category"
125 | title: "Add ${{ env.APP_NAME }} to ${{ env.CATEGORY }} category"
126 | body: |
127 | This PR adds ${{ env.APP_NAME }} to the ${{ env.CATEGORY }} category in the README.md file.
128 |
129 | Application URL: ${{ env.APP_URL }}
130 | Repository URL: ${{ env.REPO_URL }}
131 |
132 | Closes #${{ github.event.issue.number || github.event.inputs.issue_number }}
133 | branch: add-${{ github.event.issue.number || github.event.inputs.issue_number }}
134 | base: main
135 |
136 | - name: Close Issue
137 | uses: actions/github-script@v7
138 | with:
139 | github-token: ${{ secrets.PAT }}
140 | script: |
141 | const issueNumber = context.payload.inputs ? context.payload.inputs.issue_number : context.issue.number;
142 | await github.rest.issues.update({
143 | owner: context.repo.owner,
144 | repo: context.repo.repo,
145 | issue_number: issueNumber,
146 | state: 'closed'
147 | });
148 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Creative Commons Legal Code
2 |
3 | CC0 1.0 Universal
4 |
5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
12 | HEREUNDER.
13 |
14 | Statement of Purpose
15 |
16 | The laws of most jurisdictions throughout the world automatically confer
17 | exclusive Copyright and Related Rights (defined below) upon the creator
18 | and subsequent owner(s) (each and all, an "owner") of an original work of
19 | authorship and/or a database (each, a "Work").
20 |
21 | Certain owners wish to permanently relinquish those rights to a Work for
22 | the purpose of contributing to a commons of creative, cultural and
23 | scientific works ("Commons") that the public can reliably and without fear
24 | of later claims of infringement build upon, modify, incorporate in other
25 | works, reuse and redistribute as freely as possible in any form whatsoever
26 | and for any purposes, including without limitation commercial purposes.
27 | These owners may contribute to the Commons to promote the ideal of a free
28 | culture and the further production of creative, cultural and scientific
29 | works, or to gain reputation or greater distribution for their Work in
30 | part through the use and efforts of others.
31 |
32 | For these and/or other purposes and motivations, and without any
33 | expectation of additional consideration or compensation, the person
34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she
35 | is an owner of Copyright and Related Rights in the Work, voluntarily
36 | elects to apply CC0 to the Work and publicly distribute the Work under its
37 | terms, with knowledge of his or her Copyright and Related Rights in the
38 | Work and the meaning and intended legal effect of CC0 on those rights.
39 |
40 | 1. Copyright and Related Rights. A Work made available under CC0 may be
41 | protected by copyright and related or neighboring rights ("Copyright and
42 | Related Rights"). Copyright and Related Rights include, but are not
43 | limited to, the following:
44 |
45 | i. the right to reproduce, adapt, distribute, perform, display,
46 | communicate, and translate a Work;
47 | ii. moral rights retained by the original author(s) and/or performer(s);
48 | iii. publicity and privacy rights pertaining to a person's image or
49 | likeness depicted in a Work;
50 | iv. rights protecting against unfair competition in regards to a Work,
51 | subject to the limitations in paragraph 4(a), below;
52 | v. rights protecting the extraction, dissemination, use and reuse of data
53 | in a Work;
54 | vi. database rights (such as those arising under Directive 96/9/EC of the
55 | European Parliament and of the Council of 11 March 1996 on the legal
56 | protection of databases, and under any national implementation
57 | thereof, including any amended or successor version of such
58 | directive); and
59 | vii. other similar, equivalent or corresponding rights throughout the
60 | world based on applicable law or treaty, and any national
61 | implementations thereof.
62 |
63 | 2. Waiver. To the greatest extent permitted by, but not in contravention
64 | of, applicable law, Affirmer hereby overtly, fully, permanently,
65 | irrevocably and unconditionally waives, abandons, and surrenders all of
66 | Affirmer's Copyright and Related Rights and associated claims and causes
67 | of action, whether now known or unknown (including existing as well as
68 | future claims and causes of action), in the Work (i) in all territories
69 | worldwide, (ii) for the maximum duration provided by applicable law or
70 | treaty (including future time extensions), (iii) in any current or future
71 | medium and for any number of copies, and (iv) for any purpose whatsoever,
72 | including without limitation commercial, advertising or promotional
73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
74 | member of the public at large and to the detriment of Affirmer's heirs and
75 | successors, fully intending that such Waiver shall not be subject to
76 | revocation, rescission, cancellation, termination, or any other legal or
77 | equitable action to disrupt the quiet enjoyment of the Work by the public
78 | as contemplated by Affirmer's express Statement of Purpose.
79 |
80 | 3. Public License Fallback. Should any part of the Waiver for any reason
81 | be judged legally invalid or ineffective under applicable law, then the
82 | Waiver shall be preserved to the maximum extent permitted taking into
83 | account Affirmer's express Statement of Purpose. In addition, to the
84 | extent the Waiver is so judged Affirmer hereby grants to each affected
85 | person a royalty-free, non transferable, non sublicensable, non exclusive,
86 | irrevocable and unconditional license to exercise Affirmer's Copyright and
87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the
88 | maximum duration provided by applicable law or treaty (including future
89 | time extensions), (iii) in any current or future medium and for any number
90 | of copies, and (iv) for any purpose whatsoever, including without
91 | limitation commercial, advertising or promotional purposes (the
92 | "License"). The License shall be deemed effective as of the date CC0 was
93 | applied by Affirmer to the Work. Should any part of the License for any
94 | reason be judged legally invalid or ineffective under applicable law, such
95 | partial invalidity or ineffectiveness shall not invalidate the remainder
96 | of the License, and in such case Affirmer hereby affirms that he or she
97 | will not (i) exercise any of his or her remaining Copyright and Related
98 | Rights in the Work or (ii) assert any associated claims and causes of
99 | action with respect to the Work, in either case contrary to Affirmer's
100 | express Statement of Purpose.
101 |
102 | 4. Limitations and Disclaimers.
103 |
104 | a. No trademark or patent rights held by Affirmer are waived, abandoned,
105 | surrendered, licensed or otherwise affected by this document.
106 | b. Affirmer offers the Work as-is and makes no representations or
107 | warranties of any kind concerning the Work, express, implied,
108 | statutory or otherwise, including without limitation warranties of
109 | title, merchantability, fitness for a particular purpose, non
110 | infringement, or the absence of latent or other defects, accuracy, or
111 | the present or absence of errors, whether or not discoverable, all to
112 | the greatest extent permissible under applicable law.
113 | c. Affirmer disclaims responsibility for clearing rights of other persons
114 | that may apply to the Work or any use thereof, including without
115 | limitation any person's Copyright and Related Rights in the Work.
116 | Further, Affirmer disclaims responsibility for obtaining any necessary
117 | consents, permissions or other rights required for any use of the
118 | Work.
119 | d. Affirmer understands and acknowledges that Creative Commons is not a
120 | party to this document and has no duty or obligation with respect to
121 | this CC0 or use of the Work.
122 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | [](https://github.com/sindresorhus/awesome) [](https://www.trackawesomelist.com/0pandadev/awesome-windows/)
4 |
5 | ![star] - Personal favorites
6 | ![oss] - Open source
7 | ![paid] - Paid
8 |
9 | > \[!IMPORTANT]
10 | >
11 | > **Star this list**, So you don't miss out on the latest apps \~ ⭐️
12 | >
13 | > [discord](https://discord.gg/invite/Y7SbYphVw9) - [pandadev.net](https://pandadev.net)
14 |
15 | ###### Check out my projects
16 |
17 |