mirror of
https://github.com/SwingTheVine/Wplace-BlueMarble.git
synced 2026-03-11 21:26:55 +00:00
Removed incorrect version numbers
This commit is contained in:
parent
70b07b8152
commit
da77f2c55a
3 changed files with 2 additions and 9 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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', () => {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue