Skip to content

Commit 1ed8b7d

Browse files
committed
Release v2.1.0 - Multilingual Fixes
- Version bump, update docs
1 parent 00ee1c9 commit 1ed8b7d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ The dropdown should automatically get populated with the languages that the prof
3737

3838
> Note: LinkedIn offers language choices through [a `Locale` string](https://developer.linkedin.com/docs/ref/v2/object-types#LocaleString), which is a combination of `country` (ISO-3166) and `language` (ISO-639). I do not make decisions as to what languages are supported.
3939
40+
> This feature is the part of this extension most likely to break in the future; LI has some serious quirks around multilingual profiles - see [my notes](./LinkedIn-Notes.md#voyager---multilingual-and-locales-support) for details.
41+
4042
### Export Options
4143
There are several main buttons in the browser extension, with different effects. You can hover over each button to see the alt text describing what they do, or read below:
4244
- *LinkedIn Profile to JSON*: Converts the profile to the JSON Resume format, and then displays it in a popup modal for easy copying and pasting
@@ -71,6 +73,7 @@ When in doubt, refresh the profile page before using this tool.
7173
## Updates:
7274
Date | Release | Notes
7375
--- | --- | ---
76+
12/7/2020 | 2.1.0 | Fix: Issue with multilingual profile, when exporting your own profile with a different locale than your profile's default. ([#37](https://github.com/joshuatz/linkedin-to-jsonresume/pull/37))
7477
11/12/2020 | 2.0.0 | Support for multiple schema versions ✨ ([#34](https://github.com/joshuatz/linkedin-to-jsonresume/pull/34))
7578
11/8/2020 | 1.5.1 | Fix: Omit partial BDAY export in vCard ([#32](https://github.com/joshuatz/linkedin-to-jsonresume/issues/32))
7679
10/22/2020 | 1.5.0 | Fix: Incorrect birthday month in exported vCards (off by one)<br>Fix: Better pattern for extracting profile ID from URL, fixes extracting from virtual sub-pages of profile (e.g. `/detail/contact-info`), or with query or hash strings at the end.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkedin-to-json-resume-exporter",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "Browser tool to grab details from your open LinkedIn profile page and export to JSON Resume Schema",
55
"private": true,
66
"main": "src/main.js",
@@ -15,7 +15,10 @@
1515
"package-browserext": "node ./build-scripts/prep-dirs.js && npm run build-browserext && node ./build-scripts/package-browserext.js",
1616
"copy-debug-js-win": "yarn build-browserext-debug && less build/main.js | CLIP"
1717
},
18-
"author": "Joshua Tzucker",
18+
"author": {
19+
"name": "Joshua Tzucker",
20+
"url": "https://joshuatz.com/?utm_source=package"
21+
},
1922
"license": "MIT",
2023
"devDependencies": {
2124
"@babel/cli": "^7.12.1",

0 commit comments

Comments
 (0)