Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 5b379f3

Browse files
authored
Fix github project links to reflect the rename from ganache to ganache-ui (#5123)
1 parent 81798ec commit 5b379f3

File tree

10 files changed

+33
-14
lines changed

10 files changed

+33
-14
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Following these guidelines helps to communicate that you respect the time of the
88

99
## Using the issue tracker
1010

11-
The [issue tracker](https://github.com/trufflesuite/ganache/issues) is
11+
The [issue tracker](https://github.com/trufflesuite/ganache-ui/issues) is
1212
the preferred channel for [bug reports](#bugs), [features requests](#features)
1313
and [submitting pull requests](#pull-requests).
1414

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Ganache
22

3-
Thank you for contributing! Take a moment to review our [**contributing guidelines**](https://github.com/trufflesuite/ganache/blob/master/.github/CONTRIBUTING.md)
3+
Thank you for contributing! Take a moment to review our [**contributing guidelines**](https://github.com/trufflesuite/ganache-ui/blob/master/.github/CONTRIBUTING.md)
44
to make the process easy and effective for everyone involved.
55

66
**You must open an issue** before embarking on any significant pull request, especially those that
@@ -9,7 +9,7 @@ on something that might not end up being merged into the project.
99

1010
Before opening a pull request, please ensure:
1111

12-
- [ ] You have followed our [**contributing guidelines**](https://github.com/trufflesuite/ganache/blob/master/.github/CONTRIBUTING.md)
12+
- [ ] You have followed our [**contributing guidelines**](https://github.com/trufflesuite/ganache-ui/blob/master/.github/CONTRIBUTING.md)
1313
- [ ] Pull request has tests
1414
- [ ] Code is well-commented, linted and follows project conventions
1515
- [ ] Documentation is updated (if necessary)
@@ -18,4 +18,4 @@ Before opening a pull request, please ensure:
1818
Be kind to code reviewers, please try to keep pull requests as small and focused as possible :)
1919

2020
**IMPORTANT**: By submitting a patch via a Pull Request, you agree to allow the project
21-
owners to license your work under the terms of the [MIT License](https://github.com/trufflesuite/ganache/blob/master/LICENSE.md).
21+
owners to license your work under the terms of the [MIT License](https://github.com/trufflesuite/ganache-ui/blob/master/LICENSE.md).

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 ConsenSys Software Inc
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9+
of the Software, and to permit persons to whom the Software is furnished to do
10+
so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Ganache is your personal blockchain for Ethereum development.
1212

1313
### Getting started
1414

15-
You can download a self-contained prebuilt Ganache binary for your platform of choice using the "Download" button on the [Ganache](https://trufflesuite.com/ganache/) website, or from this repository's [releases](https://github.com/trufflesuite/ganache/releases) page.
15+
You can download a self-contained prebuilt Ganache binary for your platform of choice using the "Download" button on the [Ganache](https://trufflesuite.com/ganache/) website, or from this repository's [releases](https://github.com/trufflesuite/ganache-ui/releases) page.
1616

17-
Ganache is also available as a command-line tool. If you prefer working on the command-line, check out [ganache-cli](https://github.com/trufflesuite/ganache-cli).
17+
Ganache is also available as a command-line tool. If you prefer working on the command-line, check out the [ganache CLI](https://github.com/trufflesuite/ganache).
1818

1919
### Contributing
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"license": "MIT",
1616
"private": true,
1717
"bugs": {
18-
"url": "https://github.com/trufflesuite/ganache/issues"
18+
"url": "https://github.com/trufflesuite/ganache-ui/issues"
1919
},
2020
"keywords": [
2121
"ganache",

src/integrations/ethereum/renderer/screens/contracts/ContractDetails.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class ContractDetails extends Component {
8383
);
8484

8585
shell.openExternal(
86-
`https://github.com/trufflesuite/ganache/issues/new?title=${title}&body=${body}`,
86+
`https://github.com/trufflesuite/ganache-ui/issues/new?title=${title}&body=${body}`
8787
);
8888
}
8989

src/renderer/screens/appshell/BugModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class BugModal extends Component {
104104
const body = this.renderIssueBody(sanitizedSystemError);
105105

106106
shell.openExternal(
107-
`https://github.com/trufflesuite/ganache/issues/new?title=${title}&body=${body}`,
107+
`https://github.com/trufflesuite/ganache-ui/issues/new?title=${title}&body=${body}`
108108
);
109109
}}
110110
>

src/renderer/screens/appshell/TopNavbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class TopNavbar extends Component {
8787
setUpdateAvailable(
8888
"9.9.9",
8989
"Release Name",
90-
"This is a release note.\n\n**bold** _italic_ or is this *italic*? [trufflesuite/ganache-cli#417](https://github.com/trufflesuite/ganache-cli/issues/417)\n\nDo we scroll to get here?\n\nHow about here?",
90+
"This is a release note.\n\n**bold** _italic_ or is this *italic*? [trufflesuite/ganache#417](https://github.com/trufflesuite/ganache/issues/417)\n\nDo we scroll to get here?\n\nHow about here?",
9191
),
9292
);
9393
} else if (value.toLowerCase() === "modal_error") {

src/renderer/screens/auto-update/UpdateModal.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,7 @@ class UpdateModal extends Component {
140140
className="ctaButton"
141141
onClick={() => {
142142
shell.openExternal(
143-
`https://github.com/trufflesuite/ganache/releases/v${
144-
this.props.autoUpdate.versionInfo.newVersion
145-
}`,
143+
`https://github.com/trufflesuite/ganache-ui/releases/v${this.props.autoUpdate.versionInfo.newVersion}`
146144
);
147145
// close the modal so they can go about their business
148146
this.props.dispatch(AutoUpdate.cancelUpdate());

src/renderer/screens/startup/HomeScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class HomeScreen extends Component {
183183
);
184184
// const learnMore = (
185185
// <p className="learnMoreText">
186-
// <a href="https://github.com/trufflesuite/ganache/releases/tag/v2.0.0">
186+
// <a href="https://github.com/trufflesuite/ganache-ui/releases/tag/v2.0.0">
187187
// Learn more about the update to version 2!
188188
// </a>
189189
// </p>

0 commit comments

Comments
 (0)