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

Attempt at rebranding #76

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
15 changes: 8 additions & 7 deletions components/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<li>Selfhostable</li>
<li>Free Open Source Software</li>
<li>Configurable</li>
</ul>
<li>Not only chat</li>
</ul>
</div>
</div>
<div class="col-lg-6 col-md-10">
Expand Down Expand Up @@ -55,12 +56,12 @@
<div class="col-lg-12 col-md-12">
<h2 class="small" id="about_head">Philosophy in Detail:</h2>
<div class="mt-1 mb-35 f-22 color-heading text-adaptive description">
Fosscord aims to be a full one-on-one clone of Discord, adding more
Spacebar aims to be a reimplementation of Discord, adding more
features that can be used as a replacement for the official client,
still connect to discord.com, and host private Fosscord server
still connect to discord.com, and host private Spacebar server
instances.<br /><br />

Fosscord aims to give the best possible user experience, while being
Spacebar aims to give the best possible user experience, while being
backwards compatible to Discord's features and adding new
ones/improving old ones while maintaining the user privacy with
end-to-end encryption support.<br /><br />
Expand All @@ -77,14 +78,14 @@
everyone can add their own features, so that it is not biased.
<br /><br />
<img
src="https://raw.githubusercontent.com/fosscord/fosscord/f0b01762edfe10bef249b65b3fe0a2ca3a9ce4fa/assets/architecture.png"
src="https://raw.githubusercontent.com/spacebarchat/spacebarchat/f0b01762edfe10bef249b65b3fe0a2ca3a9ce4fa/assets/architecture.png"
width="100%"
/>
<a
class="about_links"
target="_blank"
href="https://docs.fosscord.com/resources/"
>Fosscord contribution ressources</a
href="https://docs.spacebar.chat"
>Spacebar contribution ressources</a
>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions components/announcement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
</h2>
<div class="description">
<div>
Fosscord has reached {{ stars }} stars on Github in such a short
Spacebar has reached {{ stars }} stars on Github in such a short
time. <br />Thanks to you.
</div>
</div>
<a
href="https://github.com/fosscord/fosscord"
href="https://github.com/spacebarchat/spacebarchat
target="_blank"
class="btn bg-fosscord mb-20 mb-sm-0 mr-15 action-1"
id="button_"
Expand All @@ -36,7 +36,7 @@ export default {
};
},
async fetch() {
let res = await fetch("https://api.github.com/repos/fosscord/fosscord");
let res = await fetch("https://api.github.com/repos/spacebarchat/spacebarchat");
res = await res.json();
this.stars = res.stargazers_count;
}
Expand Down
12 changes: 6 additions & 6 deletions components/callToAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<div class="col-lg-6 col-md-10" id="contribute_text">
<h2 class="small">Contribute now!</h2>
<div class="mt-25 mb-35 f-22 color-heading text-adaptive description">
Currently, Fosscord is in development, with <span class="fg-fosscord">30</span> active members.
If Fosscord is interesting to you, we heavily recommend checking out any of the
Currently, Spacebar is in development, with <span class="fg-fosscord">30</span> active members.
If Spacebar is interesting to you, we heavily recommend checking out any of the
<a href="/instances">community instances</a>,
the <a href="https://docs.fosscord.com">documentation</a> or the
<a href="https://github.com/fosscord">GitHub repositories</a>.
the <a href="https://docs.spacebar.chat">documentation</a> or the
<a href="https://github.com/spacebarchat">GitHub repositories</a>.
We would highly appreciate any and all support.
</div>
<a href="https://github.com/fosscord/fosscord/issues/10"
<a href="https://github.com/spacebarchat/spacebarchat/issues/10"
class="btn bg-fosscord mb-20 mb-sm-0 mr-15 action-1" id="button_">Contribute</a>
</div>
</div>
Expand Down Expand Up @@ -67,4 +67,4 @@ ul>li {
margin-top: 10px;
margin-bottom: 10px;
}
</style>
</style>
4 changes: 2 additions & 2 deletions components/contributors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export default {
},
async fetch() {
this.members = await fetch(
"https://raw.githubusercontent.com/fosscord/fosscord/master/assets/contributors/contributors.json"
//isn't it supposed to be fosscord in total? i've made one or two pull requests and am not listen here.
"https://raw.githubusercontent.com/spacebarchat/spacebarchat/master/assets/contributors/contributors.json"
//isn't it supposed to be spacebarchat in total? i've made one or two pull requests and am not listen here.
).then(res => res.json());
}
};
Expand Down
47 changes: 28 additions & 19 deletions components/features.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,80 +7,89 @@
<h3>Free and Open Source</h3>
<p>
We believe the best way to make software is through easy and open public contribution.
Fosscord is 100% open source, and is licensed under the
Spacebar Chat is 100% open source, and is licensed under the
<a href="https://www.gnu.org/licenses/agpl-3.0.html">GNU Affero General Public License v3.0</a>
</p>
<a class="moreInfo" href="https://github.com/Fosscord/fosscord-server">Github</a>
<a class="moreInfo" href="https://github.com/spacebarchat/server">Github</a>
</div>

<div class="feature done">
<h3>Configurable</h3>
<p>
Fosscord has a large number of configurable values to determine every aspect of how your
Spacebar has a large number of configurable values to determine every aspect of how your
instance operates. If an option you need doesn't exist, you do always have the option to simply
edit the source too!
</p>
<a class="moreInfo" href="https://docs.fosscord.com/server/configuration/">Configuration documentation</a>
<a class="moreInfo" href="https://docs.spacebar.chat/setup/server/configuration/">Configuration documentation</a>
</div>

<div class="feature done">
<h3>Many supported DB engines</h3>
<p>
Instance owners have complete control over which DBMS software they use as a backend to
Fosscord.
Spacebar.
</p>
<a class="moreInfo" href="https://docs.fosscord.com/server/database/">Database documentation</a>
<a class="moreInfo" href="https://docs.spacebar.chat/setup/server/database/">Database documentation</a>
</div>

<div class="feature done">
<h3>Security</h3>
<p>
Fosscord has a number of security features built in, such as instance-wide user rights.
Spacebar has a number of security features built in, such as instance-wide user rights.
Rights are kind of like guild member permissions, except for the entire instance,
for example the right to send messages or to create bot accounts.
</p>
<a class="moreInfo" href="https://docs.fosscord.com/api/rights/">Rights documentation</a>
<a class="moreInfo" href="https://docs.spacebar.chat/setup/server/security/rights/">Rights documentation</a>
</div>

<div class="feature incomplete">
<h3>E2E Encryption</h3>
<p>We believe communication should be private. End to End Encryption is a planned, core feature of
Fosscord, and will allow users to truly trust that their privacy, and private information is
Spacebar, and will allow users to truly trust that their privacy, and private information is
kept from prying eyes. It should be noted that, without client support for this feature, you
will be unable to send/receive encrypted messages.
</p>
<a class="moreInfo" href="https://github.com/fosscord/fosscord-server/issues/322">Tracker</a>
<a class="moreInfo" href="https://github.com/spacebarchat/server/issues/322">Tracker</a>
</div>

<div class="feature incomplete">
<h3>Discord.com Compatibility</h3>
<p>Fosscord aims to be 100% compatible with existing discord.com clients, bots, and other services,
<p>Spacebar aims to be 100% compatible with existing discord.com clients, bots, and other services,
as well as any that appear in the future. This allows a smooth transition from Discord.com to a
Fosscord instance. With this goal also comes complete feature parity between Discord.com and
Fosscord. We aim to have all Discord.com features implemented within Fosscord, as well as
additional
features and configurability given to our users.</p>
Fosscord. We aim to have all Discord.com features implemented within Spacebar, as well as
additional features and configurability given to our users.</p>
</div>

<div class="feature incomplete">
<h3>Server Plugins</h3>
<p>Through Fosscord server plugins, instance owners will be able to easily extend and add new
<p>Through Spacebar server plugins, instance owners will be able to easily extend and add new
features to their instances.
</p>
<a class="moreInfo" href="https://github.com/fosscord/fosscord-server/pull/837">Tracker</a>
<a class="moreInfo" href="https://github.com/spacebarchat/server/pull/837">Tracker</a>
</div>

<div class="feature incomplete">
<h3>Not only chat</h3>
<p>As Spacebar is open source, anyone can use it for any purpose. It does not have artificial
restrictions that prevent it from being used in usecases that are not casual friends&family or
fans conversation. In fact, the more institutions use Spacebar as their preferred instant
messaging and real time communication solution, the more chance our bugs get noticed and
possibly the sooner they get fixed. </p>
<em>Essay coming soon</em>
</div>

<div class="feature incomplete">
<h3>Voice and Video</h3>
<p>Voice and Video support on Fosscord is in active development, but may take a while longer.</p>
<a class="moreInfo" href="https://github.com/fosscord/fosscord-server/pull/472">Tracker</a>
<p>Voice and Video support on Spacebar is in active development, but may take a while longer.</p>
<a class="moreInfo" href="https://github.com/spacebarchat/server/pull/472">Tracker</a>
</div>

<div class="feature">
<h3>Much more!</h3>
<p>This is <i>by no means</i> a complete list of features, planned or completed, that the team
behind
Fosscord wishes to implement. We already have a large number of features implemented and working
Spacebar wishes to implement. We already have a large number of features implemented and working
using existing discord.com clients, and have no plans on stopping.</p>
</div>
</div>
Expand Down
14 changes: 8 additions & 6 deletions components/fossfooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
<div class="footer">
<div class="col-lg-3 text-lg-left left_footer_el_container">
<NuxtLink to="/" class="logo footer_logo" id="footer_logo"
>fosscord.com</NuxtLink
>spacebar.chat</NuxtLink
>
<div class="fosscord_socials_container">
<!--
<a
href="https://instagram.com/fosscord/"
target="_blank"
Expand Down Expand Up @@ -45,12 +46,13 @@
/>
</svg>
</a>
-->
</div>
</div>
<div class="footer_links">
<div class="footer_el_container">
<h5 class="footer_el_header">Fosscord</h5>
<a class="footer_el_link" href="https://app.fosscord.com"
<h5 class="footer_el_header">Spacebar</h5>
<a class="footer_el_link" href="https://app.spacebar.chat"
>Open Demo</a
>
<!-- <a
Expand Down Expand Up @@ -79,19 +81,19 @@
<a
class="footer_el_link"
target="_blank"
href="https://translate.fosscord.com/"
href="https://translate.spacebar.chat/"
>Translate</a
>
<a
class="footer_el_link"
target="_blank"
href="https://docs.fosscord.com/contributing/server/"
href="https://docs.spacebar.chat/contributing/server/"
>Contribute</a
>
<a
class="footer_el_link"
target="_blank"
href="https://docs.fosscord.com"
href="https://docs.spacebar.chat"
>Documentation</a
>
</div>
Expand Down
5 changes: 3 additions & 2 deletions components/hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<div id="hero_container">
<section id="hero" class="container">
<h2 id="main_header">
Fosscord
Spacebar
</h2>
<span id="main_header_sub">For better and secure communication</span>
<div style="margin-top: 2rem">
<a
id="open_demo"
href="https://app.fosscord.com"
href="https://app.spacebar.chat"
class="btn bg-fosscord mb-20 mb-sm-0 mr-15 action-1"
>Open Demo</a
>
Expand All @@ -24,6 +24,7 @@
<span>Extendable</span>
<span>Themeable</span>
<span>Secure</span>
<span>Not only chat</span>
</div>
<img id="mockup" src="~@/assets/images/discord-mockup.svg" /> -->
</section>
Expand Down
2 changes: 1 addition & 1 deletion components/navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div id="toggle_container">
<NuxtLink to="/" class="link logo color-main" id="back_button"
>Fosscord</NuxtLink
>Spacebar</NuxtLink
>
<button id="toggle" @click="showMobileNavbar = !showMobileNavbar">
<svg
Expand Down
3 changes: 2 additions & 1 deletion components/randomfacts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="row justify-content-between">
<div class="col-xl-12 col-lg-8 col-md-9 mt-4 mt-md-0 text-center">
<h2 class="pl-15 small">
Short facts about <span class="fg-fosscord">Fosscord</span>
Short facts about <span class="fg-fosscord">Spacebar</span>
</h2>
<div class="mt-1 pl-15 f-18 medium op-7 text-adaptive" id="facts">
<p>Discord-compatible</p>
Expand All @@ -15,6 +15,7 @@
<p>Decentralized</p>
<p>Extendable</p>
<p>Themeable</p>
<p>Not only chat</p>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions components/roadmapapi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
},
async fetch() {
let res = await fetch(
"https://api.github.com/repos/fosscord/fosscord-server/issues/140"
"https://api.github.com/repos/spacebarchat/server/issues/140"
);
res = await res.json();
let { body } = res;
Expand All @@ -26,7 +26,7 @@ export default {
.replace(/\[x\]/g, "<input type='checkbox' checked disabled/>")
.replace(
/#(\d+)/g,
'<a href="https://github.com/fosscord/fosscord-server/issues/$1">#$1</a>'
'<a href="https://github.com/spacebarchat/server/issues/$1">#$1</a>'
);
}
};
Expand Down
4 changes: 2 additions & 2 deletions components/roadmapclient.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
},
async fetch() {
let res = await fetch(
"https://api.github.com/repos/fosscord/fosscord-client/issues/67"
"https://api.github.com/repos/spacebarchat/client/issues/67"
);
res = await res.json();
let { body } = res;
Expand All @@ -25,7 +25,7 @@ export default {
.replace(/\[x\]/g, "<input type='checkbox' checked disabled/>")
.replace(
/#(\d+)/g,
'<a href="https://github.com/fosscord/fosscord-client/issues/$1">#$1</a>'
'<a href="https://github.com/spacebarchat/client/issues/$1">#$1</a>'
);
}
};
Expand Down
4 changes: 2 additions & 2 deletions components/roadmapmedia.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
},
async fetch() {
let res = await fetch(
"https://api.github.com/repos/fosscord/fosscord-rtc/issues/18"
"https://api.github.com/repos/spacebarchat/server/issues/"
);
res = await res.json();
let { body } = res;
Expand All @@ -25,7 +25,7 @@ export default {
.replace(/\[x\]/g, "<input type='checkbox' checked disabled/>")
.replace(
/#(\d+)/g,
'<a href="https://github.com/fosscord/fosscord-rtc/issues/$1">#$1</a>'
'<a href="https://github.com/spacebarchat/server/issues/$1">#$1</a>'
);
}
};
Expand Down
Loading