Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Winlove0710/issue96 #173

Open
wants to merge 22 commits into
base: bump_version_1.3.5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++14",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4
}
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"files.autoSave": "onFocusChange",
"editor.renderWhitespace": "trailing",
"editor.cursorStyle": "block",
"editor.wordWrap": "on",
"python.testing.unittestArgs": [
"-v",
"-s",
"./build",
"-p",
"*test.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ In Remix Desktop, you select a folder from the File menu (File -> Open Folder) t

![](remix-desktop-open.png)

### Version control& folder capacity
### Version control & folder capacity
With Remix Desktop, version control is just like it would be with any other desktop IDE. Similarly the size of a workspace folder is limited by your computer's hard drive. In Remix IDE - the web app, the size of a workspace folder is limited by the size of the browser's local storage. There are techniques for putting version control in the browser (like using remixd or the DGIT plugin), but these are work-arounds to inherent limitations of a browser.

### Deploying to a public testnet with Injected Web3 & Metamask
**Remix Desktop** does not have access to the Metamask - the browser plugin - so deploying to a public chain currently involves using the Wallet Connect plugin. In contract, **Remix IDE - the web app** has easy access to the Metamask browser plugin.
**Remix Desktop** does not have access to the Metamask - the browser plugin - so deploying to a public chain currently involves using the Wallet Connect plugin. In contrast, **Remix IDE - the web app** has easy access to the Metamask browser plugin.

## Updates to Remix IDE & Updates to Remix Desktop
Please check subscribe to our Twitter feed @EthereumRemix - so we can prompt you to download the latest version. Remix Desktop is a wrapper of Remix IDE so Remix Desktop will automatically grab the latest version of Remix IDE. You only need to download the new releases of Remix Desktop. We also post announcements in our gitter chat: https://gitter.im/ethereum/remix
Expand All @@ -34,4 +34,4 @@ Please check subscribe to our Twitter feed @EthereumRemix - so we can prompt you
Please post your questions to: https://gitter.im/ethereum/remix

## Reporting issues
For posting issues - you can alert us in the gitter chat - or post the issue to this repo.
For posting issues - you can alert us in the gitter chat - or post the issue to this repo.
188 changes: 188 additions & 0 deletions lib/applicationMenu.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/applicationMenu.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions lib/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/config.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading