summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-04-16 17:32:13 -0700
committerDessalines <happydooby@gmail.com>2019-04-16 17:32:13 -0700
commite7055b80dfb466ebb2c2ddd5f6e9e2b71fea52a6 (patch)
treef4fd666e9e4f5103634bd89312923b5ff58f1a71
parent6839cc9d6d3190d6f3541786db78d52b7cf2d086 (diff)
Version update
-rw-r--r--Dockerfile1
-rw-r--r--README.md30
-rw-r--r--ui/src/components/footer.tsx2
-rw-r--r--ui/src/version.ts2
4 files changed, 25 insertions, 10 deletions
diff --git a/Dockerfile b/Dockerfile
index e2803851..01a75850 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,7 +19,6 @@ COPY server/Cargo.toml server/Cargo.lock ./
RUN mkdir -p ./src/bin \
&& echo 'fn main() { println!("Dummy") }' > ./src/bin/main.rs
RUN cargo build --release --bin lemmy
-RUN ls ./target/release/.fingerprint/
RUN rm -r ./target/release/.fingerprint/server-*
# copy your source tree
diff --git a/README.md b/README.md
index 75baef5a..ea5fe3c1 100644
--- a/README.md
+++ b/README.md
@@ -10,22 +10,32 @@
A link aggregator / reddit clone for the fediverse.
-Made with [Rust](https://www.rust-lang.org), [Actix](https://actix.rs/), [Inferno](https://www.infernojs.org), [Typescript](https://www.typescriptlang.org/).
+[Lemmy Dev instance](https://dev.lemmy.ml) *for testing purposes only*
-## Navigation
-- [Matrix Chatroom](https://riot.im/app/#/room/#rust-reddit-fediverse:matrix.org)
-- [Issues / Feature Requests](https://github.com/dessalines/lemmy/issues)
-- Support the development via Patreon
+This is a **very early beta version**, and a lot of features are currently broken or missing.
## Features
-- TBD
+- Self hostable, easy to deploy.
+ - Comes with docker.
+- Open source.
+- Live-updating Comment threads.
+- Clean, minimal interface.
+ - Mobile-friendly.
+- Full vote scores `(+/-)` like old reddit.
+- Full moderation.
+ - Both site admins, and community moderators.
+ - Can lock, remove, and restore posts.
+ - Can remove and restore comments.
+- High performance.
+ - Server is written in rust.
+ - Front end is `~80kB` gzipped.
## Why's it called Lemmy?
- Lead singer from [motorhead](https://invidio.us/watch?v=pWB5JZRGl0U).
- The old school [video game](https://en.wikipedia.org/wiki/Lemmings_(video_game)).
- The [furry rodents](http://sunchild.fpwc.org/lemming-the-little-giant-of-the-north/).
-Goals r/ censorship
+Made with [Rust](https://www.rust-lang.org), [Actix](https://actix.rs/), [Inferno](https://www.infernojs.org), [Typescript](https://www.typescriptlang.org/) and [Diesel](http://diesel.rs/)
## Install
### Docker
@@ -58,6 +68,12 @@ and goto http://localhost:8536
- [Goals](docs/goals.md)
- [Ranking Algorithm](docs/ranking.md)
+## Support
+Support the development, and help cover hosting costs.
+- Patreon
+- bitcoin: `bc1queu73nwuheqtsp65nyh5hf4jr533r8rr5nsj75`
+- ethereum: `0x400c96c96acbC6E7B3B43B1dc1BB446540a88A01`
+
## Credits
Icons made by [Freepik](https://www.freepik.com/) licensed by [CC 3.0](http://creativecommons.org/licenses/by/3.0/)
diff --git a/ui/src/components/footer.tsx b/ui/src/components/footer.tsx
index fe6d971a..10aafe17 100644
--- a/ui/src/components/footer.tsx
+++ b/ui/src/components/footer.tsx
@@ -19,7 +19,7 @@ export class Footer extends Component<any, any> {
<Link class="nav-link" to="/modlog">Modlog</Link>
</li>
<li class="nav-item">
- <a class="nav-link" href={repoUrl}>Contribute</a>
+ <a class="nav-link" href={`${repoUrl}#support`}>Contribute</a>
</li>
<li class="nav-item">
<a class="nav-link" href={repoUrl}>Code</a>
diff --git a/ui/src/version.ts b/ui/src/version.ts
index 03cbc5b5..2dd94f84 100644
--- a/ui/src/version.ts
+++ b/ui/src/version.ts
@@ -1 +1 @@
-export let version: string = "v0.0.2-13-g1bf0dfd"; \ No newline at end of file
+export let version: string = "v0.0.2-16-g6839cc9"; \ No newline at end of file