├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── icons └── appIcon.png ├── liteman-angular ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.less │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── components │ │ │ └── file-viewer │ │ │ ├── file-viewer.component.html │ │ │ ├── file-viewer.component.less │ │ │ ├── file-viewer.component.spec.ts │ │ │ └── file-viewer.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── neutralino.js │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.less │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── media ├── .gitkeep ├── liteman_prev_linux.gif ├── liteman_prev_mac.gif ├── liteman_prev_web.gif └── liteman_prev_windows.gif ├── neutralino.config.json └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/README.md -------------------------------------------------------------------------------- /icons/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/icons/appIcon.png -------------------------------------------------------------------------------- /liteman-angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/.browserslistrc -------------------------------------------------------------------------------- /liteman-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/.editorconfig -------------------------------------------------------------------------------- /liteman-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/.gitignore -------------------------------------------------------------------------------- /liteman-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/README.md -------------------------------------------------------------------------------- /liteman-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/angular.json -------------------------------------------------------------------------------- /liteman-angular/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/e2e/protractor.conf.js -------------------------------------------------------------------------------- /liteman-angular/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /liteman-angular/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/e2e/src/app.po.ts -------------------------------------------------------------------------------- /liteman-angular/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/e2e/tsconfig.json -------------------------------------------------------------------------------- /liteman-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/karma.conf.js -------------------------------------------------------------------------------- /liteman-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/package-lock.json -------------------------------------------------------------------------------- /liteman-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/package.json -------------------------------------------------------------------------------- /liteman-angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /liteman-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/app.component.html -------------------------------------------------------------------------------- /liteman-angular/src/app/app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /liteman-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /liteman-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /liteman-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /liteman-angular/src/app/components/file-viewer/file-viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/components/file-viewer/file-viewer.component.html -------------------------------------------------------------------------------- /liteman-angular/src/app/components/file-viewer/file-viewer.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/components/file-viewer/file-viewer.component.less -------------------------------------------------------------------------------- /liteman-angular/src/app/components/file-viewer/file-viewer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/components/file-viewer/file-viewer.component.spec.ts -------------------------------------------------------------------------------- /liteman-angular/src/app/components/file-viewer/file-viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/app/components/file-viewer/file-viewer.component.ts -------------------------------------------------------------------------------- /liteman-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /liteman-angular/src/assets/neutralino.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/assets/neutralino.js -------------------------------------------------------------------------------- /liteman-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /liteman-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /liteman-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/index.html -------------------------------------------------------------------------------- /liteman-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/main.ts -------------------------------------------------------------------------------- /liteman-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/polyfills.ts -------------------------------------------------------------------------------- /liteman-angular/src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/styles.less -------------------------------------------------------------------------------- /liteman-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/src/test.ts -------------------------------------------------------------------------------- /liteman-angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/tsconfig.app.json -------------------------------------------------------------------------------- /liteman-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/tsconfig.json -------------------------------------------------------------------------------- /liteman-angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/tsconfig.spec.json -------------------------------------------------------------------------------- /liteman-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/liteman-angular/tslint.json -------------------------------------------------------------------------------- /media/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/liteman_prev_linux.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/media/liteman_prev_linux.gif -------------------------------------------------------------------------------- /media/liteman_prev_mac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/media/liteman_prev_mac.gif -------------------------------------------------------------------------------- /media/liteman_prev_web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/media/liteman_prev_web.gif -------------------------------------------------------------------------------- /media/liteman_prev_windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/media/liteman_prev_windows.gif -------------------------------------------------------------------------------- /neutralino.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezri/liteman/HEAD/neutralino.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------