1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-13 01:56:24 +02:00

bump to 3.0.4

This commit is contained in:
Kushagra Gour
2018-04-11 10:18:56 +05:30
parent f4ee03fe10
commit f60b99d0c6
5 changed files with 46 additions and 44 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "web-maker", "name": "web-maker",
"version": "3.0.3", "version": "3.0.4",
"description": "A blazing fast & offline web playground", "description": "A blazing fast & offline web playground",
"main": "index.html", "main": "index.html",
"devDependencies": { "devDependencies": {
@ -23,12 +23,7 @@
"type": "git", "type": "git",
"url": "git+https://github.com/chinchang/web-maker.git" "url": "git+https://github.com/chinchang/web-maker.git"
}, },
"keywords": [ "keywords": ["frontend", "playground", "web", "editor"],
"frontend",
"playground",
"web",
"editor"
],
"author": "Kushagra Gour", "author": "Kushagra Gour",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {

View File

@ -1,6 +1,6 @@
{ {
"name": "Web Maker", "name": "Web Maker",
"version": "3.0.3", "version": "3.0.4",
"manifest_version": 2, "manifest_version": 2,
"description": "Blazing fast & offline playground for your web experiments", "description": "Blazing fast & offline playground for your web experiments",
"homepage_url": "https://webmakerapp.com", "homepage_url": "https://webmakerapp.com",

View File

@ -1,10 +1,13 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head><title>Settings - Web Maker</title>
<style> <head>
<title>Settings - Web Maker</title>
<style>
body { body {
font-size: 16px; font-size: 16px;
} }
.btn { .btn {
background: #ff8c00; background: #ff8c00;
color: white; color: white;
@ -17,28 +20,32 @@
margin: 5px 0; margin: 5px 0;
font-size: inherit; font-size: inherit;
} }
.status { .status {
color: green; color: green;
margin-bottom: 10px; margin-bottom: 10px;
} }
label { label {
display: block; display: block;
margin: 10px 0; margin: 10px 0;
} }
</style>
</style>
</head> </head>
<body> <body>
<h3>Settings <span style="opacity: 0.6;font-size:0.7em;"> <h3>Settings
v3.0.3</span></h3> <span style="opacity: 0.6;font-size:0.7em;">
v3.0.4</span>
</h3>
<form name="optionsForm"> <form name="optionsForm">
<label> <label>
<input type="checkbox" name="preserveLastCode"> <input type="checkbox" name="preserveLastCode"> Preserve last written code
Preserve last written code
</label> </label>
<label> <label>
<input type="checkbox" name="replaceNewTab"> <input type="checkbox" name="replaceNewTab"> Replace new tab page
Replace new tab page
</label> </label>
<div id="js-status" class="status">&nbsp;</div> <div id="js-status" class="status">&nbsp;</div>
@ -47,4 +54,5 @@
<script src="options.js"></script> <script src="options.js"></script>
</body> </body>
</html> </html>

View File

@ -6,7 +6,7 @@
<h1> <h1>
<div class="web-maker-with-tag">Web Maker</div> <div class="web-maker-with-tag">Web Maker</div>
<small style="font-size:14px;"> v3.0.3</small> <small style="font-size:14px;"> v3.0.4</small>
</h1> </h1>
<div> <div>
@ -18,8 +18,7 @@
<p>Tweet out your feature requests, comments & suggestions to <p>Tweet out your feature requests, comments & suggestions to
<a target="_blank" href="https://twitter.com/webmakerApp">@webmakerApp</a>.</p> <a target="_blank" href="https://twitter.com/webmakerApp">@webmakerApp</a>.</p>
<p>Like this extension? Please <p>Like this extension? Please
<a href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" <a href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" target="_blank">rate it here</a>.</p>
target="_blank">rate it here</a>.</p>
<p> <p>
<a aria-label="Support the developer" d-click="openSupportDeveloperModal" data-event-action="supportDeveloperHelpBtnClick" <a aria-label="Support the developer" d-click="openSupportDeveloperModal" data-event-action="supportDeveloperHelpBtnClick"
class="btn btn-icon"> class="btn btn-icon">

View File

@ -14,7 +14,7 @@ loginModal, profileModal, profileAvatarImg, profileUserName, openItemsBtn, askTo
(function(alertsService, itemService) { (function(alertsService, itemService) {
/* eslint-enable no-extra-semi */ /* eslint-enable no-extra-semi */
var scope = scope || {}; var scope = scope || {};
var version = '3.0.3'; var version = '3.0.4';
if (window.DEBUG) { if (window.DEBUG) {
window.scope = scope; window.scope = scope;