Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Realm #308

Merged
merged 26 commits into from
Sep 14, 2018
Merged

Realm #308

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9f15167
Realm migration script and first letter search
navdeepsinghkhalsa Jul 15, 2018
e6f2f98
Decompress bzip2
navdeepsinghkhalsa Jul 18, 2018
b0f20f4
Pull dev
navdeepsinghkhalsa Aug 23, 2018
3b0029e
Pull dev
navdeepsinghkhalsa Aug 23, 2018
1647d28
Download latest Realm DB
navdeepsinghkhalsa Aug 25, 2018
e3f58ed
Remove table aliases
navdeepsinghkhalsa Aug 27, 2018
f03e9a3
Update MD5 path
navdeepsinghkhalsa Sep 6, 2018
35a2b26
chmod downloaded file so it can be used
navdeepsinghkhalsa Sep 6, 2018
26e4a80
Update Realm schemas
navdeepsinghkhalsa Sep 6, 2018
71c819f
Update search, loadShabad, getAng, loadAng for realm
navdeepsinghkhalsa Sep 6, 2018
e3b6bda
Update loadAdjacentShabad for Realm
navdeepsinghkhalsa Sep 6, 2018
18c9124
Update schema definitions
navdeepsinghkhalsa Sep 6, 2018
155514f
Update randomShabad for realm
navdeepsinghkhalsa Sep 6, 2018
7f0b3eb
Update SourceID queries to include schema
navdeepsinghkhalsa Sep 6, 2018
08f9b63
Make Gurmukhi full word search case-sensitive
navdeepsinghkhalsa Sep 6, 2018
a786b2a
Remove timers
navdeepsinghkhalsa Sep 6, 2018
44b1453
Merge branch 'dev' of github.com:khalisfoundation/sttm-desktop into r…
navdeepsinghkhalsa Sep 6, 2018
61d2985
Update viewer to use Realm
navdeepsinghkhalsa Sep 7, 2018
cd15b84
Fix #205
navdeepsinghkhalsa Sep 7, 2018
b3fe328
Fix 73 consolidate search (#313)
navdeepsinghkhalsa Sep 13, 2018
c976074
Fix Hukamnama retrieval
navdeepsinghkhalsa Sep 13, 2018
e98fc3f
Clarify database cleanup comment
navdeepsinghkhalsa Sep 13, 2018
bf1e73f
Add docs for all local banidb api methods
navdeepsinghkhalsa Sep 13, 2018
e6393b3
Merge branch 'dev' into realm
navdeepsinghkhalsa Sep 13, 2018
f373d41
Merge branch 'dev' into realm
navdeepsinghkhalsa Sep 14, 2018
7a2edfa
Rexpect source during first-letter searches
navdeepsinghkhalsa Sep 14, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"node": true
},
"rules": {
"no-mixed-operators": "off",
"arrow-parens": ["warn", "as-needed"]
"no-mixed-operators": "off"
},
"settings": {
"import/core-modules": "electron"
Expand Down
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ autoUpdater.on('update-downloaded', () => {
message: 'Update available.',
detail: 'Update downloaded and ready to install',
cancelId: 0,
}, response => {
}, (response) => {
if (response === 1) {
autoUpdater.quitAndInstall();
}
Expand All @@ -150,7 +150,7 @@ function checkForExternalDisplay() {
const electronScreen = electron.screen;
const displays = electronScreen.getAllDisplays();
let externalDisplay = null;
Object.keys(displays).forEach(i => {
Object.keys(displays).forEach((i) => {
if (displays[i].bounds.x !== 0 || displays[i].bounds.y !== 0) {
externalDisplay = displays[i];
}
Expand Down
Loading