diff --git a/website/dist/docs/contributing/code-of-conduct/index.html b/website/dist/docs/contributing/code-of-conduct/index.html index a534971..92bc7f7 100644 --- a/website/dist/docs/contributing/code-of-conduct/index.html +++ b/website/dist/docs/contributing/code-of-conduct/index.html @@ -18,6 +18,15 @@

Code of Conduct

+

If you would like to contribute code to libreevent, we'd like you to follow the following guidelines.

+
diff --git a/website/dist/docs/contributing/design-guidelines/index.html b/website/dist/docs/contributing/design-guidelines/index.html index bb352bc..d4c6413 100644 --- a/website/dist/docs/contributing/design-guidelines/index.html +++ b/website/dist/docs/contributing/design-guidelines/index.html @@ -18,6 +18,8 @@

Design Guidelines

+

Everything in libreevent should be designed in a way that puts legibility and ease of use as its priority, instead of opting for special effects that are, undeniably, nice, but do not contribute to improved usability and, as every effect needs some lines of code, also wastes bandwidth that is very limited if a lot of people access the sites simultaneously.

+

All color used in libreevent should be a color variable that is defined in the App.vue files which means those colors can be changed easily in the future or as part of switching to dark mode. When designing something, please avoid adding more colors whenever possible.

diff --git a/website/dist/docs/contributing/packaging/index.html b/website/dist/docs/contributing/packaging/index.html new file mode 100644 index 0000000..5ac930c --- /dev/null +++ b/website/dist/docs/contributing/packaging/index.html @@ -0,0 +1,31 @@ + + + + Packaging :: docs - libreevent + + + + + + + + + + + + +
+
+
+

Packaging

+

To be able to work on libreevent, you need to have node.js and npm installed on your computer.

+

Then, to set up the development environment, run

+
npm i
+
+

in the src/server, src/webapp/main and src/webapp/setup directories. This creates the node_modules folder in each of those directories. This is also what you need to do, if you want to upload the development version of libreevent.

+
+
+ + + + \ No newline at end of file diff --git a/website/dist/docs/side-bar.html b/website/dist/docs/side-bar.html index ff145d6..fc038b2 100644 --- a/website/dist/docs/side-bar.html +++ b/website/dist/docs/side-bar.html @@ -23,6 +23,7 @@ Getting Started Code of Conduct Design Guidelines +Packaging Contributing Plugins Errors diff --git a/website/dist/download/thanks/index.html b/website/dist/download/thanks/index.html new file mode 100644 index 0000000..9a6d35a --- /dev/null +++ b/website/dist/download/thanks/index.html @@ -0,0 +1,71 @@ + + + + + + + + Download - libreǝvent + + + + + +
+
+

Thank you for downloading libreǝvent

+
+
+

Where to go from here?

+ +
+ + + + + + \ No newline at end of file diff --git a/website/dist/index.html b/website/dist/index.html index 50ee592..5ca9cad 100644 --- a/website/dist/index.html +++ b/website/dist/index.html @@ -32,7 +32,7 @@

Visual seat plan editor

Use libreǝvent's powerful seat plan editor to create a seat plan that closely resembles your event location within minutes

- Seat plan editor showcase + Docs

Simple to set up

@@ -47,7 +47,7 @@

Free & Open Source

You may use this project entirely for free or donate some money to keep it alive! You may also help contributing to the project to make it even better!

- Donate + Donate Contributing
diff --git a/website/src/contributing/design-guidelines.md b/website/src/contributing/design-guidelines.md index cb72ea4..8b5844f 100644 --- a/website/src/contributing/design-guidelines.md +++ b/website/src/contributing/design-guidelines.md @@ -1,3 +1,5 @@ # Design Guidelines -Everything in libreevent should be designed in a way that puts legibility and ease of use as its priority, instead of opting for special effects that are, undeniably, nice, but do not contribute to improved usability and, as every effect needs some lines of code, also wastes bandwidth that is very limited if a lot of people access the sites simultaneously. \ No newline at end of file +Everything in libreevent should be designed in a way that puts legibility and ease of use as its priority, instead of opting for special effects that are, undeniably, nice, but do not contribute to improved usability and, as every effect needs some lines of code, also wastes bandwidth that is very limited if a lot of people access the sites simultaneously. + +All color used in libreevent should be a color variable that is defined in the App.vue files which means those colors can be changed easily in the future or as part of switching to dark mode. When designing something, please avoid adding more colors whenever possible. \ No newline at end of file