New key bindings! Added ability to search by tag and by date. Though there is still a bug in by date. Lots of DB code updates. Adding electron if casses. Some of these features are electrong spesific so it is checking that it is electron. Changing how tagging control works so I could have multiple on the same page. Added some error tracking code so I would get notified of internal errors if online. New preload script (special feature in electron)
15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
import './src/less/main.less'
|
|
import './src/css/tagify.scss'
|
|
|
|
import App from './src/ui/app.riot'
|
|
|
|
import { component } from 'riot'
|
|
|
|
window.debugging = true
|
|
|
|
setTimeout(() => {
|
|
document.getElementById('main-loading')?.remove()
|
|
component(App)(document.getElementById('timechain'))
|
|
Sentry.captureMessage('Application Started')
|
|
}, 0)
|