|
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 | +- `babel-eslint` (updated to `@babel/eslint-parser` and `@babel/core`) |
| 42 | +### Added dependencies |
| 43 | +- `@tailwindcss/forms` (replaces `@tailwindcss/custom-forms`) |
| 44 | +- `autoprefixer` |
| 45 | +- `postcss` |
| 46 | +- `@babel/core` (instead of `babel-eslint`) |
| 47 | +- `@babel/eslint-parser` (instead of `babel-eslint`) |
| 48 | +- `@vue/compiler-sfc` |
| 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 | +core-js 3.6.5 → 3.9.1 |
| 55 | +tailwindcss 1.8.10 → 2.0.4 |
| 56 | +vue 2.6.12 → 3.0.7 |
| 57 | +vue-router 3.4.3 → 4.0.5 |
| 58 | +@vue/cli-plugin-babel 4.5.6 → 5.0.0-alpha.7 |
| 59 | +@vue/cli-plugin-eslint 4.5.6 → 5.0.0-alpha.7 |
| 60 | +@vue/cli-service 4.5.6 → 5.0.0-alpha.7 |
| 61 | +eslint 6.8.0 → 7.22.0 |
| 62 | +eslint-plugin-vue 6.2.2 → 7.7.0 |
| 63 | +``` |
| 64 | +### Warning |
| 65 | +_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._ |
| 66 | +_The following warning will show when doing a clean install `npm WARN cache-loader@4.1.0 requires a peer of webpack@^4.0.0 but none is installed. You must install peer dependencies yourself.`, however it does not affect in any way the product._ |
| 67 | + |
3 | 68 | ## [1.0.0] 2020-09-29
|
4 | 69 | ### Original Release
|
5 | 70 | - Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=vn-changelog)
|
|
0 commit comments