Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoBertotti committed Sep 15, 2023
1 parent a52ce34 commit ebdff38
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules
.idea
package-lock.json
src
example
18 changes: 11 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
{
"name": "askless",
"version": "2.0.1",
"version": "2.0.2",
"description": "A coherent Node.js Backend for Flutter. Askless is a framework to build websocket servers for Flutter Apps that lets you update your widgets in realtime by streaming data changes with WebSockets. Create your Flutter App without Firebase, with MySQL, PostgreSQL, or any database you want, handle WebSocket authentication, and quickly add audio and video calls with WebRTC!",
"keywords": [
"flutter",
"backend for flutter",
"flutter server",
"flutter with websockets",
"flutter with postgresql",
"flutter with mysql",
"flutter without firebase",
"flutter websocket",
"flutter websocket authentication",
"flutter webrtc",
"flutter video call",
"flutter audio call",
"flutter live video",
"flutter live audio",
"stream",
"realtime",
"framework",
"api",
"server",
"backend",
"widget",
"flutter webrtc",
"flutter video call",
"flutter audio call"
"widget"
],
"main": "dist/askless/index.js",
"types": "dist/askless/index.d.ts",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"bundle-dev": "rimraf dist && tsc --outDir dist/temp && webpack --env development=true && rimraf dist/temp",
"bundle-prod": "rimraf dist && tsc --outDir dist/temp && webpack --env production=true && rimraf dist/temp",
Expand Down
2 changes: 1 addition & 1 deletion src/environment.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const environment = {
server: {
name: "2.0.1", //TODO onupdate: change package.json as well
name: "2.0.2", //TODO onupdate: change package.json as well
code: 4,
clientVersionCodeSupported: {
flutter: {
Expand Down

0 comments on commit ebdff38

Please sign in to comment.