Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rastikerdar committed Aug 18, 2016
0 parents commit dddc5c1
Show file tree
Hide file tree
Showing 11 changed files with 19,477 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*~

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
تغییرات فونت وزیر
=================

در اینجا شما فهرستی از تغییرات بین هر نسخه‌ی انتشار از فونت وزیرکد را مشاهده می‌کنید.


نسخه ۱.۰.۰
----------
۲۸ مرداد ۱۳۹۵

- اولین نسخه
51 changes: 51 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
Changes by Saber Rastikerdar are in public domain.
Glyphs and data from Inconsolata font are licensed under the SIL Open Font License.

Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.

Bitstream Vera Fonts Copyright
------------------------------

Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
a trademark of Bitstream, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of the fonts accompanying this license ("Fonts") and associated
documentation files (the "Font Software"), to reproduce and distribute the
Font Software, including without limitation the rights to use, copy, merge,
publish, distribute, and/or sell copies of the Font Software, and to permit
persons to whom the Font Software is furnished to do so, subject to the
following conditions:

The above copyright and trademark notices and this permission notice shall
be included in all copies of one or more of the Font Software typefaces.

The Font Software may be modified, altered, or added to, and in particular
the designs of glyphs or characters in the Fonts may be modified and
additional glyphs or characters may be added to the Fonts, only if the fonts
are renamed to names not containing either the words "Bitstream" or the word
"Vera".

This License becomes null and void to the extent applicable to Fonts or Font
Software that has been modified and is distributed under the "Bitstream
Vera" names.

The Font Software may be sold as part of a larger software package but no
copy of one or more of the Font Software typefaces may be sold by itself.

THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
FONT SOFTWARE.

Except as contained in this notice, the names of Gnome, the Gnome
Foundation, and Bitstream Inc., shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Font Software
without prior written authorization from the Gnome Foundation or Bitstream
Inc., respectively. For further information, contact: fonts at gnome dot
org.
63 changes: 63 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Vazir-Code-Font
A Persian (Farsi) Monospaced Font

<p dir="rtl">
فونت فارسی وزیرکد از نوع Monospaced یا تک فاصله ترکیب شده با فونت Inconsolata
<br />

<a href="http://rastikerdar.github.io/vazir-code-font/">نمایش فونت</a> <br />
<a href="https://github.com/rastikerdar/vazir-code-font/releases">صفحه دریافت (دانلود) بسته فونت شامل فایل های ttf,woff,eot</a> <br />

با تشکر از برنامه <a href="https://fontforge.github.io">FontForge</a><br />

بر مبنای <a href="http://rastikerdar.github.io/vazir-font/">فونت وزیر</a>

</p>


<h1 dir="rtl">
طریقه استفاده در صفحات وب:
</h1>

<p dir="rtl">
کد زیر را در قسمت style یا فایل css وارد نمایید:
</p>


```css
@font-face {
font-family: Vazir Code;
src: url('Vazir-Code.eot');
src: url('Vazir-Code.eot?#iefix') format('embedded-opentype'),
url('Vazir-Code.woff') format('woff'),
url('Vazir-Code.ttf') format('truetype');
font-weight: normal;
}

pre, code {
font-family: 'Vazir Code', monospaced;
}
```

## Install

Grab the [latest release](https://github.com/rastikerdar/vazir-code-font/releases/latest) file.

Or you can get it on bower:

```
bower install vazir-code-font --save
```

Or [RawGit](https://rawgit.com) CDN:

```html
<link href="https://cdn.rawgit.com/rastikerdar/vazir-code-font/v[X.Y.Z]/dist/font-face.css" rel="stylesheet" type="text/css" />
```

Replace [X.Y.Z] with the latest version (e.g. 1.0.0) and integrate the font into your CSS:

```
font-family: 'Vazir Code', monospaced;
```

22 changes: 22 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "vazir-code-font",
"version": "1.0.0",
"main": [
"dist/*"
],
"homepage": "http://rastikerdar.github.io/vazir-code-font/",
"authors": [
{ "name": "Saber Rastikerdar", "homepage": "http://rastikerdar.blog.ir" }
],
"license": ["Public Domain"],
"ignore": [
"*.md",
"*.json",
"source"
],
"keywords": [
"font",
"persian",
"monospaced"
]
}
Binary file added dist/Vazir-Code.eot
Binary file not shown.
Binary file added dist/Vazir-Code.ttf
Binary file not shown.
Binary file added dist/Vazir-Code.woff
Binary file not shown.
8 changes: 8 additions & 0 deletions dist/font-face.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@font-face {
font-family: Vazir Code;
src: url('Vazir-Code.eot');
src: url('Vazir-Code.eot?#iefix') format('embedded-opentype'),
url('Vazir-Code.woff') format('woff'),
url('Vazir-Code.ttf') format('truetype');
font-weight: normal;
}
Loading

0 comments on commit dddc5c1

Please sign in to comment.