Skip to content

Commit

Permalink
Preparing for version v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Siebeneicker committed Mar 8, 2018
1 parent 903190a commit f7a23b6
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 23 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
# Changelog

## Version: 0.0.2
**Date of publishing:** 08.03.2018
> This release improves on the basic syntax highlighting for `.floyd` **Floyd** source code files.
### Features
- Adds syntax highlighting for operators, item accesses, function calls, preprocessor directives and class declarations
- Adds a changelog
- Improves the readme
- Adds basic unit tests

### Changes
- Keywords are split up into built-in function names and flow keywords etc.

### BugFixes
None


## Version: 0.0.1
**Date of publishing:** 21.01.2018
> Initial release of the VS Code Floyd Language Support. It adds basic syntax highlighting to `.floyd` **Floyd** source code files.
### Features
- Adds basic syntax highlighting for `.floyd` files (includes comments, strings, integers and keywords)
- Adds basic syntax highlighting for `.floyd` **Floyd** source code files (includes comments, strings, integers and keywords)

### Changes
None
Expand Down
8 changes: 0 additions & 8 deletions ExampleSyntaxHighlighting.floyd

This file was deleted.

25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# vscode-floyd-language-support
> This is an extension for the code editor [**VS Code**](https://code.visualstudio.com/) that adds language support for the programming language [**Floyd**](http://oliver-berse.de/). **Floyd** is used to write classical Text Adventures (in German).
> This is an extension for the code editor [VS Code](https://code.visualstudio.com/) that adds language support for the programming language [Floyd](http://oliver-berse.de/). Floyd is used to write classical Text Adventures (in German).
> You can find out about the current development by visiting the [extension repository on GitHub](https://github.com/PythooonUser/vscode-floyd-language-support/).
## Features

The Floyd language extension currently only adds basic syntax highlighting. For the future many more features are planned, like more complex syntax highlighting, code intellisense, code completion, help for built-in functions etc.
The **Floyd** language extension currently adds basic syntax highlighting. For the future many more features are planned, like more complex syntax highlighting, code intellisense, code completion, help for built-in functions, a language server etc.

### Syntax Highlighting
Very basic syntax highlighting is applied to `.floyd` Floyd source code files. It introduces colors for strings, numbers, line and block comments and all available keywords.
Basic syntax highlighting is applied to `.floyd` **Floyd** source code files. It introduces colors for comments, literals, all available keywords, class and function declarations etc.

> Example from Nebelmond (Oliver Berse, 2002-2003) using the Dark+ color theme:
![Syntax Highlighting Example](https://raw.githubusercontent.com/PythooonUser/vscode-floyd-language-support/master/images/SyntaxHighlightingExample.png)
> ![Syntax Highlighting Example](https://raw.githubusercontent.com/PythooonUser/vscode-floyd-language-support/master/images/SyntaxHighlightingExample_02.png)
## Known Issues

No known issues.

*If you find a bug, have a question or have a feature request, please feel free to create an issue. I try to answer your issue as fast as possible. Please note, however, that my support for this extension is limited, because I build it in my free time and therefore development goes slowly.*

## Release Notes
> For further details please refer to the [CHANGELOG](https://github.com/PythooonUser/vscode-floyd-language-support/blob/master/CHANGELOG.md).
### 0.0.1 (180121)
### 0.0.2 (180308)
Adds improvements for the syntax highlighting of `.floyd` **Floyd** source code files.

Initial release of the VS Code Floyd Language Support. It adds basic syntax highlighting to `.floyd` Floyd source code files.
### 0.0.1 (180121)
Initial release of the **VS Code** **Floyd** Language Support. It adds basic syntax highlighting to `.floyd` **Floyd** source code files.

## License

MIT

See the [license document](https://github.com/PythooonUser/vscode-floyd-language-support/blob/master/LICENSE) for the full text.
MIT. See the [license document](https://github.com/PythooonUser/vscode-floyd-language-support/blob/master/LICENSE) for the full text.
Binary file added images/SyntaxHighlightingExample_02.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.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "vscode-floyd-language-support",
"displayName": "vscode-floyd-language-support",
"description": "Floyd language support for VSCode.",
"version": "0.0.1",
"version": "0.0.2",
"publisher": "pythooonuser",
"engines": {
"vscode": "^1.19.0"
"vscode": "^1.21.0"
},
"categories": [
"Languages"
Expand Down

0 comments on commit f7a23b6

Please sign in to comment.