Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,14 @@ node_modules
.vscode-test/
*.vsix
.env
dist/
build/
.DS_Store
coverage
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnp.*
.cache/
.idea/
*.iml
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

All notable changes to the "responsive-image-generator" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## [Unreleased] - 2025-10-26

## [Unreleased]
- Added TODO list for future enhancements and features.
- Refactored code for better maintainability.
- Improved documentation and comments throughout the codebase.
- Added icons for the extension in both light and dark themes.
- Added editor title menu option for generating responsive images from the editor view.
- Added explorer context menu option for generating responsive images from image files.

- Initial release
## [1.0.0] - 2025-09-14

- Added command for responsive image generation.
- Added support for snippet insertion.
- Added settings options for relative paths and public root folder.
7 changes: 7 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# TODO

- [x] Add right-click context menu option to generate responsive images from selected image files in the explorer.
- [x] Add editor title menu option to generate responsive images from editor view.
- [ ] Implement an editor view to preview generated responsive images before insertion and manage settings.
- [ ] Add unit tests for core functionalities like image processing and prompt handling.
- [ ] Improve error handling and user feedback for scenarios like unsupported file types or processing failures.
25 changes: 0 additions & 25 deletions config/eslint.config.mjs

This file was deleted.

13 changes: 0 additions & 13 deletions config/jsconfig.json

This file was deleted.

10 changes: 10 additions & 0 deletions eslint.config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import { defineConfig } from "eslint/config";

export default defineConfig([
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } },
{ files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
tseslint.configs.recommended,
]);
273 changes: 0 additions & 273 deletions extension.js

This file was deleted.

Binary file added media/icon-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions media/icon-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/icon-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions media/icon-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading