Skip to content

Commit

Permalink
Corrected repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
amrishraje committed Aug 9, 2020
1 parent beff907 commit f20dd9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This app provides a UI to create a local Couchbase Lite DB and Sync Data to the DB from a Couchbase Sync Gateway. It provides features to search for documents in the CBLite DB, selectively sync certain channels and supports both Pull and Push replication.

## Getting Started
For your convenience, I have uploaded a pre-built binary to the [Releases](https://github.com/amrishraje/CBLiteTester/releases) tab. Currently, the binary is tested for Windows only.
For your convenience, I have uploaded a pre-built binary to the [Releases](https://github.com/Infosys/CouchbaseLiteTester/releases) tab. Currently, the binary is tested for Windows only.
> Note: Binary releases are provided for major versions. Please build from source for latest features.
Run the Binary by double clicking on the CBLiteTester.jar file or using ``java -jar CBLiteTester.jar``. Java JRE must be correctly installed on the system.
Expand Down Expand Up @@ -67,7 +67,7 @@ The CBLite Tester can also be used to create a pre-built DB image that can be de
## Building the tool from Code
Download from git and import into your IDE of choice.
```
git clone https://github.com/amrishraje/CBLiteTester.git
git clone https://github.com/Infosys/CouchbaseLiteTester.git
```
Build and run from your IDE using method of your choice.

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/amrishraje/cblitetester/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public void start(Stage primaryStage) throws Exception {
System.out.println("=============================================================================");
System.out.println("Couchbase CBLite Tester");
System.out.println("Author: Amrish Raje");
System.out.println("Repo: https://github.com/amrishraje/CBLiteTester");
System.out.println("License: https://github.com/amrishraje/CBLiteTester/blob/master/LICENSE");
System.out.println("Repo: https://github.com/Infosys/CouchbaseLiteTester");
System.out.println("License: https://github.com/Infosys/CouchbaseLiteTester/blob/master/LICENSE");
System.out.println("=============================================================================");
Parent root = loadFXML("CBLiteScreen");
primaryStage.setTitle("Couchbase Lite Sync Tester");
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/amrishraje/cblitetester/MainController.java
Original file line number Diff line number Diff line change
Expand Up @@ -443,13 +443,13 @@ private void callSyncGw() {
public void openAboutPage(ActionEvent event) {
if (Desktop.isDesktopSupported()) {
try {
Desktop.getDesktop().browse(new URI("https://github.com/amrishraje/CBLiteTester"));
Desktop.getDesktop().browse(new URI("https://github.com/Infosys/CouchbaseLiteTester"));
} catch (IOException e) {
logger.info("Unable to open about page", e);
} catch (URISyntaxException e) {
logger.info("Unable to open about page, bad URL", e);
}
} else logger.info("https://github.com/amrishraje/CBLiteTester");
} else logger.info("https://github.com/Infosys/CouchbaseLiteTester");
}

public void resetChannels(MouseEvent mouseEvent) {
Expand Down

0 comments on commit f20dd9f

Please sign in to comment.