This project is mirrored from https://gitee.com/NQL886/lens.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 09 Nov, 2020 4 commits
-
-
chh authored
* Add webpack-dev-server (for hot module replacement) to serve statics, add HardSourceWebpackPlugin to improve re-compiling speed * Serve statics using webpack-dev-server instead of lens-proxy, redirect request of Lens.html/Lens.js to webpack-dev-server * Add react-refresh-webpack-plugin and its dep for hot-reload * Add hot-reload plugin, and make proxy redirects requests to webpackdevserver * Add hard-source webpack plugin to main process * Remove parameter 'path' of handleStaticFile * Upgarde webpack to v4 latest stable * Fix build error: plugins shouldnt be null Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
-
Miska Kaipiainen authored
Signed-off-by:
Miska Kaipiainen <miska.kaipiainen@gmail.com>
-
Roman authored
Signed-off-by:
Roman <ixrock@gmail.com>
-
chh authored
Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
-
- 07 Nov, 2020 1 commit
-
-
Roman authored
* fix: create extension instance only when enabled Signed-off-by:
Roman <ixrock@gmail.com> * mark extension.isEnabled with private modifier Signed-off-by:
Roman <ixrock@gmail.com> * try-catch errors for extension.disable() Signed-off-by:
Roman <ixrock@gmail.com> * fixes & refactoring Signed-off-by:
Roman <ixrock@gmail.com> * make ext.isBundled non optional Signed-off-by:
Roman <ixrock@gmail.com>
-
- 06 Nov, 2020 8 commits
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Lauri Nevala authored
Signed-off-by:
Lauri Nevala <lauri.nevala@gmail.com>
-
chh authored
Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
-
Miska Kaipiainen authored
Signed-off-by:
Miska Kaipiainen <miska.kaipiainen@gmail.com>
-
Alex Andreev authored
Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Mario Sarcher authored
Reworked Clusters/Settings
-
Paul Williams authored
Reworked and added screenshots to clusters/settings.md and reworked first sentence of clusters/removing-clusters.md
-
- 05 Nov, 2020 3 commits
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Mario Sarcher authored
Co-authored-by:
Steve Richards <srichards@mirantis.com> Co-authored-by:
Mario Sarcher <msarcher@mirantis.com> Co-authored-by:
steve richards <steve.james.richards@gmail.com> Co-authored-by:
Paul Williams <pawilliams@mirantis.com> Co-authored-by:
pauljwil <pauljwil@gmail.com>
-
pashevskii authored
Signed-off-by:
Pavel Ashevskii <pashevskii@mirantis.com>
-
- 04 Nov, 2020 5 commits
-
-
Roman authored
* Extensions page and menu item Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * Basic extension list view Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * Adding get userExtensions filter Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * Using WizardLayout at extension page Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * Adding search to extension page Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * Few style fixes Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * clean up Signed-off-by:
Roman <ixrock@gmail.com> * added folder-icon to open extensions in finder, refactoring Signed-off-by:
Roman <ixrock@gmail.com> * remove export warnings in dev:main, tooltip.getPosition() fix Signed-off-by:
Roman <ixrock@gmail.com> * refactoring base lens-extension.ts, added `isBundled` flag Signed-off-by:
Roman <ixrock@gmail.com> * added enabled/disable buttons Signed-off-by:
Roman <ixrock@gmail.com> * auto enable/disable extensions -- part 1 Signed-off-by:
Roman <ixrock@gmail.com> * auto enable/disable extensions -- part 2 Signed-off-by:
Roman <ixrock@gmail.com> * auto enable/disable extensions -- part 3 Signed-off-by:
Roman <ixrock@gmail.com> * auto enable/disable extensions -- part 4 Signed-off-by:
Roman <ixrock@gmail.com> * refactoring & fixes Signed-off-by:
Roman <ixrock@gmail.com> * fix: use page-layout with fullsize viewport Signed-off-by:
Roman <ixrock@gmail.com> Co-authored-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
Lauri Nevala authored
Signed-off-by:
Lauri Nevala <lauri.nevala@gmail.com>
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
chh authored
Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 03 Nov, 2020 5 commits
-
-
pashevskii authored
Signed-off-by:
Pavel Ashevskii <pashevskii@mirantis.com>
-
Alex Andreev authored
Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
chh authored
* Add @testing-library/jest-dom and @testing-library/react for writing test cases * Make eslint check __mocks__/*.ts files * Mock electron.ipcRenderer.on to prevent errors in React compoment test cases * Mock <Trans /> from @lingui/macro as a component simplely returns children components * Use optional chaining operator (?.) to avoid TypeError: Cannot read property 'replicas' of undefined * Add jest-fetch-mock for mocking global.fetch, activate for all test cases in jest.setup.ts * Add basic tests for <DeploymentScaleDialog /> to ensure it initialises/renders without errors * Add +/- button for changing desired replicas, and its test cases * Adjust the styles of +/- buttons container to make sure it aligns with the slider * Refactor after rebase from master * Use var defined in vars.scss * Add flex align-center to slider-container and remove margin-top: -4px * Use <Icon /> to replace <i/> * Add flex gaps to pl...
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 02 Nov, 2020 6 commits
-
-
Lauri Nevala authored
Signed-off-by:
Lauri Nevala <lauri.nevala@gmail.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
chh authored
* Add labler github action for auto labeling of PRs Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com> * Add new label area/ci Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com> * Auto label PR when changes on .azure-pipelines.yml and docs/**/* Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com> * Typo READEME.md > README.md Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Roman authored
* License menu item should come from an extension #1141 Signed-off-by:
Roman <ixrock@gmail.com> * fix: expose `Util.openExternal` via extensions-api Signed-off-by:
Roman <ixrock@gmail.com> * move LICENSE back to root Signed-off-by:
Roman <ixrock@gmail.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 30 Oct, 2020 8 commits
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Lauri Nevala authored
Signed-off-by:
Lauri Nevala <lauri.nevala@gmail.com>
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
Alex Andreev authored
* Status bar improvements Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com> * Removing animation visibility delay Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
Alex Andreev authored
Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
Alex Andreev authored
Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
Alex Andreev authored
Signed-off-by:
Alex Andreev <alex.andreev.email@gmail.com>
-