Skip to content

Commit

Permalink
fges;aojeopfjao wfj9ow34ej9rv w3amuvtrむ3w2む3w2¥
Browse files Browse the repository at this point in the history
  • Loading branch information
7rs committed Jan 27, 2024
2 parents 2bcaa30 + a8100b6 commit 0e00ba1
Show file tree
Hide file tree
Showing 56 changed files with 2,643 additions and 890 deletions.
6 changes: 3 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ end_of_line = lf
insert_final_newline = true
indent_style = space

[*.md, *.mdx]
[{*.md, *.mdx}]
indent_size = 2
trim_trailing_whitespace = false

[*.js, *.ts, *.cjs, *.mjs, *.html, *.css, *.astro, *.styl, *.svelte]
[{*.js, *.ts, *.cjs, *.mjs, *.html, *.css, *.astro, *.styl, *.svelte}]
indent_size = 2

[*.json, prettierrc]
[{*.json, .prettierrc}]
indent_size = 4
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bugs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ body:
label: "About bugs."
description: "Writes informations."
validations:
required: true
required: false
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ body:
label: "About documentations."
description: "Writes informations."
validations:
required: true
required: false
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ body:
label: "About features."
description: "Writes informations."
validations:
required: true
required: false
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/improvements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ body:
label: "About inprovements."
description: "Writes informations."
validations:
required: true
required: false
12 changes: 6 additions & 6 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"MD025": false,
"MD041": false,
"MD033": false,
"MD013": {
"line_length": 120
}
"MD025": false,
"MD041": false,
"MD033": false,
"MD013": {
"line_length": 120
}
}
20 changes: 1 addition & 19 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,11 @@
"options.editorconfig": true,
"overrides": [
{
"files": ".prettierrc, *.json",
"files": [".prettierrc", "*.json"],
"options": {
"parser": "json",
"tabWidth": 4
}
},
{
"files": "*.astro",
"options": {
"parser": "astro"
}
},
{
"files": "*.styl",
"options": {
"parser": "stylus"
}
},
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
28 changes: 17 additions & 11 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"recommendations": [
"astro-build.astro-vscode",
"editorconfig.editorconfig",
"sysoev.language-stylus",
"esbenp.prettier-vscode",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"svelte.svelte-vscode",
"dbaeumer.vscode-eslint",
"stylelint.vscode-stylelint"
]
"recommendations": [
"astro-build.astro-vscode",
"editorconfig.editorconfig",
"sysoev.language-stylus",
"esbenp.prettier-vscode",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"svelte.svelte-vscode",
"dbaeumer.vscode-eslint",
"stylelint.vscode-stylelint",
"antfu.iconify",
"usernamehw.errorlens",
"pkief.material-icon-theme",
"unifiedjs.vscode-mdx",
"yoavbls.pretty-ts-errors",
"redhat.vscode-yaml"
]
}
75 changes: 69 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,84 @@
# CHANGELOG

## [0.1.0] 2024-01-08
## [0.3.0] 2024-01-14

## Added

- Added background image.

## [0.2.2] 2024-01-13

### Changed

- Upgrade astro to v4.
- Update layout and styles.
- Optimization loading resources.

## [0.2.1] 2024-01-13

### Added

- Compression images.
- Optimized SEO.

### Changed

- Changed profile layout.
- Replaced `<img>` tag to `<Picture>` component.

## [0.2.0] 2024-01-12

### Added

- Added astro-icon.

### Changed

- Changed the license to CC0 1.0 from WTFPL.

### Fixed

- Fixed broken layout on mobile.
- Fixed the underlines appeared above text in `<a>` tag.
- Fixed sitemap.

## [0.1.0] 2024-01-08

### Added

- Added Svelte.
- Article list
- Added article list to main page.
- Supports English.

### Changed

- Changed design to mobile first.
- Upgraded Astro to v4.
- Updated layout and styles.
- Updated Shiki syntax hightlight theme.

### Fixed

## [0.0.0] 2023-07-13
- Fixed the space appeared in footer.

## [0.0.1] 2023-07-13

### Added

- Added Astro.
- Added Stylus.
- Support responsive.
- Added Markdown/MDX.
- Supports responsive.
- Supports dark mode.
- Compression images and icons.

### Changed

- Upgraded Astro to v3.

### Removed

- Removed TailwindCSS.
- Removed Lit.

### Fixed

- Added vendor prefixes.
Loading

0 comments on commit 0e00ba1

Please sign in to comment.