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

Adding support for profile photo #193

Merged
merged 32 commits into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
415c403
feat: adding "photo" in CurriculumVitae model
Nov 1, 2024
04f7103
feat: loading "HeaderWithPhoto" template if photo is available
Nov 1, 2024
b607764
template[sb2nov]: added HeaderWithPhoto.j2.tex template
Nov 1, 2024
5cf2c80
lint: linted files
Nov 1, 2024
f881993
Revert "feat: loading "HeaderWithPhoto" template if photo is available"
Nov 1, 2024
3092354
template[sb2nov]: merged Header.j2.tex and HeaderWithPhoto.j2.tex aft…
Nov 1, 2024
4f43850
template[moderncv]: added photo in template
Nov 1, 2024
3484712
fix,template[moderncv]: added check if photo is present
Nov 1, 2024
fad58a2
template[markdown]: added photo support
Nov 1, 2024
a8193fc
feat: adding support to relative path in templates
Nov 1, 2024
32e7dfb
fix: fixed optional photo in pydantic model
Nov 2, 2024
03245d1
feat,template[engineeringresumes]: implemented propic
Nov 2, 2024
0ec7a8d
feat,template[engineeringresumes]: improved template
Nov 5, 2024
e871268
feat,template[classic]: implemented template
Nov 5, 2024
6a492c6
docs,template[sb2nov]: added comment
Nov 5, 2024
7c26847
fix,template: found a workaround for sourcesanspro and graphicx https…
Nov 6, 2024
2178d84
fix: using context to manage in a clean way dynamic parameters passin…
Nov 7, 2024
d6ab1b5
tests: fixed some tests
Nov 7, 2024
bb04ba6
templates: formatted Header.j2.tex for classic, engineeringresumes, s…
Nov 8, 2024
97a5c4c
tests: fixed test_create_a_latex_file and test_create_a_latex_file_an…
Nov 8, 2024
8cbec38
tests: fixed all tests and examples
Nov 10, 2024
29e0645
fix: fixed paths for Windows: path in latex should always be in unix …
Nov 10, 2024
d32709d
tests: improved test code quality
Nov 10, 2024
14095af
tests: fixed test_copy_theme_files_to_output_directory test
Nov 10, 2024
ae66cda
Sina's updates
sinaatalay Dec 24, 2024
b474183
resolve formatting issues
sinaatalay Dec 24, 2024
8a72177
set `update_testdata` to False
sinaatalay Dec 24, 2024
56e2c48
don't use the profile picture in markdown
sinaatalay Dec 24, 2024
440f61d
set update_testdata to False
sinaatalay Dec 24, 2024
58c7925
fix photo issues
sinaatalay Dec 24, 2024
d08bf7e
fix moderncv
sinaatalay Dec 25, 2024
b898e14
fix INPUT_FILE_DIRECTORY
sinaatalay Dec 25, 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
Prev Previous commit
Next Next commit
resolve formatting issues
  • Loading branch information
sinaatalay committed Dec 24, 2024
commit b474183fa8bb9621787f198af1c64c7da23da06e
2 changes: 1 addition & 1 deletion rendercv/data/models/curriculum_vitae.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"""

import functools
import re
import pathlib
import re
from typing import Annotated, Any, Literal, Optional, get_args

import pydantic
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import shutil
import typing
import urllib.request

from typing import Optional

import jinja2
Expand Down
Loading