diff --git a/src/Template.js b/src/Template.js index f915f68..17d9932 100644 --- a/src/Template.js +++ b/src/Template.js @@ -15,7 +15,6 @@ * - Provides formatted pixel count information to user interface * * @since 0.65.2 - * @version 1.1.0 - Added comprehensive pixel counting and statistical analysis system */ export default class Template { /** The constructor for the {@link Template} class with enhanced pixel tracking. @@ -44,7 +43,6 @@ export default class Template { * @param {number} [params.tileSize=1000] - The size of a tile in pixels (assumes square tiles) * @param {number} [params.pixelCount=0] - Total number of pixels in the template (calculated automatically during processing) * @since 0.65.2 - * @version 1.1.0 - Added pixelCount property for comprehensive template statistics and analysis */ constructor({ displayName = 'My template', @@ -99,7 +97,6 @@ export default class Template { * * @returns {Object} Collection of template bitmaps organized by tile coordinates * @since 0.65.4 - * @version 1.1.0 - Added comprehensive pixel counting functionality with detailed logging and statistics */ async createTemplateTiles() { console.log('Template coordinates:', this.coords); diff --git a/src/main.js b/src/main.js index da1992a..c8dacba 100644 --- a/src/main.js +++ b/src/main.js @@ -2,7 +2,7 @@ * @since 0.0.0 * * VERSION HISTORY: - * v1.1.0 - Added minimize/maximize functionality and pixel counting system + * 0.71.0 - Added minimize/maximize functionality and pixel counting system * Features added: * - Interactive minimize/maximize overlay with click-to-toggle functionality * - Fixed overlay dimensions: 60px width × 76px height in minimized state @@ -261,7 +261,6 @@ function observeBlack() { * - Status message integration * * @since 0.58.3 - * @version 1.1.0 - Added comprehensive minimize/maximize feature with fixed dimensions and enhanced UX */ function buildOverlayMain() { let isMinimized = false; // Overlay state tracker (false = maximized, true = minimized) @@ -293,7 +292,6 @@ function buildOverlayMain() { * - Provides user feedback through status messages * - Ensures proper cleanup of all style overrides when switching states * - * @since 1.1.0 - Complete minimize/maximize implementation * @param {Event} event - The click event object (implicit) */ img.addEventListener('click', () => { diff --git a/src/templateManager.js b/src/templateManager.js index e8c3dc8..85651ba 100644 --- a/src/templateManager.js +++ b/src/templateManager.js @@ -7,7 +7,7 @@ import { numberToEncoded } from "./utils"; * It serves as the central coordinator between template instances and the user interface, providing * real-time feedback on template statistics including pixel counts and rendering status. * - * ENHANCED FEATURES (v1.1.0): + * ENHANCED FEATURES: * - Real-time pixel counting and statistics display * - Intelligent template filtering based on active tiles * - Internationalized number formatting for large pixel counts @@ -28,7 +28,6 @@ import { numberToEncoded } from "./utils"; * 4. User Interface: Provides formatted statistics for status messages * * @since 0.55.8 - * @version 1.1.0 - Added comprehensive pixel counting system and enhanced statistical reporting * @example * // JSON structure for a template * { @@ -234,7 +233,6 @@ export default class TemplateManager { * @param {File} tileBlob - The pixels that are placed on a tile * @param {[number, number]} tileCoords - The tile coordinates [x, y] * @since 0.65.77 - * @version 1.1.0 - Added intelligent pixel counting and enhanced status reporting */ async drawTemplateOnTile(tileBlob, tileCoords) {