Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Mar 28, 2023
2 parents 3d7b514 + d948f87 commit 31170fd
Show file tree
Hide file tree
Showing 39 changed files with 96,872 additions and 46,241 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Bootstrap
run: sudo make bootstrap
run: |
sudo apt install python3-setuptools ttfautohint build-essential libffi-dev libgit2-dev -y
make configure
- name: Build Lilex
run: make
run: make build

- name: Upload results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Lilex
path: build/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/master_ufo/
/Lilex (Autosaved).glyphs
/generator/__pycache__
.ruff_cache
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Name or Organization <email address>

Bold Monday (https://www.boldmonday.com/support/contact/)
Mikhael Khrustik ([email protected]) github.com/mishamyrt
Mikhael Khrustik ([email protected]) github.com/mishamyrt
47 changes: 38 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,36 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.200]Unreleased
## [2.000]March 28, 2023

Added feature generator.
## Removed

* Ugly `fl` and `fi`

## Added

* Generative `##` and `__` ligatures. Sequences of these characters can now be of any length

## Fixed

* `_` alignment

## [2.000-b1] — March 27, 2023

Based on IBM Plex Mono v6.0.0.

Font rebuilt from scratch, ligatures redrawn. Improved alignment of many characters.

## Added

* Thin weight (Now the weight range is from 100 to 700)
* Boxes
* `/**`

## Removed (At least for now)

* `www`
* `~=`

## [1.100] — November 21, 2020

Expand All @@ -19,7 +46,7 @@ Migrated to Glyphs.

Removed Retina, added Medium.

## [1.000 rc1] — October A21, 2019
## [1.000-rc1] — October A21, 2019

Rebuilt from bash scripts to Makefile.

Expand All @@ -29,15 +56,15 @@ Fixed arrows hinting.

Added colon vertical alignment in time sequences `10:22`.

## [1.000 beta2] — October 16, 2019
## [1.000-b2] — October 16, 2019

Refused from using the patching method to create my own source code based on IBM Plex Mono.

Made a variable TTF.

Added `&&` `==` `===` `!=` `!==` `~~` `||` `**` `***` `//` `=>` `~~>` `>=` `<=` `*>` `/*` `*/` `.?` `~=` `--` `++` `..` `...` `::` `#!` `</` `/>` `www` `__` `/=` `.=` `:=` `->` `<-` `</>`.

## [1.000 beta1] — October 9, 2019
## [1.000-b1] — October 9, 2019

Initial release:

Expand All @@ -46,14 +73,16 @@ Builded using monkey patching method.
Fira Code version: 2.000
IBM Plex Mono version: 3.000

[1.000 beta1]: https://github.com/mishamyrt/Lilex/releases/tag/1.000-beta
[1.000-b1]: https://github.com/mishamyrt/Lilex/releases/tag/1.000-beta

[1.000 beta2]: https://github.com/mishamyrt/Lilex/releases/tag/1.000-beta2
[1.000-b2]: https://github.com/mishamyrt/Lilex/releases/tag/1.000-beta2

[1.000 rc1]: https://github.com/mishamyrt/Lilex/releases/tag/1.000-rc1
[1.000-rc1]: https://github.com/mishamyrt/Lilex/releases/tag/1.000-rc1

[1.000]: https://github.com/mishamyrt/Lilex/releases/tag/1.000

[1.100]: https://github.com/mishamyrt/Lilex/releases/tag/1.100

[1.200]: https://github.com/mishamyrt/Lilex/compare/1.100...master
[2.000-b1]: https://github.com/mishamyrt/Lilex/releases/tag/2.000-b1

[2.000]: https://github.com/mishamyrt/Lilex/releases/tag/2.000
Loading

0 comments on commit 31170fd

Please sign in to comment.