Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-15Add qa tools. CS Fix files.Patrick
2022-05-10Version bump to NC24. Update node dependencies.v1.1.4Patrick
2021-12-05Version bump to NC23. Update node dependencies.v1.1.3Patrick
2021-03-09Update metadata. Centralised algorithms for frontend.v1.1.2patrick
2021-02-28Fixes issue on files within directories. Reset tab view on fileinfo change - ↵v1.1.1patrick
NC 21 only.
2021-02-28Adding deploy script for generating tar ball.v1.1.0patrick
2021-02-28Checked nextcloud 21 compatibility.patrick
2021-02-27Switching frontend to vue. Adding crc32b algorithm.patrick
2020-12-24Add missing dependencies to package.jsonRichard Steinmetz
Signed-off-by: Richard Steinmetz <steinmetz.richard@googlemail.com>
2020-12-23Update frontend codeRichard Steinmetz
Introduce webpack to bundle required dependencies instead of relying on global libraries. Those global libraries are deprecated and will be removed soon. I tried to change the existing code as little as possible. However, the diff is huge because I fixed the indentation (tabs and spaces were mixed). Additionally, I tried to keep package.json and webpack.common.js as minimal as possible and took some inspiration from other official nextcloud apps. Npm scripts: - Production build: `npm run build` - Development build: `npm run dev` - Build and watch for changes: `npm run watch` The build script should be run before pushing a release. The source files (inside src/), installed packages (inside node_modules/) and various js configs (webpack.*.js, package*.json and babel.config.json) can be omitted from a release. Webpack will output the generated code to js/. Signed-off-by: Richard Steinmetz <steinmetz.richard@googlemail.com>