Skip to content

Commit

Permalink
Release 10 new icons and 4 updated icons and 59 removed icons (v14.0.0)
Browse files Browse the repository at this point in the history
## 10 new icons

- AFDIAN (#12315) (@Zuoqiu-Yingyi)
- CSS (#12134) (@LitoMore)
- D3 (#12368) (@service-paradis)
- Deutsche Telekom (#11912) (@DerBraky)
- Nuxt (#12369) (@service-paradis)
- Obtainium (#11451) (@CodeShakingSheep)
- QQ (#12218) (@LitoMore)
- start.gg (#12115) (@rushikeshtagadkar)
- Tuta (#12081) (@DerBraky)
- YouHodler (#11171) (@CodeShakingSheep)

## 4 updated icons

- .NET (#12372) (@adamrusted)
- Coca-Cola (#12358) (@rushikeshtagadkar)
- Creative Commons (#12392) (@adamrusted)
- Private Internet Access (#12370) (@service-paradis)

## 59 removed icons

- Adobe (#10018) (@adamrusted)
- Adobe Acrobat Reader (#10018) (@adamrusted)
- Adobe After Effects (#10018) (@adamrusted)
- Adobe Audition (#10018) (@adamrusted)
- Adobe Creative Cloud (#10018) (@adamrusted)
- Adobe Dreamweaver (#10018) (@adamrusted)
- Adobe Fonts (#10018) (@adamrusted)
- Adobe Illustrator (#10018) (@adamrusted)
- Adobe InDesign (#10018) (@adamrusted)
- Adobe Lightroom (#10018) (@adamrusted)
- Adobe Lightroom Classic (#10018) (@adamrusted)
- Adobe Photoshop (#10018) (@adamrusted)
- Adobe Premiere Pro (#10018) (@adamrusted)
- Adobe XD (#10018) (@adamrusted)
- ASKfm (#12401) (@service-paradis)
- Caffeine (#12210) (@mondeja)
- CKEditor 4 (#11555) (@uncenter)
- Cliqz (#11411) (@dipenmagdani)
- Coil (#12209) (@mondeja)
- D3.js (#12368) (@service-paradis)
- del.icio.us (#12211) (@mondeja)
- El Jueves (#12237) (@mondeja)
- Ello (#12199) (@mondeja)
- FeatHub (#11634) (@CodeShakingSheep)
- Fluxus (#12206) (@mondeja)
- Foursquare City Guide (#12331) (@LitoMore)
- Funimation (#12200) (@mondeja)
- Game & Watch (#12379) (@LitoMore)
- Géant (#12231) (@mondeja)
- Katacoda (#12229) (@mondeja)
- LinkedIn (#11380) (@vanshaj-sharma)
- Magento (#10018) (@adamrusted)
- Marketo (#12230) (@mondeja)
- Microgenetics (#12207) (@mondeja)
- Nintendo (#12379) (@LitoMore)
- Nintendo 3DS (#12379) (@LitoMore)
- Nintendo DS (#12379) (@LitoMore)
- Nintendo GameCube (#12379) (@LitoMore)
- Nintendo Switch (#12379) (@LitoMore)
- Nuxt.js (#12369) (@service-paradis)
- Oracle (#11843) (@adamrusted)
- Pokémon (#12379) (@LitoMore)
- RadioPublic (#12208) (@mondeja)
- Realm (#12201) (@mondeja)
- Revue (#12204) (@mondeja)
- Skyrock (#12198) (@mondeja)
- smash.gg (#12115) (@rushikeshtagadkar)
- Spinrilla (#12205) (@mondeja)
- StackPath (#12227) (@mondeja)
- Stitcher (#11693) (@oyezaheer)
- Studyverse (#12164) (@LitoMore)
- T-Mobile (#11912) (@DerBraky)
- Tableau (#12212) (@mondeja)
- Tencent QQ (#12218) (@LitoMore)
- Tutanota (#12081) (@DerBraky)
- Uptobox (#12197) (@mondeja)
- Wii (#12379) (@LitoMore)
- Wii U (#12379) (@LitoMore)
- Zerply (#11388) (@SnehalSrivastava27)

## SDK breaking changes

### `_data/simple-icons.json` file structure updated

The `icons` property has been dropped. Now the JSON content is the array of icons.

```diff
import {getIconsData} from 'simple-icons/sdk';

const iconsData = await getIconsData();
-const icons = iconsData.icons;
+const icons = iconsData;
```

### `getIconDataPath()` has been renamed to `getIconsDataPath()`

We renamed this function to make our function names consistent.

```diff
-import {getIconDataPath} from 'simple-icons/sdk';
+import {getIconsDataPath} from 'simple-icons/sdk';
```
  • Loading branch information
simple-icons[bot] authored Dec 22, 2024
2 parents b9a1833 + 5ab8a27 commit 6dcfdc2
Show file tree
Hide file tree
Showing 113 changed files with 20,940 additions and 21,219 deletions.
9 changes: 5 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@ root=true
[*]
charset=utf-8
indent_size=2
indent_style=space
indent_style=tab
insert_final_newline=true
trim_trailing_whitespace=true

[*.md]
indent_style = space
indent_size=unset

[*.svg]
insert_final_newline=false

[*.yml]
indent_style=space

[.github/**/*.md]
trim_trailing_whitespace=false # Templates with trailing whitespace are more usable

[_data/simple-icons.json]
indent_size=4
36 changes: 18 additions & 18 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
repositories: ['simple-icons/simple-icons'],
extends: [
'config:recommended',
repositories: ['simple-icons/simple-icons'],
extends: [
'config:recommended',

// Make sure we get a single PR combining all updates
'group:all',
],
// Make sure we get a single PR combining all updates
'group:all',
],

// Disable Dependency Dashboard
dependencyDashboard: false,
// Disable Dependency Dashboard
dependencyDashboard: false,

// Use our labelling system
labels: ['dependencies'],
// Use our labelling system
labels: ['dependencies'],

// We generally always want the major version
separateMajorMinor: false,
// We generally always want the major version
separateMajorMinor: false,

// We manually update digest dependencies (eg. hashes in GitHub Actions)
digest: {enabled: false},
// We manually update digest dependencies (eg. hashes in GitHub Actions)
digest: {enabled: false},

// PR title and commit message when updating dependencies
commitMessage: 'Update dependencies',
// PR title and commit message when updating dependencies
commitMessage: 'Update dependencies',

// Simplify PR body when updating dependencies
prBodyTemplate: '{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}',
// Simplify PR body when updating dependencies
prBodyTemplate: '{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}',
}
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
name: NPM Package
needs: sanity-check
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -54,6 +56,7 @@ jobs:
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
provenance: true
github:
name: GitHub release
needs: sanity-check
Expand Down Expand Up @@ -96,6 +99,12 @@ jobs:
tag_name: ${{ steps.get-version.outputs.version }}
name: ${{ steps.commit.outputs.title }}
body: ${{ steps.commit.outputs.body }}
- name: Send release to Discord
run: node scripts/release/discord-release-message.js "${{ steps.get-version.outputs.version }}"
env:
DISCORD_RELEASES_ROLE: ${{ secrets.DISCORD_RELEASES_ROLE }}
DISCORD_RELEASES_WEBHOOK_URL: ${{ secrets.DISCORD_RELEASES_WEBHOOK_URL }}
continue-on-error: true
font:
name: Trigger simple-icons-font release
needs: npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Is normal pull request
# check if is not a release pull request
id: pr
run: echo "is_normal=$(echo ${{ github.base_ref != 'master' && github.event_name == 'pull_request' }})" >> $GITHUB_OUTPUT
run: echo "is_normal=$(echo ${{ github.base_ref != 'master' && github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'meta') == 'false' }})" >> $GITHUB_OUTPUT
- name: Detect changed files
uses: dorny/paths-filter@v3
id: changes
Expand Down
Loading

0 comments on commit 6dcfdc2

Please sign in to comment.