├── .babelrc ├── .eslintrc.yml ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-template.md └── workflows │ ├── codeql-analysis.yml │ ├── publish.yml │ └── winget.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── __mocks__ ├── @electron │ └── remote.js ├── electron-settings.js ├── electron.js ├── fileMock.js ├── pouchdb-browser.js ├── styleMock.js └── uuid.js ├── app.js ├── app ├── App.jsx ├── actions │ ├── __tests__ │ │ ├── contacts.spec.js │ │ ├── form.spec.js │ │ ├── invoices.spec.js │ │ ├── settings.spec.js │ │ └── ui.spec.js │ ├── contactForm.jsx │ ├── contacts.jsx │ ├── exportImport.jsx │ ├── form.jsx │ ├── invoices.jsx │ ├── login.jsx │ ├── settings.jsx │ └── ui.jsx ├── app.html ├── components │ ├── contacts │ │ ├── Contact.jsx │ │ ├── Form │ │ │ └── Form.jsx │ │ └── __tests__ │ │ │ ├── Contact.spec.js │ │ │ └── __snapshots__ │ │ │ └── Contact.spec.js.snap │ ├── form │ │ ├── CreatedAt.jsx │ │ ├── CreatedAtPicker.jsx │ │ ├── Currency.jsx │ │ ├── Discount.jsx │ │ ├── DueDate.jsx │ │ ├── DueDatePicker.jsx │ │ ├── DueDateTerms.jsx │ │ ├── InvoiceID.jsx │ │ ├── ItemRow.jsx │ │ ├── ItemsList.jsx │ │ ├── Note.jsx │ │ ├── Payment.jsx │ │ ├── PaymentItemRow.jsx │ │ ├── PaymentItemsList.jsx │ │ ├── Recipient.jsx │ │ ├── RecipientForm.jsx │ │ ├── RecipientsList.jsx │ │ ├── Settings.jsx │ │ ├── SubItemsRow.jsx │ │ ├── Tax.jsx │ │ ├── __tests__ │ │ │ ├── Currency.spec.jsx │ │ │ ├── Discount.spec.jsx │ │ │ ├── DueDate.spec.jsx │ │ │ ├── DueDatePicker.spec.jsx │ │ │ ├── DueDateTerms.spec.jsx │ │ │ ├── InvoiceID.spec.jsx │ │ │ ├── ItemRow.spec.jsx │ │ │ ├── ItemsList.spec.jsx │ │ │ ├── Note.spec.jsx │ │ │ ├── Recipient.spec.jsx │ │ │ ├── RecipientForm.spec.jsx │ │ │ ├── RecipientsList.spec.jsx │ │ │ ├── Settings.spec.jsx │ │ │ ├── Tax.spec.jsx │ │ │ └── __snapshots__ │ │ │ │ ├── Currency.spec.jsx.snap │ │ │ │ ├── Discount.spec.jsx.snap │ │ │ │ ├── DueDatePicker.spec.jsx.snap │ │ │ │ ├── DueDateTerms.spec.jsx.snap │ │ │ │ ├── InvoiceID.spec.jsx.snap │ │ │ │ ├── ItemRow.spec.jsx.snap │ │ │ │ ├── ItemsList.spec.jsx.snap │ │ │ │ ├── Note.spec.jsx.snap │ │ │ │ ├── Recipient.spec.jsx.snap │ │ │ │ ├── RecipientForm.spec.jsx.snap │ │ │ │ ├── RecipientsList.spec.jsx.snap │ │ │ │ ├── Settings.spec.jsx.snap │ │ │ │ └── Tax.spec.jsx.snap │ │ └── hoc │ │ │ ├── _withAnimation.jsx │ │ │ ├── _withDragNDrop.jsx │ │ │ └── _withDraggable.jsx │ ├── invoices │ │ ├── Invoice.jsx │ │ └── __tests__ │ │ │ ├── Invoice.spec.js │ │ │ └── __snapshots__ │ │ │ └── Invoice.spec.js.snap │ ├── layout │ │ ├── AppMain.jsx │ │ ├── AppNav.jsx │ │ ├── AppNoti.jsx │ │ ├── AppUpdate.jsx │ │ └── __tests__ │ │ │ ├── AppMain.spec.js │ │ │ └── AppNav.spec.js │ ├── login │ │ └── Login.jsx │ ├── settings │ │ ├── General.jsx │ │ ├── Invoice.jsx │ │ ├── Profile.jsx │ │ ├── __tests__ │ │ │ └── General.spec.js │ │ └── _partials │ │ │ ├── invoice │ │ │ ├── Currency.jsx │ │ │ ├── Fields.jsx │ │ │ ├── Other.jsx │ │ │ ├── Payment.jsx │ │ │ └── Tax.jsx │ │ │ └── profile │ │ │ ├── Logo.jsx │ │ │ └── TargetBox.jsx │ ├── shared │ │ ├── Button.jsx │ │ ├── Card.jsx │ │ ├── ErrorBoundary.jsx │ │ ├── Layout.jsx │ │ ├── Message.jsx │ │ ├── Notification.jsx │ │ ├── Part.jsx │ │ ├── Section.jsx │ │ ├── Slide.jsx │ │ ├── SplitButton.jsx │ │ ├── Switch.jsx │ │ ├── Table.jsx │ │ ├── Tabs.jsx │ │ ├── TransitionList.jsx │ │ ├── _tests_ │ │ │ ├── Button.spec.js │ │ │ ├── Layout.spec.js │ │ │ ├── Message.spec.js │ │ │ ├── Section.spec.js │ │ │ ├── SplitButton.spec.js │ │ │ └── __snapshots__ │ │ │ │ └── SplitButton.spec.js.snap │ │ └── hoc │ │ │ └── _withFadeInAnimation.jsx │ └── statistics │ │ ├── CalendarChart.jsx │ │ ├── CustomSymbol.jsx │ │ ├── PieChart.jsx │ │ └── TimeLineChart.jsx ├── constants │ ├── ItemTypes.jsx │ └── actions.jsx ├── containers │ ├── ContactForm.jsx │ ├── Contacts.jsx │ ├── Form.jsx │ ├── Invoices.jsx │ ├── Login.jsx │ ├── Settings.jsx │ ├── Statistics.jsx │ └── __tests__ │ │ ├── Contacts.spec.js │ │ ├── Form.spec.js │ │ ├── Invoices.spec.js │ │ ├── Settings.spec.js │ │ └── __snapshots__ │ │ └── Invoices.spec.js.snap ├── helpers │ ├── __mocks__ │ │ ├── form.js │ │ ├── invoice.js │ │ └── pouchDB.js │ ├── __tests__ │ │ ├── form.spec.js │ │ └── invoice.spec.js │ ├── clipboard.js │ ├── encryption.js │ ├── form.js │ ├── image.js │ ├── importFile.js │ ├── invoice.js │ ├── pouchDB.js │ ├── resize.js │ └── statistics.js ├── index.jsx ├── middlewares │ ├── ContactFormMW.jsx │ ├── ContactsMW.jsx │ ├── ExportImportMW.jsx │ ├── FormMW.jsx │ ├── InvoicesMW.jsx │ ├── LoginMW.jsx │ ├── MeasureMW.jsx │ ├── SettingsMW.jsx │ ├── UIMiddleware.jsx │ └── __tests__ │ │ ├── ContactsMW.spec.js │ │ ├── FormMW.spec.js │ │ ├── InvoicesMW.spec.js │ │ ├── SettingsMW.spec.js │ │ └── UIMiddleware.spec.js ├── reducers │ ├── ContactFormReducer.jsx │ ├── ContactsReducer.jsx │ ├── FormReducer.jsx │ ├── InvoicesReducer.jsx │ ├── LoginReducer.jsx │ ├── SettingsReducer.jsx │ ├── UIReducer.jsx │ ├── __tests__ │ │ ├── ContactsReducer.spec.js │ │ ├── FormReducer.spec.js │ │ ├── InvoicesReducer.spec.js │ │ ├── SettingsReducer.spec.js │ │ └── UIReducer.spec.js │ ├── exportImportReducer.jsx │ └── index.jsx ├── renderers │ ├── __mocks__ │ │ └── dialog.js │ ├── dialog.js │ ├── menu.js │ └── startup.js └── store │ ├── enhancer.jsx │ └── index.jsx ├── dev-app-update.yml ├── electron-builder.yml ├── helpers ├── __tests__ │ └── formatNumber.spec.js ├── center-on-primary-display.js ├── date.js ├── encryption.js ├── formatNumber.js ├── notify.js └── windowStateKeeper.js ├── i18n ├── de │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── en │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── esES │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── fr │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── i18n.js ├── id │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── it │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── nl │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── ro │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── sk │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── sr-CS │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── sr │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── ur-PK │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── vi │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json └── zh-CN │ ├── common.json │ ├── contacts.json │ ├── dialog.json │ ├── form.json │ ├── index.js │ ├── invoices.json │ ├── login.json │ ├── messages.json │ ├── preview.json │ ├── settings.json │ ├── statistics.json │ └── tour.json ├── jest.config.js ├── jest.setup.js ├── jest.shim.js ├── libs ├── __mocks__ │ └── sounds.js ├── __tests__ │ └── sounds.spec.js ├── currencies.json ├── dragNdrop.js ├── paymentTerms.js └── sounds.js ├── main ├── auto-start.js ├── deep-link.js ├── e2ee.js ├── export-data.js ├── preview-window.js ├── save-pdf.js ├── select-export-directory.js ├── select-import-file.js ├── select-logo-file.js ├── tour.js ├── tray.js └── updater.js ├── modal ├── Dialog.jsx ├── helpers │ └── external_links.js ├── index.jsx └── modal.html ├── package.json ├── preview ├── Viewer.jsx ├── actions │ ├── __test__ │ │ └── index.spec.js │ └── index.jsx ├── components │ ├── shared │ │ └── index.js │ └── sidebar │ │ ├── AccentColor.jsx │ │ ├── Actions.jsx │ │ ├── Alignment.jsx │ │ ├── DateFormat.jsx │ │ ├── FontSize.jsx │ │ ├── Language.jsx │ │ ├── LogoSize.jsx │ │ ├── Template.jsx │ │ └── Toggler.jsx ├── constants │ └── actions.jsx ├── containers │ ├── MainContent.jsx │ └── SideBar.jsx ├── helper │ └── index.js ├── index.jsx ├── preview.html ├── reducers │ ├── __test__ │ │ └── index.spec.js │ └── index.jsx └── templates │ ├── business │ ├── components │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Logo.jsx │ │ └── Main.jsx │ └── index.jsx │ ├── businessQuote │ ├── components │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Logo.jsx │ │ └── Main.jsx │ └── index.jsx │ └── minimal │ ├── components │ ├── Footer.jsx │ ├── Header.jsx │ └── Main.jsx │ └── index.jsx ├── scripts └── notarize.js ├── static ├── css │ ├── bootstrap.min.css │ ├── contact.css │ ├── date-picker.css │ ├── form.css │ ├── general.css │ ├── ionicons.min.css │ ├── items.css │ ├── layout.css │ ├── preview │ │ ├── font.css │ │ └── print.css │ └── tooltip.css ├── fonts │ ├── Lora │ │ └── Lora-Regular.ttf │ ├── Montserrat │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Medium.ttf │ │ └── Montserrat-Regular.ttf │ ├── SourceSerifPro │ │ └── SourceSerifPro-Regular.ttf │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── imgs │ ├── Grises.svg │ ├── default_logo.svg │ └── tray_icon.png └── sounds │ ├── cs │ ├── add.wav │ ├── dialog.wav │ ├── index.js │ ├── reload.wav │ ├── remove.wav │ ├── startup.wav │ ├── success.wav │ ├── tap.wav │ └── warning.wav │ ├── default │ ├── add.wav │ ├── dialog.wav │ ├── index.js │ ├── reload.wav │ ├── remove.wav │ ├── startup.wav │ ├── success.wav │ ├── tap.wav │ └── warning.wav │ └── minecraft │ ├── attack.wav │ ├── endermen.wav │ ├── evocation.wav │ ├── fireworks.wav │ ├── index.js │ ├── opendoor.wav │ ├── pop.wav │ ├── ravarger.wav │ ├── step.wav │ ├── vex.wav │ └── villager.wav ├── test ├── helper.js └── spec.js ├── tour ├── Tour.jsx ├── components │ ├── Actions.jsx │ ├── Slide.jsx │ └── slides │ │ ├── Create.jsx │ │ ├── Encryption.jsx │ │ ├── Preview.jsx │ │ ├── Save.jsx │ │ ├── Success.jsx │ │ └── Welcome.jsx ├── containers │ └── Slider.jsx ├── imgs │ ├── Create.svg │ ├── Preview.svg │ ├── Save.svg │ ├── Success.svg │ ├── Templates.svg │ ├── Welcome.svg │ └── encryption.svg ├── index.jsx └── tour.html ├── webpack.config.dev.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/ISSUE_TEMPLATE/question-template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/@electron/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/__mocks__/@electron/remote.js -------------------------------------------------------------------------------- /__mocks__/electron-settings.js: -------------------------------------------------------------------------------- 1 | module.exports = jest.fn(); 2 | -------------------------------------------------------------------------------- /__mocks__/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/__mocks__/electron.js -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {} -------------------------------------------------------------------------------- /__mocks__/pouchdb-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = jest.fn(() => ({ 2 | name: 'test', 3 | })); 4 | -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {} -------------------------------------------------------------------------------- /__mocks__/uuid.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | v4: () => 'id-string' 3 | } -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app.js -------------------------------------------------------------------------------- /app/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/App.jsx -------------------------------------------------------------------------------- /app/actions/__tests__/contacts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/__tests__/contacts.spec.js -------------------------------------------------------------------------------- /app/actions/__tests__/form.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/__tests__/form.spec.js -------------------------------------------------------------------------------- /app/actions/__tests__/invoices.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/__tests__/invoices.spec.js -------------------------------------------------------------------------------- /app/actions/__tests__/settings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/__tests__/settings.spec.js -------------------------------------------------------------------------------- /app/actions/__tests__/ui.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/__tests__/ui.spec.js -------------------------------------------------------------------------------- /app/actions/contactForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/contactForm.jsx -------------------------------------------------------------------------------- /app/actions/contacts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/contacts.jsx -------------------------------------------------------------------------------- /app/actions/exportImport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/exportImport.jsx -------------------------------------------------------------------------------- /app/actions/form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/form.jsx -------------------------------------------------------------------------------- /app/actions/invoices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/invoices.jsx -------------------------------------------------------------------------------- /app/actions/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/login.jsx -------------------------------------------------------------------------------- /app/actions/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/settings.jsx -------------------------------------------------------------------------------- /app/actions/ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/actions/ui.jsx -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/app.html -------------------------------------------------------------------------------- /app/components/contacts/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/contacts/Contact.jsx -------------------------------------------------------------------------------- /app/components/contacts/Form/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/contacts/Form/Form.jsx -------------------------------------------------------------------------------- /app/components/contacts/__tests__/Contact.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/contacts/__tests__/Contact.spec.js -------------------------------------------------------------------------------- /app/components/contacts/__tests__/__snapshots__/Contact.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/contacts/__tests__/__snapshots__/Contact.spec.js.snap -------------------------------------------------------------------------------- /app/components/form/CreatedAt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/CreatedAt.jsx -------------------------------------------------------------------------------- /app/components/form/CreatedAtPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/CreatedAtPicker.jsx -------------------------------------------------------------------------------- /app/components/form/Currency.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Currency.jsx -------------------------------------------------------------------------------- /app/components/form/Discount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Discount.jsx -------------------------------------------------------------------------------- /app/components/form/DueDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/DueDate.jsx -------------------------------------------------------------------------------- /app/components/form/DueDatePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/DueDatePicker.jsx -------------------------------------------------------------------------------- /app/components/form/DueDateTerms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/DueDateTerms.jsx -------------------------------------------------------------------------------- /app/components/form/InvoiceID.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/InvoiceID.jsx -------------------------------------------------------------------------------- /app/components/form/ItemRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/ItemRow.jsx -------------------------------------------------------------------------------- /app/components/form/ItemsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/ItemsList.jsx -------------------------------------------------------------------------------- /app/components/form/Note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Note.jsx -------------------------------------------------------------------------------- /app/components/form/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Payment.jsx -------------------------------------------------------------------------------- /app/components/form/PaymentItemRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/PaymentItemRow.jsx -------------------------------------------------------------------------------- /app/components/form/PaymentItemsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/PaymentItemsList.jsx -------------------------------------------------------------------------------- /app/components/form/Recipient.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Recipient.jsx -------------------------------------------------------------------------------- /app/components/form/RecipientForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/RecipientForm.jsx -------------------------------------------------------------------------------- /app/components/form/RecipientsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/RecipientsList.jsx -------------------------------------------------------------------------------- /app/components/form/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Settings.jsx -------------------------------------------------------------------------------- /app/components/form/SubItemsRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/SubItemsRow.jsx -------------------------------------------------------------------------------- /app/components/form/Tax.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/Tax.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/Currency.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/Currency.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/Discount.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/Discount.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/DueDate.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/DueDate.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/DueDatePicker.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/DueDatePicker.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/DueDateTerms.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/DueDateTerms.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/InvoiceID.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/InvoiceID.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/ItemRow.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/ItemRow.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/ItemsList.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/ItemsList.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/Note.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/Note.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/Recipient.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/Recipient.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/RecipientForm.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/RecipientForm.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/RecipientsList.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/RecipientsList.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/Settings.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/Settings.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/Tax.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/Tax.spec.jsx -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/Currency.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/Currency.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/Discount.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/Discount.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/DueDatePicker.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/DueDatePicker.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/DueDateTerms.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/DueDateTerms.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/InvoiceID.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/InvoiceID.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/ItemRow.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/ItemRow.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/ItemsList.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/ItemsList.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/Note.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/Note.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/Recipient.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/Recipient.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/RecipientForm.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/RecipientForm.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/RecipientsList.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/RecipientsList.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/Settings.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/Settings.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/__tests__/__snapshots__/Tax.spec.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/__tests__/__snapshots__/Tax.spec.jsx.snap -------------------------------------------------------------------------------- /app/components/form/hoc/_withAnimation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/hoc/_withAnimation.jsx -------------------------------------------------------------------------------- /app/components/form/hoc/_withDragNDrop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/hoc/_withDragNDrop.jsx -------------------------------------------------------------------------------- /app/components/form/hoc/_withDraggable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/form/hoc/_withDraggable.jsx -------------------------------------------------------------------------------- /app/components/invoices/Invoice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/invoices/Invoice.jsx -------------------------------------------------------------------------------- /app/components/invoices/__tests__/Invoice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/invoices/__tests__/Invoice.spec.js -------------------------------------------------------------------------------- /app/components/invoices/__tests__/__snapshots__/Invoice.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/invoices/__tests__/__snapshots__/Invoice.spec.js.snap -------------------------------------------------------------------------------- /app/components/layout/AppMain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/layout/AppMain.jsx -------------------------------------------------------------------------------- /app/components/layout/AppNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/layout/AppNav.jsx -------------------------------------------------------------------------------- /app/components/layout/AppNoti.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/layout/AppNoti.jsx -------------------------------------------------------------------------------- /app/components/layout/AppUpdate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/layout/AppUpdate.jsx -------------------------------------------------------------------------------- /app/components/layout/__tests__/AppMain.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/layout/__tests__/AppMain.spec.js -------------------------------------------------------------------------------- /app/components/layout/__tests__/AppNav.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/layout/__tests__/AppNav.spec.js -------------------------------------------------------------------------------- /app/components/login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/login/Login.jsx -------------------------------------------------------------------------------- /app/components/settings/General.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/General.jsx -------------------------------------------------------------------------------- /app/components/settings/Invoice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/Invoice.jsx -------------------------------------------------------------------------------- /app/components/settings/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/Profile.jsx -------------------------------------------------------------------------------- /app/components/settings/__tests__/General.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/__tests__/General.spec.js -------------------------------------------------------------------------------- /app/components/settings/_partials/invoice/Currency.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/invoice/Currency.jsx -------------------------------------------------------------------------------- /app/components/settings/_partials/invoice/Fields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/invoice/Fields.jsx -------------------------------------------------------------------------------- /app/components/settings/_partials/invoice/Other.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/invoice/Other.jsx -------------------------------------------------------------------------------- /app/components/settings/_partials/invoice/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/invoice/Payment.jsx -------------------------------------------------------------------------------- /app/components/settings/_partials/invoice/Tax.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/invoice/Tax.jsx -------------------------------------------------------------------------------- /app/components/settings/_partials/profile/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/profile/Logo.jsx -------------------------------------------------------------------------------- /app/components/settings/_partials/profile/TargetBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/settings/_partials/profile/TargetBox.jsx -------------------------------------------------------------------------------- /app/components/shared/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Button.jsx -------------------------------------------------------------------------------- /app/components/shared/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Card.jsx -------------------------------------------------------------------------------- /app/components/shared/ErrorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/ErrorBoundary.jsx -------------------------------------------------------------------------------- /app/components/shared/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Layout.jsx -------------------------------------------------------------------------------- /app/components/shared/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Message.jsx -------------------------------------------------------------------------------- /app/components/shared/Notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Notification.jsx -------------------------------------------------------------------------------- /app/components/shared/Part.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Part.jsx -------------------------------------------------------------------------------- /app/components/shared/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Section.jsx -------------------------------------------------------------------------------- /app/components/shared/Slide.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Slide.jsx -------------------------------------------------------------------------------- /app/components/shared/SplitButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/SplitButton.jsx -------------------------------------------------------------------------------- /app/components/shared/Switch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Switch.jsx -------------------------------------------------------------------------------- /app/components/shared/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Table.jsx -------------------------------------------------------------------------------- /app/components/shared/Tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/Tabs.jsx -------------------------------------------------------------------------------- /app/components/shared/TransitionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/TransitionList.jsx -------------------------------------------------------------------------------- /app/components/shared/_tests_/Button.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/_tests_/Button.spec.js -------------------------------------------------------------------------------- /app/components/shared/_tests_/Layout.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/_tests_/Layout.spec.js -------------------------------------------------------------------------------- /app/components/shared/_tests_/Message.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/_tests_/Message.spec.js -------------------------------------------------------------------------------- /app/components/shared/_tests_/Section.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/_tests_/Section.spec.js -------------------------------------------------------------------------------- /app/components/shared/_tests_/SplitButton.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/_tests_/SplitButton.spec.js -------------------------------------------------------------------------------- /app/components/shared/_tests_/__snapshots__/SplitButton.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/_tests_/__snapshots__/SplitButton.spec.js.snap -------------------------------------------------------------------------------- /app/components/shared/hoc/_withFadeInAnimation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/shared/hoc/_withFadeInAnimation.jsx -------------------------------------------------------------------------------- /app/components/statistics/CalendarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/statistics/CalendarChart.jsx -------------------------------------------------------------------------------- /app/components/statistics/CustomSymbol.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/statistics/CustomSymbol.jsx -------------------------------------------------------------------------------- /app/components/statistics/PieChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/statistics/PieChart.jsx -------------------------------------------------------------------------------- /app/components/statistics/TimeLineChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/components/statistics/TimeLineChart.jsx -------------------------------------------------------------------------------- /app/constants/ItemTypes.jsx: -------------------------------------------------------------------------------- 1 | export const ItemTypes = { 2 | ROW: 'Row', 3 | }; 4 | -------------------------------------------------------------------------------- /app/constants/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/constants/actions.jsx -------------------------------------------------------------------------------- /app/containers/ContactForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/ContactForm.jsx -------------------------------------------------------------------------------- /app/containers/Contacts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/Contacts.jsx -------------------------------------------------------------------------------- /app/containers/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/Form.jsx -------------------------------------------------------------------------------- /app/containers/Invoices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/Invoices.jsx -------------------------------------------------------------------------------- /app/containers/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/Login.jsx -------------------------------------------------------------------------------- /app/containers/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/Settings.jsx -------------------------------------------------------------------------------- /app/containers/Statistics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/Statistics.jsx -------------------------------------------------------------------------------- /app/containers/__tests__/Contacts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/__tests__/Contacts.spec.js -------------------------------------------------------------------------------- /app/containers/__tests__/Form.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/__tests__/Form.spec.js -------------------------------------------------------------------------------- /app/containers/__tests__/Invoices.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/__tests__/Invoices.spec.js -------------------------------------------------------------------------------- /app/containers/__tests__/Settings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/__tests__/Settings.spec.js -------------------------------------------------------------------------------- /app/containers/__tests__/__snapshots__/Invoices.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/containers/__tests__/__snapshots__/Invoices.spec.js.snap -------------------------------------------------------------------------------- /app/helpers/__mocks__/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/__mocks__/form.js -------------------------------------------------------------------------------- /app/helpers/__mocks__/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/__mocks__/invoice.js -------------------------------------------------------------------------------- /app/helpers/__mocks__/pouchDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/__mocks__/pouchDB.js -------------------------------------------------------------------------------- /app/helpers/__tests__/form.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/__tests__/form.spec.js -------------------------------------------------------------------------------- /app/helpers/__tests__/invoice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/__tests__/invoice.spec.js -------------------------------------------------------------------------------- /app/helpers/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/clipboard.js -------------------------------------------------------------------------------- /app/helpers/encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/encryption.js -------------------------------------------------------------------------------- /app/helpers/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/form.js -------------------------------------------------------------------------------- /app/helpers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/image.js -------------------------------------------------------------------------------- /app/helpers/importFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/importFile.js -------------------------------------------------------------------------------- /app/helpers/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/invoice.js -------------------------------------------------------------------------------- /app/helpers/pouchDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/pouchDB.js -------------------------------------------------------------------------------- /app/helpers/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/resize.js -------------------------------------------------------------------------------- /app/helpers/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/helpers/statistics.js -------------------------------------------------------------------------------- /app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/index.jsx -------------------------------------------------------------------------------- /app/middlewares/ContactFormMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/ContactFormMW.jsx -------------------------------------------------------------------------------- /app/middlewares/ContactsMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/ContactsMW.jsx -------------------------------------------------------------------------------- /app/middlewares/ExportImportMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/ExportImportMW.jsx -------------------------------------------------------------------------------- /app/middlewares/FormMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/FormMW.jsx -------------------------------------------------------------------------------- /app/middlewares/InvoicesMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/InvoicesMW.jsx -------------------------------------------------------------------------------- /app/middlewares/LoginMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/LoginMW.jsx -------------------------------------------------------------------------------- /app/middlewares/MeasureMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/MeasureMW.jsx -------------------------------------------------------------------------------- /app/middlewares/SettingsMW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/SettingsMW.jsx -------------------------------------------------------------------------------- /app/middlewares/UIMiddleware.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/UIMiddleware.jsx -------------------------------------------------------------------------------- /app/middlewares/__tests__/ContactsMW.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/__tests__/ContactsMW.spec.js -------------------------------------------------------------------------------- /app/middlewares/__tests__/FormMW.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/__tests__/FormMW.spec.js -------------------------------------------------------------------------------- /app/middlewares/__tests__/InvoicesMW.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/__tests__/InvoicesMW.spec.js -------------------------------------------------------------------------------- /app/middlewares/__tests__/SettingsMW.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/__tests__/SettingsMW.spec.js -------------------------------------------------------------------------------- /app/middlewares/__tests__/UIMiddleware.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/middlewares/__tests__/UIMiddleware.spec.js -------------------------------------------------------------------------------- /app/reducers/ContactFormReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/ContactFormReducer.jsx -------------------------------------------------------------------------------- /app/reducers/ContactsReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/ContactsReducer.jsx -------------------------------------------------------------------------------- /app/reducers/FormReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/FormReducer.jsx -------------------------------------------------------------------------------- /app/reducers/InvoicesReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/InvoicesReducer.jsx -------------------------------------------------------------------------------- /app/reducers/LoginReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/LoginReducer.jsx -------------------------------------------------------------------------------- /app/reducers/SettingsReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/SettingsReducer.jsx -------------------------------------------------------------------------------- /app/reducers/UIReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/UIReducer.jsx -------------------------------------------------------------------------------- /app/reducers/__tests__/ContactsReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/__tests__/ContactsReducer.spec.js -------------------------------------------------------------------------------- /app/reducers/__tests__/FormReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/__tests__/FormReducer.spec.js -------------------------------------------------------------------------------- /app/reducers/__tests__/InvoicesReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/__tests__/InvoicesReducer.spec.js -------------------------------------------------------------------------------- /app/reducers/__tests__/SettingsReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/__tests__/SettingsReducer.spec.js -------------------------------------------------------------------------------- /app/reducers/__tests__/UIReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/__tests__/UIReducer.spec.js -------------------------------------------------------------------------------- /app/reducers/exportImportReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/exportImportReducer.jsx -------------------------------------------------------------------------------- /app/reducers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/reducers/index.jsx -------------------------------------------------------------------------------- /app/renderers/__mocks__/dialog.js: -------------------------------------------------------------------------------- 1 | module.exports = jest.fn(); 2 | -------------------------------------------------------------------------------- /app/renderers/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/renderers/dialog.js -------------------------------------------------------------------------------- /app/renderers/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/renderers/menu.js -------------------------------------------------------------------------------- /app/renderers/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/renderers/startup.js -------------------------------------------------------------------------------- /app/store/enhancer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/store/enhancer.jsx -------------------------------------------------------------------------------- /app/store/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/app/store/index.jsx -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/dev-app-update.yml -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /helpers/__tests__/formatNumber.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/__tests__/formatNumber.spec.js -------------------------------------------------------------------------------- /helpers/center-on-primary-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/center-on-primary-display.js -------------------------------------------------------------------------------- /helpers/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/date.js -------------------------------------------------------------------------------- /helpers/encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/encryption.js -------------------------------------------------------------------------------- /helpers/formatNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/formatNumber.js -------------------------------------------------------------------------------- /helpers/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/notify.js -------------------------------------------------------------------------------- /helpers/windowStateKeeper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/helpers/windowStateKeeper.js -------------------------------------------------------------------------------- /i18n/de/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/common.json -------------------------------------------------------------------------------- /i18n/de/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/contacts.json -------------------------------------------------------------------------------- /i18n/de/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/dialog.json -------------------------------------------------------------------------------- /i18n/de/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/form.json -------------------------------------------------------------------------------- /i18n/de/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/index.js -------------------------------------------------------------------------------- /i18n/de/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/invoices.json -------------------------------------------------------------------------------- /i18n/de/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/login.json -------------------------------------------------------------------------------- /i18n/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/messages.json -------------------------------------------------------------------------------- /i18n/de/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/preview.json -------------------------------------------------------------------------------- /i18n/de/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/settings.json -------------------------------------------------------------------------------- /i18n/de/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/statistics.json -------------------------------------------------------------------------------- /i18n/de/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/de/tour.json -------------------------------------------------------------------------------- /i18n/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/common.json -------------------------------------------------------------------------------- /i18n/en/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/contacts.json -------------------------------------------------------------------------------- /i18n/en/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/dialog.json -------------------------------------------------------------------------------- /i18n/en/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/form.json -------------------------------------------------------------------------------- /i18n/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/index.js -------------------------------------------------------------------------------- /i18n/en/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/invoices.json -------------------------------------------------------------------------------- /i18n/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/login.json -------------------------------------------------------------------------------- /i18n/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/messages.json -------------------------------------------------------------------------------- /i18n/en/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/preview.json -------------------------------------------------------------------------------- /i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/settings.json -------------------------------------------------------------------------------- /i18n/en/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/statistics.json -------------------------------------------------------------------------------- /i18n/en/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/en/tour.json -------------------------------------------------------------------------------- /i18n/esES/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/common.json -------------------------------------------------------------------------------- /i18n/esES/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/contacts.json -------------------------------------------------------------------------------- /i18n/esES/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/dialog.json -------------------------------------------------------------------------------- /i18n/esES/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/form.json -------------------------------------------------------------------------------- /i18n/esES/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/index.js -------------------------------------------------------------------------------- /i18n/esES/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/invoices.json -------------------------------------------------------------------------------- /i18n/esES/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/login.json -------------------------------------------------------------------------------- /i18n/esES/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/messages.json -------------------------------------------------------------------------------- /i18n/esES/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/preview.json -------------------------------------------------------------------------------- /i18n/esES/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/settings.json -------------------------------------------------------------------------------- /i18n/esES/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/statistics.json -------------------------------------------------------------------------------- /i18n/esES/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/esES/tour.json -------------------------------------------------------------------------------- /i18n/fr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/common.json -------------------------------------------------------------------------------- /i18n/fr/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/contacts.json -------------------------------------------------------------------------------- /i18n/fr/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/dialog.json -------------------------------------------------------------------------------- /i18n/fr/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/form.json -------------------------------------------------------------------------------- /i18n/fr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/index.js -------------------------------------------------------------------------------- /i18n/fr/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/invoices.json -------------------------------------------------------------------------------- /i18n/fr/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/login.json -------------------------------------------------------------------------------- /i18n/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/messages.json -------------------------------------------------------------------------------- /i18n/fr/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/preview.json -------------------------------------------------------------------------------- /i18n/fr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/settings.json -------------------------------------------------------------------------------- /i18n/fr/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/statistics.json -------------------------------------------------------------------------------- /i18n/fr/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/fr/tour.json -------------------------------------------------------------------------------- /i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/i18n.js -------------------------------------------------------------------------------- /i18n/id/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/common.json -------------------------------------------------------------------------------- /i18n/id/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/contacts.json -------------------------------------------------------------------------------- /i18n/id/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/dialog.json -------------------------------------------------------------------------------- /i18n/id/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/form.json -------------------------------------------------------------------------------- /i18n/id/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/index.js -------------------------------------------------------------------------------- /i18n/id/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/invoices.json -------------------------------------------------------------------------------- /i18n/id/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/login.json -------------------------------------------------------------------------------- /i18n/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/messages.json -------------------------------------------------------------------------------- /i18n/id/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/preview.json -------------------------------------------------------------------------------- /i18n/id/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/settings.json -------------------------------------------------------------------------------- /i18n/id/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/statistics.json -------------------------------------------------------------------------------- /i18n/id/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/id/tour.json -------------------------------------------------------------------------------- /i18n/it/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/common.json -------------------------------------------------------------------------------- /i18n/it/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/contacts.json -------------------------------------------------------------------------------- /i18n/it/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/dialog.json -------------------------------------------------------------------------------- /i18n/it/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/form.json -------------------------------------------------------------------------------- /i18n/it/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/index.js -------------------------------------------------------------------------------- /i18n/it/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/invoices.json -------------------------------------------------------------------------------- /i18n/it/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/login.json -------------------------------------------------------------------------------- /i18n/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/messages.json -------------------------------------------------------------------------------- /i18n/it/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/preview.json -------------------------------------------------------------------------------- /i18n/it/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/settings.json -------------------------------------------------------------------------------- /i18n/it/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/statistics.json -------------------------------------------------------------------------------- /i18n/it/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/it/tour.json -------------------------------------------------------------------------------- /i18n/nl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/common.json -------------------------------------------------------------------------------- /i18n/nl/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/contacts.json -------------------------------------------------------------------------------- /i18n/nl/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/dialog.json -------------------------------------------------------------------------------- /i18n/nl/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/form.json -------------------------------------------------------------------------------- /i18n/nl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/index.js -------------------------------------------------------------------------------- /i18n/nl/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/invoices.json -------------------------------------------------------------------------------- /i18n/nl/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/login.json -------------------------------------------------------------------------------- /i18n/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/messages.json -------------------------------------------------------------------------------- /i18n/nl/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/preview.json -------------------------------------------------------------------------------- /i18n/nl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/settings.json -------------------------------------------------------------------------------- /i18n/nl/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/statistics.json -------------------------------------------------------------------------------- /i18n/nl/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/nl/tour.json -------------------------------------------------------------------------------- /i18n/ro/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/common.json -------------------------------------------------------------------------------- /i18n/ro/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/contacts.json -------------------------------------------------------------------------------- /i18n/ro/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/dialog.json -------------------------------------------------------------------------------- /i18n/ro/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/form.json -------------------------------------------------------------------------------- /i18n/ro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/index.js -------------------------------------------------------------------------------- /i18n/ro/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/invoices.json -------------------------------------------------------------------------------- /i18n/ro/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/login.json -------------------------------------------------------------------------------- /i18n/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/messages.json -------------------------------------------------------------------------------- /i18n/ro/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/preview.json -------------------------------------------------------------------------------- /i18n/ro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/settings.json -------------------------------------------------------------------------------- /i18n/ro/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/statistics.json -------------------------------------------------------------------------------- /i18n/ro/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ro/tour.json -------------------------------------------------------------------------------- /i18n/sk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/common.json -------------------------------------------------------------------------------- /i18n/sk/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/contacts.json -------------------------------------------------------------------------------- /i18n/sk/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/dialog.json -------------------------------------------------------------------------------- /i18n/sk/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/form.json -------------------------------------------------------------------------------- /i18n/sk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/index.js -------------------------------------------------------------------------------- /i18n/sk/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/invoices.json -------------------------------------------------------------------------------- /i18n/sk/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/login.json -------------------------------------------------------------------------------- /i18n/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/messages.json -------------------------------------------------------------------------------- /i18n/sk/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/preview.json -------------------------------------------------------------------------------- /i18n/sk/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/settings.json -------------------------------------------------------------------------------- /i18n/sk/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/statistics.json -------------------------------------------------------------------------------- /i18n/sk/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sk/tour.json -------------------------------------------------------------------------------- /i18n/sr-CS/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/common.json -------------------------------------------------------------------------------- /i18n/sr-CS/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/contacts.json -------------------------------------------------------------------------------- /i18n/sr-CS/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/dialog.json -------------------------------------------------------------------------------- /i18n/sr-CS/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/form.json -------------------------------------------------------------------------------- /i18n/sr-CS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/index.js -------------------------------------------------------------------------------- /i18n/sr-CS/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/invoices.json -------------------------------------------------------------------------------- /i18n/sr-CS/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/login.json -------------------------------------------------------------------------------- /i18n/sr-CS/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/messages.json -------------------------------------------------------------------------------- /i18n/sr-CS/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/preview.json -------------------------------------------------------------------------------- /i18n/sr-CS/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/settings.json -------------------------------------------------------------------------------- /i18n/sr-CS/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/statistics.json -------------------------------------------------------------------------------- /i18n/sr-CS/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr-CS/tour.json -------------------------------------------------------------------------------- /i18n/sr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/common.json -------------------------------------------------------------------------------- /i18n/sr/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/contacts.json -------------------------------------------------------------------------------- /i18n/sr/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/dialog.json -------------------------------------------------------------------------------- /i18n/sr/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/form.json -------------------------------------------------------------------------------- /i18n/sr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/index.js -------------------------------------------------------------------------------- /i18n/sr/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/invoices.json -------------------------------------------------------------------------------- /i18n/sr/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/login.json -------------------------------------------------------------------------------- /i18n/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/messages.json -------------------------------------------------------------------------------- /i18n/sr/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/preview.json -------------------------------------------------------------------------------- /i18n/sr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/settings.json -------------------------------------------------------------------------------- /i18n/sr/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/statistics.json -------------------------------------------------------------------------------- /i18n/sr/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/sr/tour.json -------------------------------------------------------------------------------- /i18n/ur-PK/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/common.json -------------------------------------------------------------------------------- /i18n/ur-PK/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/contacts.json -------------------------------------------------------------------------------- /i18n/ur-PK/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/dialog.json -------------------------------------------------------------------------------- /i18n/ur-PK/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/form.json -------------------------------------------------------------------------------- /i18n/ur-PK/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/index.js -------------------------------------------------------------------------------- /i18n/ur-PK/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/invoices.json -------------------------------------------------------------------------------- /i18n/ur-PK/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/login.json -------------------------------------------------------------------------------- /i18n/ur-PK/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/messages.json -------------------------------------------------------------------------------- /i18n/ur-PK/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/preview.json -------------------------------------------------------------------------------- /i18n/ur-PK/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/settings.json -------------------------------------------------------------------------------- /i18n/ur-PK/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/statistics.json -------------------------------------------------------------------------------- /i18n/ur-PK/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/ur-PK/tour.json -------------------------------------------------------------------------------- /i18n/vi/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/common.json -------------------------------------------------------------------------------- /i18n/vi/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/contacts.json -------------------------------------------------------------------------------- /i18n/vi/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/dialog.json -------------------------------------------------------------------------------- /i18n/vi/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/form.json -------------------------------------------------------------------------------- /i18n/vi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/index.js -------------------------------------------------------------------------------- /i18n/vi/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/invoices.json -------------------------------------------------------------------------------- /i18n/vi/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/login.json -------------------------------------------------------------------------------- /i18n/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/messages.json -------------------------------------------------------------------------------- /i18n/vi/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/preview.json -------------------------------------------------------------------------------- /i18n/vi/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/settings.json -------------------------------------------------------------------------------- /i18n/vi/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/statistics.json -------------------------------------------------------------------------------- /i18n/vi/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/vi/tour.json -------------------------------------------------------------------------------- /i18n/zh-CN/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/common.json -------------------------------------------------------------------------------- /i18n/zh-CN/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/contacts.json -------------------------------------------------------------------------------- /i18n/zh-CN/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/dialog.json -------------------------------------------------------------------------------- /i18n/zh-CN/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/form.json -------------------------------------------------------------------------------- /i18n/zh-CN/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/index.js -------------------------------------------------------------------------------- /i18n/zh-CN/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/invoices.json -------------------------------------------------------------------------------- /i18n/zh-CN/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/login.json -------------------------------------------------------------------------------- /i18n/zh-CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/messages.json -------------------------------------------------------------------------------- /i18n/zh-CN/preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/preview.json -------------------------------------------------------------------------------- /i18n/zh-CN/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/settings.json -------------------------------------------------------------------------------- /i18n/zh-CN/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/statistics.json -------------------------------------------------------------------------------- /i18n/zh-CN/tour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/i18n/zh-CN/tour.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/jest.setup.js -------------------------------------------------------------------------------- /jest.shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/jest.shim.js -------------------------------------------------------------------------------- /libs/__mocks__/sounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/libs/__mocks__/sounds.js -------------------------------------------------------------------------------- /libs/__tests__/sounds.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/libs/__tests__/sounds.spec.js -------------------------------------------------------------------------------- /libs/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/libs/currencies.json -------------------------------------------------------------------------------- /libs/dragNdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/libs/dragNdrop.js -------------------------------------------------------------------------------- /libs/paymentTerms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/libs/paymentTerms.js -------------------------------------------------------------------------------- /libs/sounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/libs/sounds.js -------------------------------------------------------------------------------- /main/auto-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/auto-start.js -------------------------------------------------------------------------------- /main/deep-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/deep-link.js -------------------------------------------------------------------------------- /main/e2ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/e2ee.js -------------------------------------------------------------------------------- /main/export-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/export-data.js -------------------------------------------------------------------------------- /main/preview-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/preview-window.js -------------------------------------------------------------------------------- /main/save-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/save-pdf.js -------------------------------------------------------------------------------- /main/select-export-directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/select-export-directory.js -------------------------------------------------------------------------------- /main/select-import-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/select-import-file.js -------------------------------------------------------------------------------- /main/select-logo-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/select-logo-file.js -------------------------------------------------------------------------------- /main/tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/tour.js -------------------------------------------------------------------------------- /main/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/tray.js -------------------------------------------------------------------------------- /main/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/main/updater.js -------------------------------------------------------------------------------- /modal/Dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/modal/Dialog.jsx -------------------------------------------------------------------------------- /modal/helpers/external_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/modal/helpers/external_links.js -------------------------------------------------------------------------------- /modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/modal/index.jsx -------------------------------------------------------------------------------- /modal/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/modal/modal.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/package.json -------------------------------------------------------------------------------- /preview/Viewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/Viewer.jsx -------------------------------------------------------------------------------- /preview/actions/__test__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/actions/__test__/index.spec.js -------------------------------------------------------------------------------- /preview/actions/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/actions/index.jsx -------------------------------------------------------------------------------- /preview/components/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/shared/index.js -------------------------------------------------------------------------------- /preview/components/sidebar/AccentColor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/AccentColor.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/Actions.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/Alignment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/Alignment.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/DateFormat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/DateFormat.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/FontSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/FontSize.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/Language.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/Language.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/LogoSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/LogoSize.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/Template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/Template.jsx -------------------------------------------------------------------------------- /preview/components/sidebar/Toggler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/components/sidebar/Toggler.jsx -------------------------------------------------------------------------------- /preview/constants/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/constants/actions.jsx -------------------------------------------------------------------------------- /preview/containers/MainContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/containers/MainContent.jsx -------------------------------------------------------------------------------- /preview/containers/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/containers/SideBar.jsx -------------------------------------------------------------------------------- /preview/helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/helper/index.js -------------------------------------------------------------------------------- /preview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/index.jsx -------------------------------------------------------------------------------- /preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/preview.html -------------------------------------------------------------------------------- /preview/reducers/__test__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/reducers/__test__/index.spec.js -------------------------------------------------------------------------------- /preview/reducers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/reducers/index.jsx -------------------------------------------------------------------------------- /preview/templates/business/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/business/components/Footer.jsx -------------------------------------------------------------------------------- /preview/templates/business/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/business/components/Header.jsx -------------------------------------------------------------------------------- /preview/templates/business/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/business/components/Logo.jsx -------------------------------------------------------------------------------- /preview/templates/business/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/business/components/Main.jsx -------------------------------------------------------------------------------- /preview/templates/business/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/business/index.jsx -------------------------------------------------------------------------------- /preview/templates/businessQuote/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/businessQuote/components/Footer.jsx -------------------------------------------------------------------------------- /preview/templates/businessQuote/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/businessQuote/components/Header.jsx -------------------------------------------------------------------------------- /preview/templates/businessQuote/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/businessQuote/components/Logo.jsx -------------------------------------------------------------------------------- /preview/templates/businessQuote/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/businessQuote/components/Main.jsx -------------------------------------------------------------------------------- /preview/templates/businessQuote/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/businessQuote/index.jsx -------------------------------------------------------------------------------- /preview/templates/minimal/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/minimal/components/Footer.jsx -------------------------------------------------------------------------------- /preview/templates/minimal/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/minimal/components/Header.jsx -------------------------------------------------------------------------------- /preview/templates/minimal/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/minimal/components/Main.jsx -------------------------------------------------------------------------------- /preview/templates/minimal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/preview/templates/minimal/index.jsx -------------------------------------------------------------------------------- /scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/scripts/notarize.js -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/contact.css: -------------------------------------------------------------------------------- 1 | .contact { 2 | border: 1px solid #f2f3f4; 3 | margin-bottom: 30px; 4 | } 5 | -------------------------------------------------------------------------------- /static/css/date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/date-picker.css -------------------------------------------------------------------------------- /static/css/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/form.css -------------------------------------------------------------------------------- /static/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/general.css -------------------------------------------------------------------------------- /static/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/ionicons.min.css -------------------------------------------------------------------------------- /static/css/items.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/items.css -------------------------------------------------------------------------------- /static/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/layout.css -------------------------------------------------------------------------------- /static/css/preview/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/preview/font.css -------------------------------------------------------------------------------- /static/css/preview/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/preview/print.css -------------------------------------------------------------------------------- /static/css/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/css/tooltip.css -------------------------------------------------------------------------------- /static/fonts/Lora/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/Lora/Lora-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/SourceSerifPro/SourceSerifPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/SourceSerifPro/SourceSerifPro-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/ionicons.eot -------------------------------------------------------------------------------- /static/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/ionicons.svg -------------------------------------------------------------------------------- /static/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/ionicons.ttf -------------------------------------------------------------------------------- /static/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/fonts/ionicons.woff -------------------------------------------------------------------------------- /static/imgs/Grises.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/imgs/Grises.svg -------------------------------------------------------------------------------- /static/imgs/default_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/imgs/default_logo.svg -------------------------------------------------------------------------------- /static/imgs/tray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/imgs/tray_icon.png -------------------------------------------------------------------------------- /static/sounds/cs/add.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/add.wav -------------------------------------------------------------------------------- /static/sounds/cs/dialog.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/dialog.wav -------------------------------------------------------------------------------- /static/sounds/cs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/index.js -------------------------------------------------------------------------------- /static/sounds/cs/reload.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/reload.wav -------------------------------------------------------------------------------- /static/sounds/cs/remove.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/remove.wav -------------------------------------------------------------------------------- /static/sounds/cs/startup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/startup.wav -------------------------------------------------------------------------------- /static/sounds/cs/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/success.wav -------------------------------------------------------------------------------- /static/sounds/cs/tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/tap.wav -------------------------------------------------------------------------------- /static/sounds/cs/warning.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/cs/warning.wav -------------------------------------------------------------------------------- /static/sounds/default/add.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/add.wav -------------------------------------------------------------------------------- /static/sounds/default/dialog.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/dialog.wav -------------------------------------------------------------------------------- /static/sounds/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/index.js -------------------------------------------------------------------------------- /static/sounds/default/reload.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/reload.wav -------------------------------------------------------------------------------- /static/sounds/default/remove.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/remove.wav -------------------------------------------------------------------------------- /static/sounds/default/startup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/startup.wav -------------------------------------------------------------------------------- /static/sounds/default/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/success.wav -------------------------------------------------------------------------------- /static/sounds/default/tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/tap.wav -------------------------------------------------------------------------------- /static/sounds/default/warning.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/default/warning.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/attack.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/attack.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/endermen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/endermen.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/evocation.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/evocation.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/fireworks.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/fireworks.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/index.js -------------------------------------------------------------------------------- /static/sounds/minecraft/opendoor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/opendoor.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/pop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/pop.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/ravarger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/ravarger.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/step.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/vex.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/vex.wav -------------------------------------------------------------------------------- /static/sounds/minecraft/villager.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/static/sounds/minecraft/villager.wav -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/test/spec.js -------------------------------------------------------------------------------- /tour/Tour.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/Tour.jsx -------------------------------------------------------------------------------- /tour/components/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/Actions.jsx -------------------------------------------------------------------------------- /tour/components/Slide.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/Slide.jsx -------------------------------------------------------------------------------- /tour/components/slides/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/slides/Create.jsx -------------------------------------------------------------------------------- /tour/components/slides/Encryption.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/slides/Encryption.jsx -------------------------------------------------------------------------------- /tour/components/slides/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/slides/Preview.jsx -------------------------------------------------------------------------------- /tour/components/slides/Save.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/slides/Save.jsx -------------------------------------------------------------------------------- /tour/components/slides/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/slides/Success.jsx -------------------------------------------------------------------------------- /tour/components/slides/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/components/slides/Welcome.jsx -------------------------------------------------------------------------------- /tour/containers/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/containers/Slider.jsx -------------------------------------------------------------------------------- /tour/imgs/Create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/Create.svg -------------------------------------------------------------------------------- /tour/imgs/Preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/Preview.svg -------------------------------------------------------------------------------- /tour/imgs/Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/Save.svg -------------------------------------------------------------------------------- /tour/imgs/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/Success.svg -------------------------------------------------------------------------------- /tour/imgs/Templates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/Templates.svg -------------------------------------------------------------------------------- /tour/imgs/Welcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/Welcome.svg -------------------------------------------------------------------------------- /tour/imgs/encryption.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/imgs/encryption.svg -------------------------------------------------------------------------------- /tour/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/index.jsx -------------------------------------------------------------------------------- /tour/tour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/tour/tour.html -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndresMorelos/Invoncify/HEAD/yarn.lock --------------------------------------------------------------------------------