|
1 | 1 | # Change Log
|
2 | 2 |
|
| 3 | +## [1.1.0] 2021-03-19 |
| 4 | +### Bug fixing |
| 5 | +- Rename `master` branch to `main` |
| 6 | +- To make a lot of our changes, we've followed the instructions from here (minus the `colors` and `font-sizes`): https://tailwindcss.com/docs/upgrading-to-v2 |
| 7 | + - For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-gray-{number}` classes were renamed to `{type}-blueGray-{number}` |
| 8 | + - After that, we've changed `{type}-blueGray-{number}` to `{type}-blueGray-{lower-number}`, i.e. (`100` became `50`, `200` became `100`, ..., `900` became `800`) |
| 9 | + - You can achieve this, by search in your whole project for `blueGray-100` and replace it with `blueGray-50` |
| 10 | + - Then, you search in your whole project for `blueGray-200` and replace it with `blueGray-100` |
| 11 | + - Then, you search in your whole project for `blueGray-300` and replace it with `blueGray-200` |
| 12 | + - Then, you search in your whole project for `blueGray-400` and replace it with `blueGray-300` |
| 13 | + - Then, you search in your whole project for `blueGray-500` and replace it with `blueGray-400` |
| 14 | + - Then, you search in your whole project for `blueGray-600` and replace it with `blueGray-500` |
| 15 | + - Then, you search in your whole project for `blueGray-700` and replace it with `blueGray-600` |
| 16 | + - Then, you search in your whole project for `blueGray-800` and replace it with `blueGray-700` |
| 17 | + - Then, you search in your whole project for `blueGray-900` and replace it with `blueGray-800` |
| 18 | + - For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-blue-{number}` classes were renamed to `{type}-lightBlue-{number}` |
| 19 | + - For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-green-{number}` classes were renamed to `{type}-emerald-{number}` |
| 20 | +- `lg:bg-transparent` is not working anymore, so we've changed it with `lg:bg-opacity-0` |
| 21 | +- https://github.com/creativetimofficial/notus-angular/issues/4 |
| 22 | +- https://github.com/creativetimofficial/notus-js/issues/4 |
| 23 | +- https://github.com/creativetimofficial/notus-js/pull/5 |
| 24 | +- https://github.com/creativetimofficial/notus-js/pull/6 |
| 25 | +- https://github.com/creativetimofficial/notus-nextjs/issues/6 |
| 26 | +- https://github.com/creativetimofficial/notus-nextjs/issues/7 |
| 27 | +- https://github.com/creativetimofficial/notus-nextjs/issues/8 |
| 28 | +- https://github.com/creativetimofficial/notus-react/issues/3 |
| 29 | +- https://github.com/creativetimofficial/notus-svelte/issues/3 |
| 30 | +- https://github.com/creativetimofficial/notus-svelte/issues/6 |
| 31 | +- https://github.com/creativetimofficial/vue-notus/pull/4/ |
| 32 | +### Major style changes |
| 33 | +- The upgrade of Tailwind CSS from version 1 to version 2, will cause multiple style changes, check them out on the official Tailwind CSS websites: |
| 34 | + - https://blog.tailwindcss.com/tailwindcss-v2 |
| 35 | + - https://tailwindcss.com/ |
| 36 | + - https://tailwindcss.com/docs/upgrading-to-v2 |
| 37 | +### Deleted components |
| 38 | +### Added components |
| 39 | +### Deleted dependencies |
| 40 | +- `@tailwindcss/custom-forms` |
| 41 | +- `react-google-maps` (replaced by simple Google Maps API) |
| 42 | +- `@types/googlemaps` (dependencies of `react-google-maps`) |
| 43 | +- `@types/markerclustererplus` (dependencies of `react-google-maps`) |
| 44 | +- `@types/react` (dependencies of `react-google-maps`) |
| 45 | +### Added dependencies |
| 46 | +- `@tailwindcss/forms` (replaces `@tailwindcss/custom-forms`) |
| 47 | +- `autoprefixer` |
| 48 | +- `postcss` |
| 49 | +### Updated dependencies |
| 50 | +``` |
| 51 | +@fortawesome/fontawesome-free 5.14.0 → 5.15.3 |
| 52 | +@popperjs/core 2.5.1 → 2.9.1 |
| 53 | +chart.js 2.9.3 → 2.9.4 |
| 54 | +react 16.13.1 → 17.0.1 |
| 55 | +react-dom 16.13.1 → 17.0.1 |
| 56 | +react-scripts 3.4.3 → 4.0.3 |
| 57 | +tailwindcss 1.8.10 → 2.0.4 |
| 58 | +typescript 4.0.3 → 4.2.3 |
| 59 | +``` |
| 60 | +### Warning |
| 61 | +_On a clean install there may be some warnings from request, chokidar, fsevents - they come from node_modules, and they do not affect the product at all._ |
| 62 | + |
3 | 63 | ## [1.0.0] 2020-09-29
|
4 | 64 | ### Original Release
|
5 | 65 | - Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=nr-changelog)
|
|
0 commit comments