Skip to content

Commit

Permalink
chore: release 2.2.5 (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-zal authored Dec 18, 2024
1 parent 1f37845 commit f4e7100
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 60 deletions.
31 changes: 4 additions & 27 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,17 @@
Change Log
==========

2.2.4 [2024-12-15] (pre-release)
------------------

- fix: key binding for local delete action not working on windows (#254)
- fix: key binding for deploy to work in directory tree panel (#255)

2.2.3 [2024-12-12] (pre-release)
------------------

- Added keyboard shortcut for deployment
- Fixed issue with deleting local components when their name includes a number

2.2.2 [2024-11-28] (pre-release)
2.2.5 [2024-12-18]
------------------

- Added keyboard shortcut for deployment.
- Added support for the theme property of the banner directive in the App Interface.
- Fixed an issue where deleting components with camelCase names was not functioning correctly.
- Fixed the in-editor validation of `makecomapp.json` file.

Why "pre-release": This build is "Release candidate". If internal tests pass without objection, it will be published. We don't have any other blockers.

2.2.1 [2024-11-05] (pre-release)
------------------

- Fixed broken extension 2.2.0 initialization.

2.2.0 [2024-11-04] (pre-release)
------------------

- Added feature "delete component" into Local Development for Apps.
- Added interface type='banner' into JSON schema.
- Added interface `type='banner'` into JSON schema.
- Rapidly improved deployment of local app files. Only the changed data are being deployed now.
- Added "Apply for all" into component mapping alignment process.
- Added feature "remember origin and do not ask again".
- Added feature "Remember origin and do not ask again".
- Updated URLs to Custom Apps documentation.
- Removed dependency on `static.integromat.com` web.
- Updated list of autocompleted/suggested IML functions.
Expand Down
14 changes: 1 addition & 13 deletions README-local-development-for-apps.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
Local Development for Apps (beta)
Local Development for Apps
=================================

```text/plain
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! BETA FEATURE - USE WITH CAUTION! !!
!! !!
!! Local file structure and all these features !!
!! for local development is not finalized yet !!
!! and don't have to be stable yet. !!
!! There can be upcoming breaking changes !!
!! before the final production release. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
```

Documentation / Manual
----------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Make Apps Editor for VS Code
The Visual Studio Code Extension for helping to develop and manage your applications in the [make.com](make.com) visual automation platform
Faster and more comfortable than the web interface.

## July 2024: Introducing the Local Development for Apps (beta)
## July 2024: Introducing the Local Development for Apps

### What is Local Development for Apps?

Expand Down
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.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "apps-sdk",
"displayName": "Make Apps Editor",
"description": "Helps to create, develop, download and deploy apps of the Make no-code visual integration and automation platform.",
"version": "2.2.4",
"version": "2.2.5",
"icon": "resources/make.png",
"repository": {
"type": "git",
Expand Down Expand Up @@ -409,48 +409,48 @@
},
{
"command": "apps-sdk.local-dev.deploy",
"title": "Deploy to Make (beta)"
"title": "Deploy to Make"
},
{
"command": "apps-sdk.local-dev.file-compare",
"title": "Compare with Make (beta)"
"title": "Compare with Make"
},
{
"command": "apps-sdk.local-dev.create-local-connection",
"title": "New Local Component: Connection (beta)",
"title": "New Local Component: Connection",
"category": "Make Apps"
},
{
"command": "apps-sdk.local-dev.create-local-webhook",
"title": "New Local Component: Webhook (beta)",
"title": "New Local Component: Webhook",
"category": "Make Apps"
},
{
"command": "apps-sdk.local-dev.create-local-module",
"title": "New Local Component: Module (beta)",
"title": "New Local Component: Module",
"category": "Make Apps"
},
{
"command": "apps-sdk.local-dev.create-local-rpc",
"title": "New Local Component: Remote Procedure (beta)",
"title": "New Local Component: Remote Procedure",
"category": "Make Apps"
},
{
"command": "apps-sdk.local-dev.create-local-imlfunction",
"title": "New Local Component: Custom IML Function (beta)",
"title": "New Local Component: Custom IML Function",
"category": "Make Apps"
},
{
"command": "apps-sdk.local-dev.clone-to-workspace",
"title": "Clone to Local Folder (beta)"
"title": "Clone to Local Folder"
},
{
"command": "apps-sdk.local-dev.pull-all-components",
"title": "Pull All Components From Make (beta)"
"title": "Pull All Components From Make"
},
{
"command": "apps-sdk.local-dev.delete-local-component",
"title": "Delete Component (beta)",
"title": "Delete Component",
"category": "Make Apps"
}
],
Expand Down
7 changes: 1 addition & 6 deletions src/local-development/clone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,7 @@ async function cloneAppToWorkspace(context: App): Promise<void> {
'\n\n' +
'RECOMMENDATION AFTER CLONNING:' +
'\n\n' +
'We recommend initializing a GIT repository and committing the entire local project there.' +
'\n\n' +
'THIS FEATURE IS BETA:' +
'\n\n' +
'It means that some features may be missing or not yet finalized. ' +
'If any errors occur, consider removing local files and cloning again, or reverting to a previous GIT commit.',
'We recommend initializing a GIT repository and committing the entire local project there.',
},
{ title: 'Continue' },
);
Expand Down

0 comments on commit f4e7100

Please sign in to comment.