diff --git a/README.md b/README.md index 6115c84..350970c 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. diff --git a/src/main/java/io/amrishraje/cblitetester/Main.java b/src/main/java/io/amrishraje/cblitetester/Main.java index 1684840..4ec05e9 100644 --- a/src/main/java/io/amrishraje/cblitetester/Main.java +++ b/src/main/java/io/amrishraje/cblitetester/Main.java @@ -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"); diff --git a/src/main/java/io/amrishraje/cblitetester/MainController.java b/src/main/java/io/amrishraje/cblitetester/MainController.java index 1b9e7f4..be36116 100644 --- a/src/main/java/io/amrishraje/cblitetester/MainController.java +++ b/src/main/java/io/amrishraje/cblitetester/MainController.java @@ -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) {