Skip to content

Commit

Permalink
Version 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
eyza-cod2 committed Sep 22, 2024
1 parent e5ce163 commit 0923b59
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to the "gsc" extension will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)

## [0.1.10] - 2024-09-22

- Added support for "foreach"
- Added error diagnostic if a file is included by itself via #include. Now it also does not consider - functions to be duplicated.
- Added error diagnostics if file is included twice or more via #include
- Improved debugging window of parsed files to show parsed data of selected range of text
- Improved tests so a few lines of source code is printed for all files in error stack for tests
- Fixed Github Actions .yml file - manual triggering allowed and if conditions wrapped into ${{ }}


## [0.1.9] - 2024-09-21

- Fixed errors for file references on Linux systems
Expand Down
Binary file added images/vscode-foreach.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ -2,7 +2,7 @@
"name": "cod-gsc",
"displayName": "CoD GSC",
"description": "GSC language support for Call of Duty (CoD1, CoD2, CoD3, CoD4, CoD5:WaW, CoD6:MW2, COD7:BO)",
"version": "0.1.9",
"version": "0.1.10",
"publisher": "eyza",
"icon": "logo.png",
"license": "LGPL-3.0-or-later",
Expand Down
21 changes: 21 additions & 0 deletions src/Updates.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,27 @@ <h1>COD GSC Extension ${fromVersionToVersion}</h1>



<div ${VERSION_0.1.10}>
<h2>Version [0.1.10] - 2024-09-22</h2>

<h3>Added support for foreach</h3>
<p>
Foreach syntax is now correctly recognized.
</p>
<img src="../images/vscode-foreach.png">


<h3>All changes:</h3>
<p class="lines">
- Added support for "foreach"
- Added error diagnostic if a file is included by itself via #include. Now it also does not consider - functions to be duplicated.
- Added error diagnostics if file is included twice or more via #include
- Improved debugging window of parsed files to show parsed data of selected range of text
- Improved tests so a few lines of source code is printed for all files in error stack for tests
- Fixed Github Actions .yml file - manual triggering allowed and if conditions wrapped into ${{ }}
</p>
</div>

<div ${VERSION_0.1.9}>
<h2>Version [0.1.9] - 2024-09-21</h2>
<p class="lines">
Expand Down

0 comments on commit 0923b59

Please sign in to comment.