mirror of
https://github.com/chinchang/web-maker.git
synced 2025-08-12 16:24:00 +02:00
build
This commit is contained in:
16
app/partials/ask-to-import-modal.html
Normal file
16
app/partials/ask-to-import-modal.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<a d-click="onModalCloseBtnClick" href="" aria-label="Close modal" title="Close" class="js-modal__close-btn modal__close-btn">
|
||||
<svg>
|
||||
<use xlink:href="#cross-icon"></use>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<h2>Import your creations in your account</h2>
|
||||
|
||||
<div>
|
||||
<p>You have <span id="oldSavedCreationsCountEl"></span> creations saved in your local machine. Do you want to import those creations in your account so they are more secure and accessible anywhere?</p>
|
||||
<p>It's okay if you don't want to. You can simply logout and access them anytime on this browser.</p>
|
||||
<div class="flex flex-h-end">
|
||||
<button d-click="dontAskToImportAnymore" class="btn">Don't ask me again</button>
|
||||
<button d-click="importCreationsAndSettingsIntoApp" class="btn btn--primary ml-1">Yes, please import</button>
|
||||
</div>
|
||||
</div>
|
@@ -7,10 +7,10 @@
|
||||
<h1>Whats new?</h1>
|
||||
|
||||
<div class="notification">
|
||||
<span class="notification__version">3.0.0</span>
|
||||
<span class="notification__version">3.0.1</span>
|
||||
<ul>
|
||||
<li>After months of work, here is Web Maker 3.0. <a href="https://medium.com/web-maker/web-maker-3-0-is-here-f158a40eeaee" target="_blank">Read the blog post about it</a>.</li>
|
||||
<li>Web Maker is no more just a Chrome extension, it is also available as web app that runs offline just like the extension!</li>
|
||||
<li>Web Maker is no more just a Chrome extension, it is also available as web app that runs offline just like the extension! Checkout it out -> <a href="https://webmakerapp.com/app/" target="_blank">https://webmakerapp.com/app/</a>.</li>
|
||||
<li>Now use Web Maker web app on any modern browser (tested with Chrome and Firefox).</li>
|
||||
<li><strong>User Accounts</strong> - The much requested user accounts are here. Now maintain your account and store all your creations in the cloud and access them anywhere anytime.
|
||||
<li><strong>New layout mode</strong> - One more layout mode, that lets you align all the panes vertically.
|
||||
@@ -18,8 +18,8 @@
|
||||
<li><strong>Inline scripts (Web app only)</strong> - The restriction of writing JavaScript only in JS pane is also removed.
|
||||
|
||||
<br>
|
||||
<li><strong>🚀 Announcement</strong>: Hi! I am Kushagra Gour (creator of Web Maker) and I have launched a <a href="https://patreon.com/kushagra" target="_blank">Patreon campaign</a>. If you love Web Maker, consider pledging to support me :)</li>
|
||||
<li><a href="https://github.com/chinchang/web-maker/issues" target="_blank">Suggest features or report bugs.</a></li>
|
||||
<li><strong>🚀 Announcement</strong>: Hi! I am Kushagra Gour (creator of Web Maker) and I have launched a <a href="https://patreon.com/kushagra" target="_blank">Patreon campaign</a>. If you love Web Maker, consider pledging to <a href="https://patreon.com/kushagra" target="_blank">support me</a> :)</li>
|
||||
<li><a href="https://github.com/chinchang/web-maker/issues" target="_blank">Suggest features or report bugs.</a></lili>
|
||||
<li>Web Maker now has more than 50K weekly active users! Thank you for being a part of this community of awesome developers. If you find Web Maker helpful, <a href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" target="_blank" class="btn">Please rate Web Maker <span class="star"></span></a> <a href="http://twitter.com/share?url=https://webmakerapp.com/&text=Web Maker - A blazing fast %26 offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,editor,chrome,extension" target="_blank" target="_blank" class="btn">Share it</a> <a aria-label="Support the developer" d-click="openSupportDeveloperModal" data-event-action="supportDeveloperChangelogBtnClick" class="btn btn-icon">Support the developer</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<h1><div class="web-maker-with-tag">Web Maker</div><small style="font-size:14px;"> v3.0.0</small></h1>
|
||||
<h1><div class="web-maker-with-tag">Web Maker</div><small style="font-size:14px;"> v3.0.1</small></h1>
|
||||
|
||||
<div>
|
||||
<p>Made with <span style="margin-right: 8px;">💖</span> & <span style="margin-right: 8px;">🙌</span> by <a href="https://twitter.com/chinchang457" target="_blank">Kushagra Gour</a></p>
|
||||
|
@@ -8,17 +8,29 @@
|
||||
|
||||
<div>
|
||||
<p>
|
||||
<button d-click="login" class="btn btn-icon btn--big full-width social-login-btn--github" data-auth-provider="github">
|
||||
<button
|
||||
d-click="login"
|
||||
class="social-login-btn social-login-btn--github btn btn-icon btn--big full-width hint--right hint--always"
|
||||
data-auth-provider="github"
|
||||
data-hint="You logged in with Github last time">
|
||||
<svg><use xlink:href="#github-icon"></use></svg>Login with Github
|
||||
</button>
|
||||
</p>
|
||||
<p>
|
||||
<button d-click="login" class="btn btn-icon btn--big full-width social-login-btn--google" data-auth-provider="google">
|
||||
<button
|
||||
d-click="login"
|
||||
class="social-login-btn social-login-btn--google btn btn-icon btn--big full-width hint--right hint--always"
|
||||
data-auth-provider="google"
|
||||
data-hint="You logged in with Google last time">
|
||||
<svg><use xlink:href="#google-icon"></use></svg>Login with Google
|
||||
</button>
|
||||
</p>
|
||||
<p class="mb-2">
|
||||
<button d-click="login" class="btn btn-icon btn--big full-width social-login-btn--facebook" data-auth-provider="facebook">
|
||||
<button
|
||||
d-click="login"
|
||||
class="social-login-btn social-login-btn--facebook btn btn-icon btn--big full-width hint--right hint--always"
|
||||
data-auth-provider="facebook"
|
||||
data-hint="You logged in with Facebook last time">
|
||||
<svg><use xlink:href="#fb-icon"></use></svg>Login with Facebook
|
||||
</button>
|
||||
</p>
|
||||
|
@@ -14,7 +14,13 @@
|
||||
</svg>
|
||||
</div>
|
||||
<p>
|
||||
Open Web Maker anytime by visiting <a>https://webmakerapp.com/app/</a> - Even when you are offline! It just works! 😱
|
||||
Open Web Maker anytime by visiting <a>https://webmakerapp.com/app/</a> - Even when you are offline! It just works! 😱 <strong>Drag the following bookmarklet</strong> on your bookmark bar to create a quick access shortcut:
|
||||
<a class="ml-1 bookmarklet" href="https://webmakerapp.com/app/">
|
||||
<svg width="20" height="20" aria-hidden="true">
|
||||
<use xlink:href="#logo" />
|
||||
</svg>
|
||||
Web Maker
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="onboard-step show-when-extension">
|
||||
@@ -52,13 +58,13 @@
|
||||
</svg>
|
||||
</div>
|
||||
<p>
|
||||
Follow <a href="https://twitter.com/intent/follow?screen_name=webmakerApp">@webmakerApp</a> to know about the new upcoming
|
||||
Follow <a href="https://twitter.com/intent/follow?screen_name=webmakerApp" targe="_blank">@webmakerApp</a> to know about the new upcoming
|
||||
features!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="ta-c">
|
||||
<p class="tac show-when-app">
|
||||
If you are an existing Chrome extension user, you can import your creations from there to here. <a href="https://medium.com/web-maker/importing-exporting-your-creations-d92e7de5c3dc" target="_blank">Learn how to export/import</a>.
|
||||
</p>
|
||||
|
||||
|
Reference in New Issue
Block a user