Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[_]: feat/modify get contents in syncManager using exists and trashed #467

Merged
merged 30 commits into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
582ee72
dani
Feb 8, 2024
d0c16f1
Merge branch 'monitoring-polling-system' of github.com:internxt/drive…
Feb 8, 2024
9a00844
a
Feb 13, 2024
cbdcd67
Merge branch 'feat/fully-sync-update' of github.com:internxt/drive-de…
Feb 13, 2024
c031541
a
Feb 28, 2024
79fea11
a
Feb 29, 2024
fecdb2e
modify get contents in syncManager using exists and trashed
migueldesarrollosoftware Mar 8, 2024
e3a35b4
fix: allows only existing files in traverser
cg27shokworks Mar 8, 2024
db33ce9
fix: unlink removed files from tree
cg27shokworks Mar 8, 2024
a0dbef7
fix: manage corner case
cg27shokworks Mar 8, 2024
9120d06
extend status of file and folder to init traverse
migueldesarrollosoftware Mar 8, 2024
6ca0957
feat: It includes a mechanism to change the states considered by the …
cg27shokworks Mar 11, 2024
a079317
feat: get trashed folders and files from tree
cg27shokworks Mar 12, 2024
1e3128e
chore: clean up
cg27shokworks Mar 12, 2024
8e1b035
modify fetch items to retrieve all items
migueldesarrollosoftware Mar 12, 2024
670d1a1
remove fetch by status trashed and exists
migueldesarrollosoftware Mar 12, 2024
79758ff
feat: include file and folder deleter
cg27shokworks Mar 14, 2024
95bde85
feat: include file and folder checking
cg27shokworks Mar 14, 2024
f6e192e
wip
cg27shokworks Mar 15, 2024
8e1f797
Merge branch 'monitoring-polling-system' of github.com:internxt/drive…
Mar 15, 2024
cfe30c7
Merge branch 'feat/remove-register-localdb-on-trash' of github.com:in…
Mar 15, 2024
4a8f229
delete file when in remote is trashed
Mar 15, 2024
65ad4e7
feat: validate before delete
cg27shokworks Mar 15, 2024
d53251e
fix: cration of placehjolders
migueldesarrollosoftware Mar 15, 2024
60f2ee9
fix: delete
cg27shokworks Mar 15, 2024
8833f09
feat: apply double check in folder deletion
cg27shokworks Mar 16, 2024
da9eb9c
fix: modify order to create placholder
migueldesarrollosoftware Mar 18, 2024
aae2061
feat: change to release 2.0.6
migueldesarrollosoftware Mar 18, 2024
6ec8a49
fix: remove issues
migueldesarrollosoftware Mar 18, 2024
d255cb0
fix: change dependencies nodewin link
migueldesarrollosoftware Mar 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx yarn run lint
npx yarn run type-check
# npx yarn run lint
# npx yarn run type-check
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.format": true
"source.fixAll.eslint": "explicit",
"source.fixAll.format": "explicit"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "internxt-drive",
"version": "2.0.5",
"version": "2.0.6",
"author": "Internxt <[email protected]>",
"description": "Internxt Drive client UI",
"license": "AGPL-3.0",
Expand Down Expand Up @@ -28,7 +28,7 @@
"test:e2e": "playwright test --config=src/test",
"type-check": "tsc --noEmit --pretty --skipLibCheck",
"prepare": "husky install",
"reload-virtual-drive": "cd release/app && yarn reload-virtual-drive && cd ../.. && yarn",
"reload-virtual-drive": "cd release/app && npm run reload-virtual-drive && cd ../.. && npm i",
"start:reload-bindings": "npm run reload-virtual-drive && npm run start"
},
"lint-staged": {
Expand Down Expand Up @@ -242,7 +242,6 @@
"react-refresh": "^0.11.0",
"react-refresh-typescript": "^2.0.3",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.45.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
Expand Down
Loading
Loading