Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c14ee2a
Switched getProjectInfo to using websockets
bicheTortue Apr 16, 2026
0a0f5d4
The tests are ran using the local file
bicheTortue Apr 16, 2026
a8ff74a
making the file executable if it is not.
bicheTortue Apr 16, 2026
b081402
First attempt at file deletion, works but can deleted files created r…
bicheTortue Apr 16, 2026
ceb1861
Ground work for true git integration
bicheTortue Apr 16, 2026
aa5a120
not working yet, moved getClient to client.ts
bicheTortue Apr 17, 2026
37de0c5
Changed the if else sequence to switch and made a bunch of other, wor…
bicheTortue Apr 21, 2026
4bf42a6
Finished preliminary support, including clone, pull and push. Ignorin…
bicheTortue Apr 23, 2026
2d28030
Debugging when using double remotes
bicheTortue Apr 23, 2026
33d6db6
Fixed issues like: pushtime mismatch and sane new commits checks
bicheTortue Apr 24, 2026
5059243
Removed old debug lines (commented)
bicheTortue Apr 24, 2026
86cd490
Start of the work on different projects Urls
bicheTortue Apr 24, 2026
2d5f1b2
Removed unecessary comments and sanitized a bit
bicheTortue Apr 24, 2026
703e261
start of the work on commit as label
bicheTortue Apr 24, 2026
dc9c1e9
Merge branch 'main' into git-integration
bicheTortue Apr 24, 2026
805628e
Merge branch 'git-integration' of github.com:bicheTortue/olcli into g…
bicheTortue Apr 24, 2026
5163170
Fixed merging error
bicheTortue Apr 24, 2026
239153c
Removed whatever was done in 0.1.8 because it is messing up getting p…
bicheTortue Apr 24, 2026
b7490fd
Force pulling when importing, will change to checking client for newe…
bicheTortue Apr 24, 2026
4b75501
Worked on commits as labels
bicheTortue Apr 24, 2026
0e23d51
Used version 0.3.0 as a base for new client.ts, http requests
bicheTortue Apr 27, 2026
f3c9d69
Started fixing issues with time and synchronization (not done yet)
bicheTortue Apr 27, 2026
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
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Command-line interface for Overleaf — Sync, manage, and compile LaTeX projects from your terminal",
"type": "module",
"bin": {
"olcli": "dist/cli.js"
"olcli": "dist/cli.js",
"git-remote-overleaf": "dist/git-helper.js"
},
"scripts": {
"build": "tsc",
Expand Down Expand Up @@ -54,7 +55,7 @@
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.0.0",
"@types/node": "^22.19.17",
"@types/tough-cookie": "^4.0.5",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
Expand Down
Loading