Skip to content

Commit

Permalink
Merge pull request #7 from mishamyrt/develop
Browse files Browse the repository at this point in the history
Release 1.5.0
  • Loading branch information
mishamyrt authored Oct 13, 2019
2 parents 75e25dd + 28aefa4 commit c501a6b
Show file tree
Hide file tree
Showing 37 changed files with 114 additions and 345 deletions.
5 changes: 0 additions & 5 deletions .censor.json

This file was deleted.

2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = true
30 changes: 0 additions & 30 deletions .gitlab-ci.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .gitlab/ci/build.gitlab-ci.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .gitlab/ci/deploy.gitlab-ci.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .gitlab/ci/dockerize.gitlab-ci.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .gitlab/ci/global.gitlab-ci.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .gitlab/ci/metrics.gitlab-ci.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .gitlab/ci/pages.gitlab-ci.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .gitlab/ci/qa.gitlab-ci.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .gitlab/ci/review.gitlab-ci.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .gitlab/merge_request_templates/Bugfix.md

This file was deleted.

11 changes: 0 additions & 11 deletions .gitlab/merge_request_templates/Feature.md

This file was deleted.

20 changes: 0 additions & 20 deletions .gitlab/merge_request_templates/release.md

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog][],
and this project adheres to [Semantic Versioning][].

## [1.5.0][] — 2019-10-13

### Added

- GZip precompress.
- Standard codestyle config.
- Focus styles for links.

### Changed

- Service worker cache logic. It should be more flexible.

### Fixed

- Removed `.html` from local links.
- Neochemicals link in russian.
- Alisasing at Firefox.
- Vertical rhythm.

### Removed

- GitLab link.

## [1.4.1][] — 2019-10-02

### Fixed
Expand Down Expand Up @@ -107,3 +130,7 @@ and this project adheres to [Semantic Versioning][].
[1.3.1]: https://github.com/mishamyrt/myrt.co/releases/tag/v1.3.1

[1.4.0]: https://github.com/mishamyrt/myrt.co/releases/tag/v1.4.0

[1.4.1]: https://github.com/mishamyrt/myrt.co/releases/tag/v1.4.1

[1.5.0]: https://github.com/mishamyrt/myrt.co/releases/tag/v1.5.0
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,3 @@ I use [SemVer](http://semver.org/) for versioning. For the versions available, s
## License

This project is licensed under the WTFPL License - see the [LICENSE](LICENSE) file for details

7 changes: 6 additions & 1 deletion docker/nginx.conf.dist
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ http {
access_log off;
error_log /dev/null crit;
server_tokens off;
add_header Cache-Control "no-transform";

open_file_cache max=200000 inactive=20s;
open_file_cache_valid 30s;
Expand Down Expand Up @@ -44,7 +45,7 @@ http {

gzip on;
gzip_disable "msie6";

gzip_static on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
Expand Down Expand Up @@ -81,5 +82,9 @@ http {
location ~* \.(?:png|webp|svg|jpe?g|woff?2|css|webmanifest|js) {
expires 365d;
}

location ~* \.(?:js) {
expires 2d;
}
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
"myrt",
"playbook",
"postCSS",
"Keybase",
"preact",
"prestashop",
"RDP",
Expand Down
4 changes: 3 additions & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ const {
const {
processHtml,
processCss,
processNginx
processNginx,
processServiceWorker
} = require('./processors')

const langs = ['ru', 'en']
Expand Down Expand Up @@ -47,6 +48,7 @@ bundler.on('bundled', async () => {
.then(() => processCss(files.css))
.then(() => processHtml(files.html))
.then(() => processNginx())
.then(() => processServiceWorker())
})

bundler.bundle()
Loading

0 comments on commit c501a6b

Please sign in to comment.