Skip to content

Commit

Permalink
Merge pull request #87 from Iconscout/release-2.1.11
Browse files Browse the repository at this point in the history
release: 2.1.11
  • Loading branch information
tarunmangukiya authored Jul 21, 2020
2 parents 64df15f + 6d7a874 commit 2e11740
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
It's easy to use Unicons on your website by just inserting following css. You can also download this repo and use the css from `css` folder.

```html
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.10/css/unicons.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.11/css/unicons.css">
```

And use the icons in your `body` as below.
Expand Down
2 changes: 1 addition & 1 deletion json/line.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iconscout/unicons",
"version": "2.1.10",
"version": "2.1.11",
"description": "Ready to use font icons for your next project",
"scripts": {
"line:build": "npm run line:download && npm run line:generate-fontello-config && npm run line:generate && npm run line:build-sprite",
Expand Down
4 changes: 2 additions & 2 deletions scripts/line/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ const url = process.env.API_DOWNLOAD_LINE
const breakOnError = true

const existingMaxIcon = maxBy(existingConfig, 'code')
let startCharCode = existingMaxIcon ? existingMaxIcon.code : 59392
let startCharCode = existingMaxIcon ? existingMaxIcon.code + 1 : 59392

if (!fs.existsSync(path.join(process.cwd(), 'json'))) {
fs.mkdirSync(path.join(process.cwd(), 'json'))
}

console.log(`Download SVGs in ${process.cwd()}. Max Char Code ${startCharCode}, Unicode ${startCharCode.toString(16)}.`)
console.log(`Download SVGs in ${process.cwd()}. Next Starting Char Code ${startCharCode}, Unicode ${startCharCode.toString(16)}.`)

axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'
axios.defaults.headers.common['Accept'] = 'application/json'
Expand Down

0 comments on commit 2e11740

Please sign in to comment.