Skip to content

Commit

Permalink
Release: V0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yahu1031 committed Feb 16, 2023
1 parent 2f0f8b6 commit 156fb6a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the "Serverpod" extension will be documented in this file.

## 🚀 Pre-Release - 0.2.2

- Updated Code snippets.

## 🚀 Pre-Release - 0.2.0

- Added debuugging support for serverpod server.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This extension provides the following features:

- Creating a serverpod project.
- Generating and watching client code.
- Running and Stopping server.
- Running and Stopping server including debugging.
- Code snippets for serverpod server classes and protocol yaml files.

---
Expand Down
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": "serverpod",
"displayName": "Serverpod",
"description": "Serverpod extension makes your development easy on serverpod apps.",
"version": "0.2.1",
"version": "0.2.2",
"publisher": "minnu1031",
"license": "BSD-3-Clause",
"repository": {
Expand Down
10 changes: 8 additions & 2 deletions snippets/dart.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"Serverpod endpoint class": {
"prefix": "endpnt",
"body": [
"class $1 extends Endpoint{",
"import 'package:serverpod/serverpod.dart';",
"",
"class $1Endpoint extends Endpoint{",
"",
" @override",
" Future<void> streamOpened(StreamingSession session) async {",
Expand All @@ -26,7 +28,9 @@
"Serverpod FutureCall class": {
"prefix": "ftrcall",
"body": [
"class $1 extends FutureCall {",
"import 'package:serverpod/serverpod.dart';",
"",
"class $1 extends FutureCall<SerializableEntity> {",
" @override",
" Future<void> invoke(Session session, SerializableEntity? object) async {",
" // TODO: Do something interesting in the future here.",
Expand All @@ -49,6 +53,8 @@
"Serverpod Widget Route": {
"prefix": "wdjroute",
"body": [
"import 'package:serverpod/serverpod.dart';",
"",
"class $1 extends WidgetRoute {",
"",
" @override",
Expand Down

0 comments on commit 156fb6a

Please sign in to comment.