Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
2.0.0.1 Initial Commit
Browse files Browse the repository at this point in the history
2.0.0.1
  • Loading branch information
BasuraRatnayake committed Jul 15, 2022
1 parent 2624c25 commit e5e8f3f
Show file tree
Hide file tree
Showing 462 changed files with 561,270 additions and 14,890 deletions.
38 changes: 38 additions & 0 deletions Database/database.sqlite
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
CREATE TABLE IF NOT EXISTS loginD(" +
"username VARCHAR2(20) NOT NULL PRIMARY KEY," +
"password VARCHAR2(100) NOT NULL," +
"lastLogged DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP," +
"UNIQUE (username)" +
");
CREATE TABLE IF NOT EXISTS personalD(" +
"username VARCHAR2(20) NOT NULL," +
"fname VARCHAR2(20) NOT NULL," +
"lname VARCHAR2(20) NOT NULL," +
"dob DATE NOT NULL," +
"email VARCHAR2(100) NOT NULL," +
"FOREIGN KEY (username) REFERENCES loginD (username)" +
");
CREATE TABLE IF NOT EXISTS textEntries(" +
"uID INTEGER PRIMARY KEY AUTOINCREMENT," +
"username VARCHAR2(20) NOT NULL," +
"logged DATE NOT NULL," +
"filename VARCHAR2(10) NOT NULL," +
"UNIQUE (uID)," +
"FOREIGN KEY (username) REFERENCES loginD (username)" +
");
CREATE TABLE IF NOT EXISTS audioEntries(" +
"uID INTEGER PRIMARY KEY AUTOINCREMENT," +
"username VARCHAR2(20) NOT NULL," +
"logged DATE NOT NULL," +
"filename VARCHAR2(10) NOT NULL," +
"UNIQUE (uID)," +
"FOREIGN KEY (username) REFERENCES loginD (username)" +
");
CREATE TABLE IF NOT EXISTS videoEntries(" +
"uID INTEGER PRIMARY KEY AUTOINCREMENT," +
"username VARCHAR2(20) NOT NULL," +
"logged DATE NOT NULL," +
"filename VARCHAR2(10) NOT NULL," +
"UNIQUE (uID)," +
"FOREIGN KEY (username) REFERENCES loginD (username)" +
");
Binary file removed Graphics/Calender.jpg
Binary file not shown.
Binary file added Graphics/Calender.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Graphics/Calender.psd
Binary file not shown.
Binary file removed Graphics/Legends.jpg
Binary file not shown.
Binary file removed Graphics/Legends.psd
Binary file not shown.
Binary file removed Graphics/Splash.jpg
Binary file not shown.
Binary file removed Graphics/Splash.psd
Binary file not shown.
Binary file removed Graphics/btnAudioPause.png
Binary file not shown.
Binary file removed Graphics/btnAudioStop.png
Binary file not shown.
Binary file removed Graphics/btnPause.png
Binary file not shown.
Binary file removed Graphics/btnPlay.png
Binary file not shown.
Binary file removed Graphics/btnStart.png
Binary file not shown.
Binary file removed Graphics/btnStop.png
Binary file not shown.
6 changes: 3 additions & 3 deletions Source/LICENSE.txt → LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
MIT License

Copyright (c) 2015 Basura Ratnayake ([email protected])
Copyright (c) 2019 Basura Ratnayake. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
20 changes: 3 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
# Electronic Diary [MageDinaPotha]
# MageDinaPotha

The scenario for the project is an electronic day
book for individuals to record their day today
activities, unlike an actual physical day book
people have the ability to record a video, audio or
a text entry about their day and also the entries
they store are protected by a user defined password.
An electronic diary that helps record your life events in video, audio or in textual format. All diary entries are highly encrypted to ensure your privacy.

A Project of my Software Engineering
Degree Programme at NSBM.

Module: SOFT225SL Software Engineering for the Internet Using Java

Batch: BSE 14.2

## Tech Stack

Java, SQLite, Xuggler, sarxos/webcam-capture
Copyright (c) 2019 Basura Ratnayake. All rights reserved.
Binary file removed Report/10541973/Plymouth Cover Sheet.pdf
Binary file not shown.
Binary file removed Report/10541973/Project Report.pdf
Binary file not shown.
Binary file removed Report/Coursework Front cover sheet.docx
Binary file not shown.
Binary file removed Report/Project.docx
Binary file not shown.
10 changes: 0 additions & 10 deletions Report/Read Me.txt

This file was deleted.

37 changes: 0 additions & 37 deletions Report/storedEntries.sql

This file was deleted.

Binary file added Source/.vs/MageDinaPotha/v14/.suo
Binary file not shown.
Loading

0 comments on commit e5e8f3f

Please sign in to comment.