Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Aug 31, 2017
1 parent 1be9441 commit 3b61213
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 73 deletions.
6 changes: 5 additions & 1 deletion assets/css/umwp.css
Expand Up @@ -68,13 +68,17 @@
vertical-align: middle; vertical-align: middle;
} }


.nav-tabs-navigation .nav-link {
cursor: pointer;
}

/* guide */ /* guide */
.guide-item { .guide-item {
margin-bottom: 2em; margin-bottom: 2em;
position: relative; position: relative;
} }


.guide-item img { .guide-image {
width: 96px; width: 96px;
height: 96px; height: 96px;
} }
Expand Down
Binary file modified assets/img/guide/book.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions assets/js/umwp.js
Expand Up @@ -3,4 +3,21 @@ $(function() {
var lastVersion = data.split('\n'); var lastVersion = data.split('\n');
$('#version').text(lastVersion[0]); $('#version').text(lastVersion[0]);
}); });

var $root = $('html, body');
$('a').click(function() {
var href = $.attr(this, 'href');
var target = $(href);

if (target.length) {
$root.animate({
scrollTop: target.offset().top
}, 500, function() {
window.location.hash = href;
pk.checkScrollForTransparentNavbar();
});

return false;
}
});
}); });
9 changes: 9 additions & 0 deletions changelogs/2.3.0.html
@@ -0,0 +1,9 @@
<dl>
<dt>Version 2.3.0 <small>August 31st 2017</small></dt>
<dd>
<ul>
<li>The lock can be enabled for some sets only.</li>
<li>New "Random" and "Shadow" options for the custom style.</li>
</ul>
</dd>
</dl>
52 changes: 26 additions & 26 deletions download.php
Expand Up @@ -2,32 +2,34 @@


$versions = array( $versions = array(
'zip' => array( 'zip' => array(
'1.0a1' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.0-alpha1.zip', '1.0a1' => 'dist/UMWP_Autochanger_1.0-alpha1.zip',
'1.0a2' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.0-alpha2.zip', '1.0a2' => 'dist/UMWP_Autochanger_1.0-alpha2.zip',
'1.0' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.0.zip', '1.0' => 'dist/UMWP_Autochanger_1.0.zip',
'1.1' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.1.zip', '1.1' => 'dist/UMWP_Autochanger_1.1.zip',
'1.2' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.2.zip', '1.2' => 'dist/UMWP_Autochanger_1.2.zip',
'1.3' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.3.zip', '1.3' => 'dist/UMWP_Autochanger_1.3.zip',
'1.4' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.4.zip', '1.4' => 'dist/UMWP_Autochanger_1.4.zip',
'1.5' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.5.zip', '1.5' => 'dist/UMWP_Autochanger_1.5.zip',
'1.6' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.6.zip', '1.6' => 'dist/UMWP_Autochanger_1.6.zip',
'1.7' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.7.zip', '1.7' => 'dist/UMWP_Autochanger_1.7.zip',
'1.8' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.8.zip', '1.8' => 'dist/UMWP_Autochanger_1.8.zip',
'1.9' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.9.zip', '1.9' => 'dist/UMWP_Autochanger_1.9.zip',
'2.0' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_2.0.zip', '2.0' => 'dist/UMWP_Autochanger_2.0.zip',
'2.1' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_2.1.zip', '2.1' => 'dist/UMWP_Autochanger_2.1.zip',
'2.2' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_2.2.zip', '2.2' => 'dist/UMWP_Autochanger_2.2.zip',
'2.3.0' => 'dist/UMWP_Autochanger_2.3.0.zip',
), ),


'exe' => array( 'exe' => array(
'1.5' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.5_Setup.exe', '1.5' => 'dist/UMWP_Autochanger_1.5_Setup.exe',
'1.6' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.6_Setup.exe', '1.6' => 'dist/UMWP_Autochanger_1.6_Setup.exe',
'1.7' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.7_Setup.exe', '1.7' => 'dist/UMWP_Autochanger_1.7_Setup.exe',
'1.8' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.8_Setup.exe', '1.8' => 'dist/UMWP_Autochanger_1.8_Setup.exe',
'1.9' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_1.9_Setup.exe', '1.9' => 'dist/UMWP_Autochanger_1.9_Setup.exe',
'2.0' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_2.0_Setup.exe', '2.0' => 'dist/UMWP_Autochanger_2.0_Setup.exe',
'2.1' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_2.1_Setup.exe', '2.1' => 'dist/UMWP_Autochanger_2.1_Setup.exe',
'2.2' => 'http://www.strangeplanet.fr/work/umwp-autochanger/dist/UMWP_Autochanger_2.2_Setup.exe', '2.2' => 'dist/UMWP_Autochanger_2.2_Setup.exe',
'2.3.0' => 'dist/UMWP_Autochanger_2.3.0_Setup.exe',
), ),
); );


Expand Down Expand Up @@ -69,8 +71,6 @@


if (isset($_GET['serve'])) if (isset($_GET['serve']))
{ {
$file = str_replace('http://www.strangeplanet.fr/work/umwp-autochanger/', '', $file);

header('Content-Type: application/force-download; name="'.basename($file).'"'); header('Content-Type: application/force-download; name="'.basename($file).'"');
header('Content-Disposition: attachment; filename="'.basename($file).'"'); header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Content-Description: File Transfer'); header('Content-Description: File Transfer');
Expand All @@ -85,7 +85,7 @@
} }
else else
{ {
header('Location: '.$file); header('Location: http://www.strangeplanet.fr/work/umwp-autochanger/'.$file);
} }


function readlargefile($fullfile) function readlargefile($fullfile)
Expand Down
89 changes: 45 additions & 44 deletions index.html
Expand Up @@ -22,6 +22,7 @@
</head> </head>


<body> <body>
<div id="top"></div>
<nav class="navbar navbar-toggleable-md fixed-top navbar-transparent" color-on-scroll="300"> <nav class="navbar navbar-toggleable-md fixed-top navbar-transparent" color-on-scroll="300">
<div class="container"> <div class="container">
<div class="navbar-translate"> <div class="navbar-translate">
Expand All @@ -31,8 +32,8 @@
<span class="navbar-toggler-bar"></span> <span class="navbar-toggler-bar"></span>
<span class="navbar-toggler-bar"></span> <span class="navbar-toggler-bar"></span>
</button> </button>
<a class="navbar-brand hidden-sm-down" href="#">Ultimate Monitor Wallpaper Autochanger</a> <a class="navbar-brand hidden-sm-down" href="#top">Ultimate Monitor Wallpaper Autochanger</a>
<a class="navbar-brand hidden-md-up" href="#">UMWP Autochanger</a> <a class="navbar-brand hidden-md-up" href="#top">UMWP Autochanger</a>
</div> </div>
<div class="collapse navbar-collapse" id="navbarToggler"> <div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav ml-auto"> <ul class="navbar-nav ml-auto">
Expand Down Expand Up @@ -180,37 +181,35 @@ <h4 class="info-title">Password</h4>
<div class="container"> <div class="container">
<h2 class="title text-center">Install UMWP Autochanger</h2> <h2 class="title text-center">Install UMWP Autochanger</h2>


<div class="guide-list"> <div class="media guide-item">
<div class="media guide-item"> <img class="guide-image d-flex mr-3" src="assets/img/guide/gears.png">
<img class="d-flex mr-3" src="assets/img/guide/gears.png"> <div class="media-body">
<div class="media-body"> <h5 class="mt-0">Install &amp; launch UMWP Autochanger</h5>
<h5 class="mt-0">Install &amp; launch UMWP Autochanger</h5> Download the installation package or the portable ZIP with the link above and install it like
Download the installation package or the portable ZIP with the link above and install it like any software.
any software.
</div>
</div> </div>
<div class="media guide-item"> </div>
<img class="d-flex mr-3" src="assets/img/guide/folder.png"> <div class="media guide-item">
<div class="media-body"> <img class="guide-image d-flex mr-3" src="assets/img/guide/folder.png">
<h5 class="mt-0">Add your first set</h5> <div class="media-body">
Click on the <b><i class="umwp-add"></i> Add set</b> button and select a folder containing image <h5 class="mt-0">Add your first set</h5>
files. Click on the <b><i class="umwp-add"></i> Add set</b> button and select a folder containing image
</div> files.
</div> </div>
<div class="media guide-item"> </div>
<img class="d-flex mr-3" src="assets/img/guide/refresh.png"> <div class="media guide-item">
<div class="media-body"> <img class="guide-image d-flex mr-3" src="assets/img/guide/refresh.png">
<h5 class="mt-0">Apply</h5> <div class="media-body">
Click on the <b><i class="umwp-refresh"></i> Refresh</b> button, the wallpaper will randomly <h5 class="mt-0">Apply</h5>
change every 60 seconds. Click on the <b><i class="umwp-refresh"></i> Refresh</b> button, the wallpaper will randomly
</div> change every 60 seconds.
</div> </div>
<div class="media guide-item"> </div>
<img class="d-flex mr-3" src="assets/img/guide/book.png"> <div class="media guide-item">
<div class="media-body"> <img class="guide-image d-flex mr-3" src="assets/img/guide/book.png">
<h5 class="mt-0">Configuration</h5> <div class="media-body">
Read the documentation to learn about all the awesome features of UMWP Autochanger. <h5 class="mt-0">Configuration</h5>
</div> Read the documentation to learn about all the awesome features of UMWP Autochanger.
</div> </div>
</div> </div>


Expand All @@ -230,25 +229,25 @@ <h2 class="title text-center">Documentation</h2>
<div class="nav-tabs-wrapper"> <div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" role="tablist"> <ul class="nav nav-tabs" role="tablist">
<li class="nav-item"> <li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#documentation-intro" role="tab">Introduction</a> <a class="nav-link active" data-toggle="tab" data-target="#help-intro" role="tab">Introduction</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#documentation-sets" role="tab">Manage sets</a> <a class="nav-link" data-toggle="tab" data-target="#help-sets" role="tab">Manage sets</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#documentation-hotkeys" role="tab">Hotkeys &amp; <a class="nav-link" data-toggle="tab" data-target="#help-hotkeys" role="tab">Hotkeys &amp;
lock</a> lock</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#documentation-custom" role="tab">Custom <a class="nav-link" data-toggle="tab" data-target="#help-custom" role="tab">Custom
style</a> style</a>
</li> </li>
</ul> </ul>
</div> </div>
</div> </div>


<div class="tab-content"> <div class="tab-content">
<div class="tab-pane active text-justify" id="documentation-intro" role="tabpanel"> <div class="tab-pane fade show active text-justify" id="help-intro" role="tabpanel">
<h3>Presentation</h3> <h3>Presentation</h3>


<p>The core concept of UMWP Autochanger is <b>sets</b>. Basically sets are folders on your computer <p>The core concept of UMWP Autochanger is <b>sets</b>. Basically sets are folders on your computer
Expand All @@ -275,11 +274,11 @@ <h3>Configuration</h3>
<hr> <hr>


<a class="btn btn-danger btn-link" <a class="btn btn-danger btn-link"
href="#help" onclick="$('[href=\'#documentation-sets\']').tab('show')"> href="#help" onclick="$('[data-target=\'#help-sets\']').tab('show')">
Continue reading Continue reading
</a> </a>
</div> </div>
<div class="tab-pane text-justify" id="documentation-sets" role="tabpanel"> <div class="tab-pane fade text-justify" id="help-sets" role="tabpanel">
<h3>Add, delete, enable &amp; disable</h3> <h3>Add, delete, enable &amp; disable</h3>


<p>To add a set just click on the <i class="umwp-add"></i> menu button, or right-click in the list <p>To add a set just click on the <i class="umwp-add"></i> menu button, or right-click in the list
Expand All @@ -299,7 +298,7 @@ <h3>Configure</h3>


<p>Right-click on a set and click on <i class="umwp-edit"></i> to edit it's properties, you can <p>Right-click on a set and click on <i class="umwp-edit"></i> to edit it's properties, you can
change the name, style, type, mode, hotkey and lock change the name, style, type, mode, hotkey and lock
(<a onclick="$('[href=\'#documentation-hotkeys\']').tab('show')" href="#help">see (<a onclick="$('[data-target=\'#help-hotkeys\']').tab('show')" href="#help">see
dedicated section</a>) as well as on dedicated section</a>) as well as on
which monitors this set is visible.</p> which monitors this set is visible.</p>
<p class="alert alert-info"><i class="fa fa-info"></i> <p class="alert alert-info"><i class="fa fa-info"></i>
Expand All @@ -321,7 +320,7 @@ <h3>Configure</h3>
<li><b><i class="umwp-im_stretch_prop"></i> Strecth proportional</b></li> <li><b><i class="umwp-im_stretch_prop"></i> Strecth proportional</b></li>
<li><b><i class="umwp-im_fill"></i> Fill</b></li> <li><b><i class="umwp-im_fill"></i> Fill</b></li>
<li><b><i class="umwp-im_custom"></i> Custom</b> <li><b><i class="umwp-im_custom"></i> Custom</b>
(<a onclick="$('[href=\'#documentation-custom\']').tab('show')" href="#help">see (<a onclick="$('[data-target=\'#help-custom\']').tab('show')" href="#help">see
dedicated section</a>) dedicated section</a>)
</li> </li>
</ul> </ul>
Expand All @@ -339,11 +338,11 @@ <h3>Configure</h3>
<hr> <hr>


<a class="btn btn-danger btn-link" <a class="btn btn-danger btn-link"
href="#help" onclick="$('[href=\'#documentation-hotkeys\']').tab('show')"> href="#help" onclick="$('[data-target=\'#help-hotkeys\']').tab('show')">
Continue reading Continue reading
</a> </a>
</div> </div>
<div class="tab-pane text-justify" id="documentation-hotkeys" role="tabpanel"> <div class="tab-pane fade text-justify" id="help-hotkeys" role="tabpanel">
<h3>Hotkeys</h3> <h3>Hotkeys</h3>


<p>As we already seen, sets state can be changed in the main window. UMWP Autochanger also provides <p>As we already seen, sets state can be changed in the main window. UMWP Autochanger also provides
Expand Down Expand Up @@ -390,11 +389,11 @@ <h3>Lock</h3>
<hr> <hr>


<a class="btn btn-danger btn-link" <a class="btn btn-danger btn-link"
href="#help" onclick="$('[href=\'#documentation-custom\']').tab('show')"> href="#help" onclick="$('[data-target=\'#help-custom\']').tab('show')">
Continue reading Continue reading
</a> </a>
</div> </div>
<div class="tab-pane text-justify" id="documentation-custom" role="tabpanel"> <div class="tab-pane fade text-justify" id="help-custom" role="tabpanel">
<p>The <b><i class="umwp-im_custom"></i> Custom</b> style can be used to generate more or less <p>The <b><i class="umwp-im_custom"></i> Custom</b> style can be used to generate more or less
random patchwork wallpapers. You can choose the size of the grid, the prefered range of tiles random patchwork wallpapers. You can choose the size of the grid, the prefered range of tiles
size and the color and size of the border and the shadow.</p> size and the color and size of the border and the shadow.</p>
Expand Down Expand Up @@ -479,7 +478,9 @@ <h6 class="card-category">God</h6>
<div class="container"> <div class="container">
<h2 class="title">Got a question or a suggestion ?</h2> <h2 class="title">Got a question or a suggestion ?</h2>


<p>Heads up to the <a class="btn btn-outline-warning btn-round" href="https://github.com/mistic100/UMWP-Autochanger/issues">Github issues tracker</a> and we will try to find a solution.</p> <p>Heads up to the <a class="btn btn-outline-warning btn-round"
href="https://github.com/mistic100/UMWP-Autochanger/issues">Github issues tracker</a>
and we will try to find a solution.</p>
</div> </div>
</div> </div>
</div> </div>
Expand Down
4 changes: 2 additions & 2 deletions last-version.txt
@@ -1,3 +1,3 @@
2.2 2.3.0
http://www.strangeplanet.fr/work/umwp-autochanger/download.php?ver=latest&type=exe&serve http://www.strangeplanet.fr/work/umwp-autochanger/download.php?ver=latest&type=exe&serve
6A57C7BA16567334A1BF2D4E3BE55AE2 AF62882C360EB89A12E822F7B2886A05

0 comments on commit 3b61213

Please sign in to comment.