Compare commits

...

5 commits

Author SHA1 Message Date
juliandescottes
decd91dc75 release: bump to version 0.13.0 2017-10-22 00:41:49 +02:00
juliandescottes
21cf0e072b release: bump version to 0.13.0-RC2 2017-10-22 00:38:29 +02:00
juliandescottes
4875a94dae Remove html autocomplete fromt size input fields 2017-10-22 00:35:55 +02:00
juliandescottes
a4fb0565d2 release: fix minor ui issues for checkbox containers 2017-10-22 00:32:17 +02:00
juliandescottes
2e7eaec0e5 release: bump version to 0.13.0-RC1 2017-10-21 23:53:01 +02:00
6 changed files with 20 additions and 12 deletions

View file

@ -1,6 +1,6 @@
{
"name": "piskel",
"version": "0.12.1",
"version": "0.13.0",
"description": "Pixel art editor",
"author": "Julian Descottes <julian.descottes@gmail.com>",
"contributors": [

View file

@ -52,7 +52,12 @@ body {
}
.checkbox-fix {
margin-left: 0;
margin: 3px 3px 3px 0;
}
.checkbox-container {
display: flex;
align-items: center;
}
.hidden {

View file

@ -25,8 +25,8 @@
</div>
<div class="import-section import-subsection">
<span class="dialog-section-title">Resize to</span>
<input type="text" class="textfield import-size-field" name="resize-width"/>x
<input type="text" class="textfield import-size-field" name="resize-height"/>
<input type="text" class="textfield import-size-field" autocomplete="off" name="resize-width"/>x
<input type="text" class="textfield import-size-field" autocomplete="off" name="resize-height"/>
</div>
<div class="import-section import-subsection">
<span class="import-section-title">Smooth resize</span>
@ -40,13 +40,13 @@
</div>
<div class="import-section import-subsection">
<span class="dialog-section-title">Frame size</span>
<input type="text" class="textfield import-size-field" name="frame-size-x"/>x
<input type="text" class="textfield import-size-field" name="frame-size-y"/>
<input type="text" class="textfield import-size-field" autocomplete="off" name="frame-size-x"/>x
<input type="text" class="textfield import-size-field" autocomplete="off" name="frame-size-y"/>
</div>
<div class="import-section import-subsection">
<span class="dialog-section-title">Offset</span>
<input type="text" class="textfield import-size-field" name="frame-offset-x"/>x
<input type="text" class="textfield import-size-field" name="frame-offset-y"/>
<input type="text" class="textfield import-size-field" autocomplete="off" name="frame-offset-x"/>x
<input type="text" class="textfield import-size-field" autocomplete="off" name="frame-offset-y"/>
</div>
</form>
<div class="import-step-buttons">

View file

@ -11,7 +11,10 @@
</div>
<div class="export-panel-section export-panel-row">
<input id="gif-repeat-checkbox" class="gif-repeat-checkbox checkbox-fix" type="checkbox" />
<label for="gif-repeat-checkbox">Loop repeatedly</label>
<label for="gif-repeat-checkbox"
title="Uncheck to play the animation only one time."
rel="tooltip"
data-placement="top">Loop repeatedly</label>
</div>
<div class="export-panel-section export-panel-row">
<button type="button" class="button button-primary gif-download-button">Download</button>

View file

@ -7,7 +7,7 @@
<input type="text" style="flex: 1;" class="zip-prefix-name textfield"
autocomplete="off" placeholder="PNG file prefix ...">
</div>
<div style="margin: 5px 0;">
<div class="checkbox-container" style="margin: 5px 0;">
<input id="zip-split-layers" class="zip-split-layers-checkbox checkbox-fix" type="checkbox" />
<label for="zip-split-layers">Split by layers</label>
</div>

View file

@ -17,13 +17,13 @@
<span>px</span>
</div>
<div class="resize-section">
<label>
<label class="checkbox-container">
<input type="checkbox" class="resize-ratio-checkbox checkbox-fix" value="true"/>
<span>Maintain aspect ratio</span>
</label>
</div>
<div class="resize-section">
<label>
<label class="checkbox-container">
<input type="checkbox" class="resize-content-checkbox checkbox-fix" value="true"/>
<span>Resize canvas content</span>
</label>