Commit Graph

652 Commits

Author SHA1 Message Date
6175ac9314
Update README.md 2020-05-16 17:47:27 +05:30
3a23206af9
Update README.md 2020-05-16 15:35:51 +05:30
cc20e28de3
Update README.md 2020-05-16 10:39:59 +05:30
afc286964f
Update README.md 2020-05-16 10:36:45 +05:30
572c559096
Update README.md 2020-05-16 10:33:04 +05:30
09490c560d
Update README.md 2020-05-16 10:14:11 +05:30
2099fa61ba
Update README.md 2020-05-16 09:37:08 +05:30
59dfc6f449
Update README.md 2020-05-16 09:35:17 +05:30
42f493b01b
Update README.md 2020-05-16 09:32:12 +05:30
3d9c763bee
Update README.md 2020-05-16 09:30:31 +05:30
aae73da57f
Update README.md 2020-05-16 09:07:07 +05:30
2f118217d9
Update README.md 2020-05-15 13:40:16 +05:30
Sai Raj
eee8e2e365
Merge pull request #7 from sairajzero/master 2020-05-14 04:00:51 +05:30
Sai Raj
aff5b927e9
Merge branch 'master' into master 2020-05-14 04:00:38 +05:30
Sai Raj
7d65c4da8e
Update README.md 2020-05-14 03:57:23 +05:30
sairajzero
fccf2fdebd Update README.md 2020-05-14 03:52:45 +05:30
sairajzero
a66c2d91c2 minor changes
-Renamed defaultDB propertyName in compactIDB
-Fixed error in writeDataMultiple comment
2020-05-14 03:52:39 +05:30
4eb9649622
Added new standard functions 2020-05-13 10:04:27 +05:30
Sai Raj
61a9b2c111
Merge pull request #1 from sairajzero/master
Alpha version
2020-05-07 15:49:16 +05:30
sairajzero
32da4e28af Improved initDB
initDB also deletes objectstores on upgrade needed (version change)
2020-05-07 15:46:58 +05:30
sairajzero
326d4bc589 v1.0.8b
- Bug fixed: initDB not upgrading correctly.
- Added message to remind the user to secure the private key with password.
- Darkened (color) the warning popup.
2020-05-07 15:45:32 +05:30
sairajzero
1764a90912 v1.0.8
- Added secure privatekey feature.
Secure PrivateKey: replaces the stored privatekey with encrypted variant. (Requires PIN/Password).
- If user enables secure private key, user must enter the PIN/Password from next signIn.
- User can remove account of securely stored privatekey (incase the user forgets the PIN/Password). (Requires Private key to login next time).
- Added getPromptInput to UI script: Promisified custom prompt to get input from user.
2020-05-06 22:26:14 +05:30
sairajzero
489996c1b8 Improve clearCredentials
Clearing the private key, public key and floID from memory on clearCredentials
2020-05-06 19:56:31 +05:30
sairajzero
4a38699442 v1.0.7a: Updating Std_op 2020-05-06 19:45:42 +05:30
Sai Raj
1e6d2462af
Merge pull request #6 from sairajzero/master 2020-05-06 19:03:08 +05:30
sairajzero
d90e9f6ed4 Adding secure PrivateKey feature
floDapps.securePrivKey(pwd): replaces the stored private key with encrypted variant.
Changed made in startup function getCredentials to support securePrivateKey.

Improved and promisified clearCredentials.
2020-05-06 00:31:44 +05:30
sairajzero
0308af983f Adding clearData to CompactIDB
compactIDB.clearData clears all data in the given objectstore.
2020-05-02 18:48:02 +05:30
sairajzero
f60e7dddbb v1.0.7
Fixed bugs:
- Fixed: Restore data not working.
- Settings screen not hiding after logout, clear, restore

Others:
- Updating CompactIDB to latest stdop (initDB adds missing objectStores instead of rejecting).
2020-05-02 18:36:15 +05:30
sairajzero
38f43d805d InitDB: add missing objectStores
InitDB now automatically adds the missing objectstore instead of rejecting
2020-05-02 18:10:47 +05:30
sairajzero
5c22ecab87 v1.0.6
Major Changes:
- Seperated User IDB (Made changes as required for the same)
- 'Sign Out' now only removes the credentials instead of all data
- Added 'Clear Data' in settings. (Clears all user data)
- User can view their private key in settings. (Click on it to copy key to clipboard).
- Messages and Mails are encrypted in IDB (Made changes as required for the same).
- Added Marked feature in messenger (can be used to mark mails and contacts, currently only unread mark used. More marks will be added in future).
- Unread mark UI available for Individual mail and Contact with new unread messages.

Fixed Bugs:
- Fixed: Messages and Mails not refreshed properly in a case.
- Fixed: Unread notification not working
- Fixed: Previous Mail not showing correctly

Minor Changes:
- Added Ranchimall logo
- Changes confirmation message during Signout
- Improved Confirmation Box message (now has a title and message, also have optional custom button text)
- Uses a randomly generated ref for mails
- Added minimize and maximize button for compose-mail box
2020-05-02 01:39:28 +05:30
sairajzero
1954fc0782 Improved sendTxMultiple and writeDataMultiple
sendTxMultiple:
There are 2 modes (given send amount, preserve ratio)
- Given Send Amount: Uses the given send amount from each sender IDs. Pass the senderPrivKeys as object with amount to invoke this mode
eg. { privateKey1: sendAmt1, privateKey2: sendAmt2...}
- preserveRatio: The ratio of the balance of the senders are maintained. Pass the senderPrivKeys as array of private keys.
eg. [privatekey1, privatekey2....]
*Note: receivers must always be object of floIDs with receive amount.
eg. {receiverID1: receiveAmt1, receiver2: receiveAmt2...}

writeDataMultiple:
There are 2 modes (preserveRatio, equalContribution)
- preserveRatio: preserves the ratio of the balance of senders
- equalContribution: all senders contribute equal amount to the transaction
Note:
*senderPrivKey and receivers are arrays
eq. [privateKey1, privateKey2, ..] and [receiverID1, receiverID2...]
*sends default amount (floGlobals.sendAmt) to each receiver)
*last (4th) parameter is optional:
(default) true: invokes preserveRatio mode
false: invokes equalContibution mode
2020-04-26 01:04:12 +05:30
sairajzero
a569adcb74 Adding mergeUTXOs, sendTxMulti and writeDataMulti
mergeUTXOs: /merge all UTXOs of a given floID into a single UTXO

sendTxMulti: Send Tx from (and/or) to multiple floID

writeDataMulti: Write data into blockchain from (and/or) to multiple floID
2020-04-25 17:54:13 +05:30
sairajzero
0a6fb69349 Beautify the scripts 2020-04-23 21:16:54 +05:30
Sai Raj
f52d706cc0
Update README.md 2020-04-17 19:08:51 +05:30
Sai Raj
ac16e26c91
Rename FLO_Messenger.html to index.html 2020-04-17 19:05:04 +05:30
sairajzero
e573ecb8ac v1.0.2
Major Changes:
- Added a settings screen (Click on the settings button on top-right to open settings popup).
- Backup data, Restore data and Signout options are located in settings screen.
- Added UI for mail feature.
- Fixed minor bugs in mail feature.

Backup and Restore features:
- Backup data: allows the user to download a backup file of the data (contacts, pubKeys, mails,  messages).
- Restore data: allows the user to restore the data from a backup file.

Mail Feature:
- Users can send and receive mail to/from other users.
- Click the new mail at the bottom of the page to compose a new mail.
- Mails will be refreshed and retrived from supernode along with messages.
- Click on a mail to view the content of the mail.
- To view the previous mail of the sequel, click 'view previous mail' at the bottom right of the pop-up.
- To reply to a mail, click reply mail at the bottom of the pop-up.
2020-04-17 19:01:43 +05:30
sairajzero
3d04fea2ab v1.0.1
Added:
- Adding Backup feature
- Adding Mail feature

Others:
- Rename sendUnencrypted to sendEncoded
- Moved sendEncrypted, sendEncoded and sendRaw to util.
- Added sendMessage to automatically determine the type to send
- Joined all load funtions into loadData
- Altered funtion calls as per the changes
2020-04-08 15:57:38 +05:30
sairajzero
0a5ad5a2e4 v1.0.0
- Adding major UI
- Added feature to store contact (with name)
2020-04-06 04:55:28 +05:30
sairajzero
548e3d203c Changing application name to Messenger 2020-03-21 18:49:56 +05:30
sairajzero
a4e50a5957 Adding Simple UI and startUp 2020-03-18 18:47:14 +05:30
sairajzero
d4fc6dd999 customizing floDapp for floMessage requirement 2020-03-18 18:46:03 +05:30
sairajzero
b46c63d063 Adding floMessage scripts
Removing floCloudAPI (floMessage script has inbuilt customization as needed)
2020-03-18 18:44:20 +05:30
sairajzero
0b43ad02ad Initial commit 2020-03-18 18:41:58 +05:30
Sai Raj
02252f67ce Initial commit 2020-03-18 18:33:59 +05:30
sairajzero
3d0c8883b7 Improved floCloudAPI
floCloudAPI now stores the lastCommit value of the objects via requestObjectData, resetObjectData, updateObjectData

resetObjectData and updateObjectData now takes the new and old value from floGlobals.appObjects and lastCommit respectively

Parameter changes:
resetObjectData: function(objectName, options = {})
updateObjectData: function(objectName, options = {})
2020-03-10 22:00:56 +05:30
sairajzero
8652959e54 floCrypto: errorHanding
errorHanding added to floCrypto.getPubKeyHex and floCrypto.getFloIDfromPubkeyHex
2020-03-04 03:45:50 +05:30
sairajzero
47ca6a802e moving onloadStartup to a seperate script tag 2020-02-16 02:38:51 +05:30
sairajzero
d6c4b4882e changing TEST_MODE adminID 2020-02-16 02:36:35 +05:30
sairajzero
86ea714139 adding manage subAdmin to floDapps
floDapps.manageSubAdmins() allows the user to add and/or remove subadmin list via blockchain
*Requires Admin Privatekey of the app
2020-02-16 02:34:58 +05:30
sairajzero
c3a51f44a7 bug fix 2020-02-06 14:56:12 +05:30