Skip to content

Commit d5b0cd7

Browse files
committed
New Google icon #49
2 parents 81dfc03 + 4469f84 commit d5b0cd7

79 files changed

Lines changed: 501 additions & 279 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/FUNDING.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: sameerasw
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+
polar: # Replace with a single Polar username
13+
buy_me_a_coffee: sameerasw
14+
thanks_dev: # Replace with a single thanks.dev username
15+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
16+
17+
#template for @sameerasw
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Manual Update PNG List
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
update-list:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Check out repository
12+
uses: actions/checkout@v2
13+
14+
- name: Update list.txt
15+
run: |
16+
find PNGs -maxdepth 1 -name '*.png' -exec basename {} \; > PNGs/list.txt
17+
18+
- name: Commit and push changes
19+
run: |
20+
git config --global user.name 'github-actions[bot]'
21+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
22+
git add PNGs/list.txt
23+
git commit -m 'Manually update list.txt with PNG files'
24+
git push
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/icons-list.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Update PNG List
2+
3+
on:
4+
push:
5+
paths:
6+
- 'PNGs/*.png'
7+
workflow_dispatch:
8+
9+
jobs:
10+
update-list:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Check out repository
15+
uses: actions/checkout@v2
16+
17+
- name: Update list.txt
18+
run: |
19+
find PNGs -maxdepth 1 -name '*.png' -exec basename {} \; > PNGs/list.txt
20+
21+
- name: Commit and push changes
22+
run: |
23+
git config --global user.name 'github-actions[bot]'
24+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
25+
git add PNGs/list.txt
26+
git commit -m 'Manually update list.txt with PNG files'
27+
git push
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Update README with Icons
2+
3+
on:
4+
push:
5+
paths:
6+
- 'PNGs/**'
7+
workflow_dispatch:
8+
9+
jobs:
10+
update-readme:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v2
16+
17+
- name: Set up Python
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.x'
21+
22+
- name: Install requirements
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install pillow
26+
27+
- name: Generate icons grid and update README
28+
run: python generate_icons_grid.py
29+
30+
- name: Commit and push changes
31+
run: |
32+
git config --global user.name 'github-actions[bot]'
33+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
34+
git add README.md
35+
git commit -m 'Update README with icons grid'
36+
git push
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

ICO/audacity.ico

22.2 KB
Binary file not shown.

ICO/civitai.ico

19.9 KB
Binary file not shown.

ICO/cobalt.tools.ico

6.77 KB
Binary file not shown.

ICO/crunchyroll.ico

9.3 KB
Binary file not shown.

ICO/davinci.ico

28 KB
Binary file not shown.

ICO/dragon-ball.ico

6.77 KB
Binary file not shown.

0 commit comments

Comments
 (0)