Skip to content

Commit

Permalink
Merge pull request #99 from stneveadomi/release/1.2.1
Browse files Browse the repository at this point in the history
Release: 1.2.1
  • Loading branch information
stneveadomi authored Aug 8, 2024
2 parents af3f672 + 87feb60 commit 6ce6c22
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 9 deletions.
9 changes: 9 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ vsc-extension-quickstart.md
**/*.ts
**/*.gif
.github/**
.prettierignore
.vscode-test.mjs
eslint.config.mjs
.husky/**/*
!ext-src/release-notes-ui/release-notes.css

webview-ui/grepc-webview/.angular/**
webview-ui/grepc-webview/.vscode/**
Expand All @@ -22,5 +27,9 @@ webview-ui/grepc-webview/coverage/**
webview-ui/grepc-webview/.editorconfig
webview-ui/grepc-webview/*.json
webview-ui/grepc-webview/*.md
webview-ui/grepc-webview/dist/grepc-webview/.gitignore
webview-ui/grepc-webview/dist/grepc-webview/.prettierignore
webview-ui/grepc-webview/dist/grepc-webview/.prettierrc
webview-ui/grepc-webview/dist/grepc-webview/eslint.config.js
webview-ui/grepc-webview/dist/grepc-webview/browser/index.html
webview-ui/grepc-webview/dist/grepc-webview/browser/favicon.ico
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.1]

### Changed

- Address issue where release notes page was not loading CSS.

## [1.2.0]

### Added
Expand Down
6 changes: 3 additions & 3 deletions ext-src/viewProviders/releaseNotesViewProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class ReleaseNotesWebview {
<base href="${this.context.extensionUri}">
<meta charset="UTF-8" />
<title>GrepcWebview</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src ${webview.cspSource}; style-src ${webview.cspSource} 'nonce-${nonce}'; img-src ${webview.cspSource} https: data:;">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src ${webview.cspSource}; style-src ${webview.cspSource} 'nonce-${nonce}'; style-src-attr 'unsafe-inline'; img-src ${webview.cspSource} https: data:;">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="${stylesUri}" rel="stylesheet" >
</head>
Expand All @@ -84,10 +84,10 @@ export class ReleaseNotesWebview {
<div>
<p dir="auto">
<a href="https://github.com/stneveadomi/grepc/">
<img src="https://camo.githubusercontent.com/e51b657236415672754f02dfef0bc6873e979346fa0107f9c4219fe1589a5c6c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c61742d737175617265" alt="GitHub license" data-canonical-src="https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square" style="max-width: 100%;">
<img nonce="${nonce}" src="https://camo.githubusercontent.com/e51b657236415672754f02dfef0bc6873e979346fa0107f9c4219fe1589a5c6c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c61742d737175617265" alt="GitHub license" data-canonical-src="https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square" style="max-width: 100%;">
</a>
<a href="https://github.com/stneveadomi/grepc/releases">
<img alt="GitHub package.json version" src="https://img.shields.io/github/package-json/v/stneveadomi/grepc?color=limegreen">
<img alt="GitHub package.json version" nonce="${nonce}" src="https://img.shields.io/github/package-json/v/stneveadomi/grepc?color=limegreen">
</a>
<a href="https://github.com/stneveadomi/grepc/releases">
<img alt="GitHub Release Date" src="https://img.shields.io/github/release-date/stneveadomi/grepc">
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "grepc: Regex Highlighting",
"description": "An approachable regular expression highlighter with advanced customization for VS Code.",
"icon": "media/GREPC_enhanced-standard-circle-128.png",
"version": "1.2.0",
"version": "1.2.1",
"engines": {
"vscode": "^1.84.0"
},
Expand Down
4 changes: 2 additions & 2 deletions webview-ui/grepc-webview/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webview-ui/grepc-webview/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grepc-webview",
"type": "commonjs",
"version": "1.2.0",
"version": "1.2.1",
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
Expand Down

0 comments on commit 6ce6c22

Please sign in to comment.