Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sinaatalay committed Jul 23, 2024
2 parents 3ba1de5 + 0f23656 commit 1c930a4
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 17 deletions.
Binary file modified docs/assets/images/classic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/engineeringresumes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/moderncv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/sb2nov.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified examples/John_Doe_ClassicTheme_CV.pdf
Binary file not shown.
5 changes: 2 additions & 3 deletions examples/John_Doe_ClassicTheme_CV.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cv:
start_date: 2000-09
end_date: 2005-05
highlights:
- 'GPA: 3.9/4.0 ([Transcript](https://example.com))'
- 'GPA: 3.9/4.0 ([a link to somewhere](https://example.com))'
- '**Coursework:** Computer Architecture, Comparison
of Learning Algorithms, Computational Theory'
experience:
Expand Down Expand Up @@ -140,5 +140,4 @@ design:
vertical_between_name_and_connections: 0.3 cm
bottom: 0.3 cm
horizontal_between_connections: 0.5 cm
show_timespan_in:
- Experience
show_timespan_in: []
Binary file modified examples/John_Doe_EngineeringresumesTheme_CV.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/John_Doe_EngineeringresumesTheme_CV.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cv:
start_date: 2000-09
end_date: 2005-05
highlights:
- 'GPA: 3.9/4.0 ([Transcript](https://example.com))'
- 'GPA: 3.9/4.0 ([a link to somewhere](https://example.com))'
- '**Coursework:** Computer Architecture, Comparison
of Learning Algorithms, Computational Theory'
experience:
Expand Down
Binary file modified examples/John_Doe_ModerncvTheme_CV.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/John_Doe_ModerncvTheme_CV.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cv:
start_date: 2000-09
end_date: 2005-05
highlights:
- 'GPA: 3.9/4.0 ([Transcript](https://example.com))'
- 'GPA: 3.9/4.0 ([a link to somewhere](https://example.com))'
- '**Coursework:** Computer Architecture, Comparison
of Learning Algorithms, Computational Theory'
experience:
Expand Down
Binary file modified examples/John_Doe_Sb2novTheme_CV.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/John_Doe_Sb2novTheme_CV.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cv:
start_date: 2000-09
end_date: 2005-05
highlights:
- 'GPA: 3.9/4.0 ([Transcript](https://example.com))'
- 'GPA: 3.9/4.0 ([a link to somewhere](https://example.com))'
- '**Coursework:** Computer Architecture, Comparison
of Learning Algorithms, Computational Theory'
experience:
Expand Down
37 changes: 26 additions & 11 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,16 +202,6 @@
}
]
},
"label": {
"default": null,
"description": "The label of the person.",
"title": "Label",
"oneOf": [
{
"type": "string"
}
]
},
"location": {
"default": null,
"description": "The location of the person.",
Expand All @@ -235,7 +225,7 @@
},
"phone": {
"default": null,
"description": "The phone number of the person.",
"description": "The phone number of the person, including the country code.",
"title": "Phone",
"oneOf": [
{
Expand Down Expand Up @@ -928,6 +918,31 @@
"additionalProperties": false,
"description": "This class is the data model of the locale catalog. The values of each field\nupdates the `locale_catalog` dictionary.",
"properties": {
"phone_number_format": {
"default": "national",
"description": "If 'national', phone numbers are formatted without the country code. If 'international', phone numbers are formatted with the country code. The default value is 'national'.",
"title": "Phone Number Format",
"oneOf": [
{
"enum": [
"national",
"international",
"E164"
],
"type": "string"
}
]
},
"date_style": {
"default": "MONTH_ABBREVIATION YEAR",
"description": "The style of the date. The following placeholder can be used:\n- FULL_MONTH_NAME: Full name of the month\n- MONTH_ABBREVIATION: Abbreviation of the month\n- MONTH: Month as a number\n- MONTH_IN_TWO_DIGITS: Month as a number in two digits\n- YEAR: Year as a number\n- YEAR_IN_TWO_DIGITS: Year as a number in two digits\nThe default value is \"MONTH_ABBREVIATION YEAR\".",
"title": "Date Style",
"oneOf": [
{
"type": "string"
}
]
},
"month": {
"default": "month",
"description": "Translation of the word \"month\" in the locale.",
Expand Down

0 comments on commit 1c930a4

Please sign in to comment.