Commit 4abf5aca authored by marius david's avatar marius david
Browse files

rename lemmy to the more generic fediverse when appropriate

parent 91405197
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
# 2024 Lemmy canvas Atlas
# 2024 Fediverse Canvas Atlas

The 2024 Lemmy canvas Atlas is an interactive map aiming to chart the artworks created during that event, hosted by grant in 2024. It is made with information to each artwork of the canvas provided by the community.
The 2024 Fediverse Canvas Atlas is an interactive map aiming to chart the artworks created during that event, hosted by grant in 2024. It is made with information to each artwork of the canvas provided by the community.

This project is a fork of the [2023 r/place Atlas](https://github.com/placeAtlas/atlas-2023), which have a similar goal, but for Reddit’s event.

This project is licensed under the [GNU Affero General Public License v3.0](LICENSE).

//TODO:lemmy adaptation:need hosting and more documentation.
//TODO:canvas adaptation:need hosting and more documentation.

You can check out the website by visiting [2023.place-atlas.stefanocoding.me](https://2023.place-atlas.stefanocoding.me/). The subreddit, [r/placeAtlas2023](https://www.reddit.com/r/placeAtlas2023/), is available for communications via Reddit.

@@ -16,5 +16,5 @@ This project is open source, and contributions are welcome. In fact, the Atlas r

Please read [CONTRIBUTING.md](CONTRIBUTING.md) to learn how to submit a new entry, edit existing entries, or contribute to the development of the codebase.

//TODO:lemmy adaptation:need new channels
//TODO:canvas adaptation:need new channels
[The r/placeAtlas2023 subreddit](https://reddit.com/r/placeAtlas2023/) and [the Discord server](https://discord.gg/pJkm23b2nA) is also the place to submit all bug reports, feature requests, or questions.
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
    {
			packages = rec {
				website = pkgs.stdenvNoCC.mkDerivation {
					pname = "lemmy-atlas-website";
					pname = "fediverse-canvas-atlas-website";
					version = "TODO-use-git";

					dontUnpack = true;
(321 KiB)

File moved.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+9 −9
Original line number Diff line number Diff line
@@ -2,22 +2,22 @@
// Please also check code indicated with "@instanceonly" outside this file.
// TODO: Avoid having instance-only code inside the main scripts to make updating easier.

//TODO:lemmy adaptation
const prodDomain = "templemmy.mariusdavid.fr"
//TODO:canvas adaptation
const prodDomain = "canvas.mariusdavid.fr"
window.prodDomain = prodDomain

const instanceId = "lemmy2024"
const instanceId = "canvas2024"
window.instanceId = instanceId

//TODO:lemmy adaptation
//TODO:canvas adaptation
const instanceSubreddit = "none"
window.instanceSubreddit = instanceSubreddit

//TODO:lemmy adaptation
//TODO:canvas adaptation
const instanceRepo = "todo"
window.instanceRepo = instanceRepo

const pageTitle = "The 2024 Lemmy canvas Atlas"
const pageTitle = "The 2024 Fediverse canvas Atlas"
window.pageTitle = pageTitle

const canvasSize = {
@@ -50,10 +50,10 @@ const variationsConfig = {
		versions: [
			{
				timestamp: "Final",
				url: "./_img/lemmycanvas/final.png",
				url: "./_img/fedicanvas/final.png",
			}
		],
		//TODO:lemmy adaptation
		//TODO:canvas adaptation
		icon: '<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 192 192" aria-hidden="true"><polygon points="154 0 154 38 39 38 39 192 0 192 0 0"/><polygon points="192 38 192 192 77 192 77 153 154 153 154 38"/><rect x="77" y="77" width="38" height="38"/></svg>'

	}
@@ -442,7 +442,7 @@ const externalLinksConfig = [
console.info(`%cThe 2023 r/place Atlas
%cCopyright (c) 2017 Roland Rytz <roland@draemm.li>
Copyright (c) 2023 Place Atlas Initiative and contributors
Copyright (c) 2024 Lemmy canvas atlas contributors
Copyright (c) 2024 Fediverse canvas atlas contributors
Licensed under AGPL-3.0 (https://2023.place-atlas.stefanocoding.me/license.txt)

https://2023.place-atlas.stefanocoding.me/
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@
		
		<script src="./_js/favicon.js" defer></script>
	</head>
	<!-- TODO: lemmy adaptation -->
	<!-- TODO: canvas adaptation -->
	<body>
		<nav class="navbar navbar-expand-md fixed-top bg-body border-bottom">
			<div class="container">
Loading