Skip to content

Commit

Permalink
Build beta pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmecano authored May 10, 2022
2 parents e22bd42 + 67855ed commit a200a66
Show file tree
Hide file tree
Showing 40 changed files with 4,007 additions and 861 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

[*.{git*,md,yaml}]
[*.md]
trim_trailing_whitespace = false
15 changes: 10 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,33 @@
* text=auto

# Declare files that will always be normalized to native line endings on checkout
.editorconfig text
*.git* text
*.js text
*.json text
*.map text
*.md text
*.yaml text
.editorconfig text
*.yml text

# Declare files that will always have CRLF line endings on checkout
*.css text eol=crlf
*.php text eol=crlf
*.twig text eol=crlf
*.scss text eol=crlf
*.twig text eol=crlf

# Denote files that are truly binary and should not be modified
*.jpg binary
*.png binary
*.eot binary
*.jpg binary
*.png binary
*.ttf binary
*.woff binary
*.woff2 binary

# Define files that are not added to archive files
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore

# Define folders that are not added to archive files
.grav/ export-ignore
.vscode export-ignore
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,3 @@

# Development data
.grav/

# Binary asset files
assets/fontawesome/
assets/inter/
assets/libertinus/
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"recommendations": [
"bmewburn.vscode-intelephense-client",
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"mblode.twig-language-2",
"redhat.vscode-yaml"
]
Expand Down
27 changes: 21 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,32 @@
{
"editor.minimap.enabled": false,
"css.format.newlineBetweenRules": true,
"css.format.newlineBetweenSelectors": true,
"css.format.spaceAroundSelectorSeparator": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": "active",
"editor.renderWhitespace": "all",
"editor.rulers": [
80
],
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"files.exclude": {
"**/*.ini": true
},
"files.trimTrailingWhitespace": true,
"git.enableCommitSigning": true,
"markdownlint.config": {
"default": true,
"line-length": false,
"MD038": false
},
"markdownlint.ignore": [
"CHANGELOG.md"
],
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
},
"files.exclude": {
"**/desktop.ini": true
},
"files.trimTrailingWhitespace": false
"files.trimTrailingWhitespace": false
}
}
62 changes: 38 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# v2.0.0-beta
## DD-MM-YYYY

1. [](#new)
* Addition of custom styles for plugins
2. [](#improved)
* Append `raw` filter on `content` statement
* Check and adjust hypothetical styles
* Revise assets embedding
* Check and adjust temporary styles
* Monitor rendering of `twig` templates
* Check and adjust deprecated styles
* Balance colors shades
* Check and adjust unused styles
* Renovate styles for anchor links
* Improve various custom `CSS` rules
* Revise metadata display
* Revamp `text-shadow` properties

# v2.0.0-alpha
## 08/09/2021
## 09-08-2021

1. [](#new)
* Embed fonts previously delivered remotely
Expand All @@ -13,7 +32,7 @@
* Redesign main stylesheet

# v1.7.0-alpha
## 07/01/2020
## 01-07-2020

1. [](#new)
* Revise social links integrations
Expand All @@ -25,7 +44,7 @@
* Fix various elements in `<head>` section

# v1.6.0-alpha
## 06/25/2020
## 25-06-2020

1. [](#new)
* Prepare preprocessor scripts removing
Expand All @@ -41,7 +60,7 @@
* Fix minor issues in initial main stylesheet

# v1.5.0-alpha
## 06/03/2020
## 03-06-2020

1. [](#new)
* Split explicitly from upstream repository
Expand All @@ -52,67 +71,62 @@
* Check operating native files

# v1.4.1-alpha
## 02/11/2020
## 11-02-2020

1. [](#improved)
1. [](#new)
* Implement assets rendering using **Deferred Block** Twig extension
2. [](#improved)
* Fixed logo link to use home URL
1. [](#bugfix)
3. [](#bugfix)
* Move deferred javascript assets

# v1.4.0
## 03/21/2019

1. [](#new)
* Set Dependency of Grav 1.5.10+ which has support for new **Deferred Block** Twig extension
* Implement assets rendering using **Deferred Block** Twig extension

# v1.3.1-alpha
## 03/05/2019
## 05-03-2019

1. [](#bugfix)
* Escaping `#` in `jQuery` selection for click event

# v1.3.0
## 07/14/2016
## 14-07-2016

1. [](#improved)
* Remove unneeded streams from Theme YAML
1. [](#bugfix)
2. [](#bugfix)
* Fix setting the page language in the html tag
* Fix pagination

# v1.2.0
## 01/06/2016
## 07-01-2016

1. [](#improved)
* Dropped an extraneous debug statement
1. [](#bugfix)
2. [](#bugfix)
* Fixed RSS link
* Fix tag links on a root domain site

# v1.1.0
## 08/25/2015
## 25-08-2015

1. [](#improved)
* Added blueprints for Grav Admin plugin

# v1.0.3
## 03/01/2015
## 01-03-2015

1. [](#improved)
* Switched to Grav's built-in `jQuery` assets

# v1.0.2
## 02/19/2015
## 20-02-2015

2. [](#improved)
1. [](#improved)
* Updated README
* Fixed feed URL on homepage
* Added demo link
* Implemented new `param_sep` variable from Grav 0.9.18

# v1.0.1
## 02/10/2015
## 07-12-2015

1. [](#new)
* ChangeLog started
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014-2020 Grav
Copyright (c) 2020-2021 P. Mergey
Copyright (c) 2020-2022 P. Mergey

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit a200a66

Please sign in to comment.