Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc updates #78

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 28 additions & 31 deletions src/new_installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,41 @@
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="swiper-slide-left">
<h1>Thank you for installing FluentTyper</h1>
<h2>
Thank you for installing FluentTyper. If you find FluentTyper
useful, please consider making a donation to help support its
development.
</h2>
</div>
<div class="swiper-slide-right">
<p>
FluentTyper attempts to improve the ease and speed of textual
input by predicting words. It auto-completes words for you
while you type, and can also fix your typos.
FluentTyper is more than just a time-saver; it's a tool that
improves your writing with features like spell checking,
auto-complete suggestions, and text expansions. It's perfect
for those who frequently type long email addresses, commonly
used phrases, or anyone looking to streamline their daily
typing tasks.
</p>
<p>
Developing and maintaining FluentTyper requires a significant
amount of work and effort. If you find FluentTyper useful, you
may wish to consider supporting its development by making a
voluntary donation. Your support will also enable future
enhancements to the extension.
</p>
<a
href="https://www.buymeacoffee.com/FluentTyper"
target="_blank"
><img
src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
alt="Buy Me A Coffee"
style="height: 60px !important; width: 217px !important"
/></a>
</div>
</div>
<div class="swiper-slide">
<div class="swiper-slide-left">
<h1>FluentTyper in action</h1>
<h2>FluentTyper in action</h2>
</div>
<div class="swiper-slide-right">
<iframe
Expand All @@ -57,7 +79,7 @@ <h1>FluentTyper in action</h1>
</div>
<div class="swiper-slide">
<div class="swiper-slide-left">
<h1>Cheat sheet</h1>
<h2>Cheat sheet</h2>
</div>
<div class="swiper-slide-right">
<ul>
Expand Down Expand Up @@ -94,31 +116,6 @@ <h1>Try me now</h1>
></textarea>
</div>
</div>
<div class="swiper-slide">
<div class="swiper-slide-left">
<h1>
If you find FluentTyper useful, please consider making a
donation to help support its development
</h1>
</div>
<div class="swiper-slide-right">
<p>
Developing and maintaining FluentTyper requires a significant
amount of work and effort. If you find FluentTyper useful, you
may wish to consider supporting its development by making a
voluntary donation. Your support will also enable future
enhancements to the extension.
</p>
<a
href="https://www.buymeacoffee.com/FluentTyper"
target="_blank"
><img
src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
alt="Buy Me A Coffee"
style="height: 60px !important; width: 217px !important"
/></a>
</div>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
Expand Down
3 changes: 3 additions & 0 deletions src/new_installation/style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ img {

.swiper-slide-left {
width: 300px;
float: left;
}

.swiper-slide-right {
list-style: inside;
font-size: 110%;
padding: 1%;
width: 750px;
float: right;
}

textarea {
Expand All @@ -42,6 +44,7 @@ textarea {
.swiper-container {
width: 100%;
height: 100%;
overflow: hidden;
}
.swiper-slide {
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion src/new_installation/swiper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ window.addEventListener("DOMContentLoaded", function () {
new Swiper(".swiper-container", {
pagination: {
el: ".swiper-pagination",
dynamicBullets: true,
dynamicBullets: false,
},
navigation: {
nextEl: ".swiper-button-next",
Expand Down
9 changes: 1 addition & 8 deletions src/third_party/fancier-settings/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,18 +232,11 @@ const manifest = {
},
{
tab: i18n.get("About"),
group: i18n.get("FluentTyper"),
group: i18n.get("Contact"),
name: "FluentTyper",
type: "description",
text: i18n.get("x-FluentTyper"),
},
{
tab: i18n.get("About"),
group: i18n.get("Credits"),
name: "Credits",
type: "description",
text: i18n.get("x-Credits"),
},
{
tab: i18n.get("About"),
group: i18n.get("Version"),
Expand Down
Loading