diff --git a/README.md b/README.md index c03c210..fd09204 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,8 @@ The dropdown should automatically get populated with the languages that the prof > 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. +> 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. + ### Export Options 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: - *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. ## Updates: Date | Release | Notes --- | --- | --- +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)) 11/12/2020 | 2.0.0 | Support for multiple schema versions ✨ ([#34](https://github.com/joshuatz/linkedin-to-jsonresume/pull/34)) 11/8/2020 | 1.5.1 | Fix: Omit partial BDAY export in vCard ([#32](https://github.com/joshuatz/linkedin-to-jsonresume/issues/32)) 10/22/2020 | 1.5.0 | Fix: Incorrect birthday month in exported vCards (off by one)
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. diff --git a/package-lock.json b/package-lock.json index b2b6612..c443c88 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "linkedin-to-json-resume-exporter", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0108d86..5bab75e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "linkedin-to-json-resume-exporter", - "version": "2.0.0", + "version": "2.1.0", "description": "Browser tool to grab details from your open LinkedIn profile page and export to JSON Resume Schema", "private": true, "main": "src/main.js", @@ -15,7 +15,10 @@ "package-browserext": "node ./build-scripts/prep-dirs.js && npm run build-browserext && node ./build-scripts/package-browserext.js", "copy-debug-js-win": "yarn build-browserext-debug && less build/main.js | CLIP" }, - "author": "Joshua Tzucker", + "author": { + "name": "Joshua Tzucker", + "url": "https://joshuatz.com/?utm_source=package" + }, "license": "MIT", "devDependencies": { "@babel/cli": "^7.12.1",