From dbd182f8a8124bfba482b4f85e3ff66243abadab Mon Sep 17 00:00:00 2001 From: Nuno Boavida <45330362+nmboavida@users.noreply.github.com> Date: Fri, 6 Oct 2023 19:55:40 +0100 Subject: [PATCH] Deployed to VS Marketplace --- client/CHANGELOG.md | 2 +- client/DEVELOP.md | 71 ++----------------------------------- client/LICENSE.md | 25 ++++++++++++- client/package.json | 3 +- crates/neatcoder/Cargo.toml | 2 +- 5 files changed, 31 insertions(+), 72 deletions(-) diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index cd27ae7..ba2f12f 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to the "neatcoder" extension will be documented in this file Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -## [0.1.1-alpha] - 05/10/2023 +## [0.1.0] - 05/10/2023 ### Changed - `.neat` folder is now lazily created diff --git a/client/DEVELOP.md b/client/DEVELOP.md index 89fec27..75a83ab 100644 --- a/client/DEVELOP.md +++ b/client/DEVELOP.md @@ -19,73 +19,8 @@ Install the Extension Locally: In VS Code, go to the Extensions view by clicking Reload VS Code: After installing the extension, you may need to reload the window or restart VS Code to activate it. -### Run the MockServer +## Publish extension -`cd server-test/` +To login: `vsce login NeatworkAi` -// transpile -`tsc mockServer.ts` - -// run server -`node mockServer.js` - -// to kill the server if not correctly shutdown -`lsof -i :1895` - -`kill -9 ` - - -// To listen in -`sudo tcpdump -i any port 1895` - -### TEMP - -- specs (OK) -- scaffold (TBD) --> at application start send everything -- jobs (OK) --> at application start send everything -- interfaces --> at application start send everything -- codebase (TBD) --> at application start send everything.. - -To add to Package JSON: - -"menus": { - "view/title": [ - { - "command": "extension.stopJob", - "when": "view == taskPoolView", - "group": "navigation@2" - }, - { - "command": "extension.retryJob", - "when": "view == taskPoolView", - "group": "navigation@3" - }, - { - "command": "extension.removeTask", - "when": "view == taskPoolView", - "group": "navigation@4" - }, - ], - } - - - -commands: [{ - "command": "extension.stopJob", - "title": "Stop Job", - "icon": "$(primitive-square)" - }, - { - "command": "extension.retryJob", - "title": "Retry Job", - "icon": "$(refresh)" - }, - { - "command": "extension.removeTask", - "title": "Remove Job", - "icon": "$(trash)" - },] - - - -`npm install copy-webpack-plugin --save-dev` +Create a token at: `https://dev.azure.com/neatwork-ai/_usersSettings/tokens` diff --git a/client/LICENSE.md b/client/LICENSE.md index db2ceba..f23ac13 100644 --- a/client/LICENSE.md +++ b/client/LICENSE.md @@ -1 +1,24 @@ -This software is covered under a private license. Unauthorized distribution, modification, or use is prohibited. +NEATWORK.AI OÜ PROPRIETARY SOFTWARE LICENSE + +Copyright © 2023, Neatwork.Ai OÜ. All rights reserved. + +The software contained within this repository and accompanying materials is the property of Neatwork.Ai OÜ and is provided to the recipient under license for their use only. No rights are granted to the recipient beyond those explicitly stated in this license. + +TERMS AND CONDITIONS: + +1. **RESTRICTIONS**: + - You may not redistribute the software in any form, whether in its original form or as part of derivative works. + - You may not modify, adapt, reverse engineer, decompile, or disassemble the software. + - You may not remove or alter any proprietary notices on the software. + +2. **COPYRIGHT**: All rights, title, and interest, including all copyrights and intellectual property rights, in the software remain with Neatwork.Ai OÜ. + +3. **TERMINATION**: This license will terminate immediately without notice if you breach any term of this license. + +4. **DISCLAIMER**: THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. NEATWORK.AI OÜ DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +5. **GOVERNING LAW**: This license is governed by the laws of the Republic of Estonia. + +Use, reproduction, or distribution of the software by any means other than as expressly permitted in this license is prohibited. + +This license does not grant permission to use the trade names, trademarks, service marks, or product names of Neatwork.Ai OÜ. diff --git a/client/package.json b/client/package.json index dbb6caa..e76d996 100644 --- a/client/package.json +++ b/client/package.json @@ -2,7 +2,8 @@ "name": "neatcoder", "displayName": "Neatcoder", "description": "Turn your IDE into an AI Sofware engineer.", - "version": "0.1.1-alpha", + "version": "0.1.0", + "publisher": "NeatworkAi", "repository": { "url": "https://github.com/neatwork-ai/neatcoder-issues.git", "type": "git" diff --git a/crates/neatcoder/Cargo.toml b/crates/neatcoder/Cargo.toml index b345e3a..63bc12e 100644 --- a/crates/neatcoder/Cargo.toml +++ b/crates/neatcoder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "neatcoder" -version = "0.1.1-alpha" +version = "0.1.0" edition = "2021" [lib]