Skip to content

Commit da64b61

Browse files
committed
Various website fixes
1 parent 563b849 commit da64b61

File tree

17 files changed

+62
-39
lines changed

17 files changed

+62
-39
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
![Graphite Logo](graphite_splash.png)
1+
![Graphite logo](website/static/images/logos/splash.svg)
22

33
# Powerful 2D vector and raster editing. Procedural and nondestructive.
44

55
Graphite is a digital content creation software package for 2D graphics, merging traditional tool-based interactive editing workflows with a powerful node-based approach to procedural, non-destructive editing and compositing. The application strives to be the most user-friendly and versatile tool for vector and raster illustration, graphic design, photo editing, procedural texturing, data-driven visualization, and technical art.
66

77
While the project is still in early development, implementation progress has been moving forward at a swift pace. The Graphite Alpha release is launching soon and focuses on vector art for SVG creation. The next major milestone will introduce a nondestructive backend for vector graphics with a powerful node graph system. Later releases will provide better vector rendering capabilities and then resolution-agnostic raster editing and compositing.
88

9-
Play around with Graphite right now in your browser at [editor.graphite.design](https://editor.graphite.design). Windows, Mac, and Linux will additionally be supported with a native (not web-based) desktop client later in the development roadmap.
9+
Play around with Graphite right now in your browser at [editor.graphite.rs](https://editor.graphite.rs). Windows, Mac, and Linux will additionally be supported with a native (not web-based) desktop client later in the development roadmap.
1010

1111
## Contributing
1212

1313
We need Rust and web developers! See [instructions here](https://github.com/GraphiteEditor/Graphite/issues/202) for getting started.
1414

15-
We are also in search of a new logo and brand style system. If you are an experienced designer, please get in touch for more details.
15+
We are also in search of artists to help create material for the website. Please get in touch for more details.
1616

1717
## Discord
1818

19-
If the Graphite project strikes your fancy, join our Discord community to chat with the community and development team. You're invited to stop by just to lurk, ask questions, offer suggestions, or get involved in the project. We are seeking collaborators to help design and develop the software and this is where we communicate. Paste `https://di----scord.gg/uMjBz----5N68W` into your browser and delete the dashes. (To prevent spam bots, please don't share the link on any website without the dashes.)
20-
19+
If the Graphite project strikes your fancy, [join our Discord community](https://discord.graphite.rs) to chat with the community and development team. You're invited to stop by just to lurk, ask questions, offer suggestions, or get involved in the project. We are seeking collaborators to help design and develop the software and this is where we communicate.
2120
## Vision
2221

2322
Graphite is an open source, cross-platform digital content creation desktop and web application for 2D graphics editing, photo processing, vector art, digital painting, illustration, data visualization, compositing, and more. Inspired by the open source success of Blender in the 3D domain, it aims to bring 2D content creation to new heights with efficient workflows influenced by Photoshop/Gimp and Illustrator/Inkscape and backed by a powerful node-based, nondestructive approach proven by Houdini and Substance.

editor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name = "graphite-editor"
33
publish = false
44
version = "0.0.0"
55
rust-version = "1.56.0"
6-
authors = ["Graphite Authors <contact@graphite.design>"]
6+
authors = ["Graphite Authors <contact@graphite.rs>"]
77
edition = "2021"
88
readme = "../README.md"
9-
homepage = "https://www.graphite.design"
9+
homepage = "https://graphite.rs"
1010
repository = "https://github.com/GraphiteEditor/Graphite"
1111
license = "Apache-2.0"
1212

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"type": "git",
1414
"url": "git+https://github.com/GraphiteEditor/Graphite.git"
1515
},
16-
"author": "Graphite Authors <contact@graphite.design>",
16+
"author": "Graphite Authors <contact@graphite.rs>",
1717
"license": "Apache-2.0",
18-
"homepage": "https://www.graphite.design",
18+
"homepage": "https://graphite.rs",
1919
"dependencies": {
2020
"class-transformer": "^0.5.0",
2121
"reflect-metadata": "^0.1.13",

frontend/src/components/widgets/inputs/MenuBarInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="menu-bar-input">
33
<div class="entry-container">
4-
<div @click="() => visitWebsite('https://www.graphite.design')" class="entry">
4+
<div @click="() => visitWebsite('https://graphite.rs')" class="entry">
55
<IconLabel :icon="'GraphiteLogo'" />
66
</div>
77
</div>

frontend/src/lifetime/errors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function githubUrl(panicDetails: string): string {
5858
5959
**Steps To Reproduce**
6060
Describe precisely how the crash occurred, step by step, starting with a new editor window.
61-
1. Open the Graphite Editor at https://editor.graphite.design
61+
1. Open the Graphite Editor at https://editor.graphite.rs
6262
2.
6363
3.
6464
4.

frontend/src/state/dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function createDialogState(editor: EditorState) {
8282
const buttons: TextButtonWidget[] = [
8383
{
8484
kind: "TextButton",
85-
callback: (): unknown => window.open("https://www.graphite.design", "_blank"),
85+
callback: (): unknown => window.open("https://graphite.rs", "_blank"),
8686
props: { label: "Website", emphasized: false, minWidth: 0 },
8787
},
8888
{

frontend/wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name = "graphite-wasm"
33
publish = false
44
version = "0.0.0"
55
rust-version = "1.56.0"
6-
authors = ["Graphite Authors <contact@graphite.design>"]
6+
authors = ["Graphite Authors <contact@graphite.rs>"]
77
edition = "2021"
88
readme = "../../README.md"
9-
homepage = "https://www.graphite.design"
9+
homepage = "https://graphite.rs"
1010
repository = "https://github.com/GraphiteEditor/Graphite"
1111
license = "Apache-2.0"
1212

graphene/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name = "graphite-graphene"
33
publish = false
44
version = "0.0.0"
55
rust-version = "1.56.0"
6-
authors = ["Graphite Authors <contact@graphite.design>"]
6+
authors = ["Graphite Authors <contact@graphite.rs>"]
77
edition = "2021"
88
readme = "../README.md"
9-
homepage = "https://www.graphite.design"
9+
homepage = "https://graphite.rs"
1010
repository = "https://github.com/GraphiteEditor/Graphite"
1111
license = "Apache-2.0"
1212

graphite_splash.png

-61.3 KB
Binary file not shown.

proc-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name = "graphite-proc-macros"
33
publish = false
44
version = "0.0.0"
55
rust-version = "1.56.0"
6-
authors = ["Graphite Authors <contact@graphite.design>"]
6+
authors = ["Graphite Authors <contact@graphite.rs>"]
77
edition = "2021"
88
readme = "../README.md"
9-
homepage = "https://www.graphite.design"
9+
homepage = "https://graphite.rs"
1010
repository = "https://github.com/GraphiteEditor/Graphite"
1111
license = "Apache-2.0"
1212

0 commit comments

Comments
 (0)