Skip to content

mssandeepkamath/onenote-application-javafx

Repository files navigation

Welcome to OneNote Java

A productivity application using Java FX application with features such as whiteboard, TODO list and Notes List.

Previews:

Untitled (2160 × 1080 px) Untitled (2160 × 1080 px) (3) Untitled (2160 × 1080 px) (2)

Class diagram:

OneNoteClassDiagram

Usage:

Checkout the folder out/artifacts/OneNote_jar for Jar file of the project.

Important:

Make sure that you download the javafx sdk and from https://gluonhq.com/products/javafx/ and paste the javafx-sdk-19 folder to C:\Program Files\Java folder of your system.

How to run:

Copy the jar file to your desktop and double click on it.

or

Go to cmd and run this command

          java -jar <path_of_the_jar_file>

If getting error raise a issue!.

OR

1.Clone the project directly into your INTELLIJ IDEA IDE using url: https://github.com/mssandeepkamath/OnenoteApplication.git or Download the zip file and open it in your IDE.

  1. Run HelloApplication.java

Contribute:

1.Fork this repository

2.clone it into your local pc using

   git clone 'your_cloned_https_url'
  1. create a new branch using

     git branch dev ; git checkout dev
    
  2. Contribute!

  3. Stage and commit changes using

    git add . ; git commit -m "your updates"
    
  4. Create pull request in Github GUI for merging the update into OnenoteApplication/master(upstream).

  5. Add original repository for fetch using

    git remote add upstream https://github.com/mssandeepkamath/OnenoteApplication.git
    
  6. Checkout to your origin main and do this for fetching latest changes from original repository.

    git pull upstream main