Simon Hausmann
cbefe741fc
Link to the template repos from the README
2021-09-27 10:47:37 +02:00
Simon Hausmann
ace30e6c8f
Sync README status part with blog
2021-08-19 08:39:17 +02:00
Tobias Hunger
aea4ecca99
Apply pre-commit hooks to all files
2021-08-17 22:38:16 +02:00
Simon Hausmann
ba58bd86e5
Another small gammar edit
2021-08-11 15:49:42 +02:00
Simon Hausmann
3474204a2b
Minor grammar polish
...
(and teaching cSpell that microcontroller is a word :)
2021-08-11 15:46:20 +02:00
Olivier Goffart
862cfe1e16
Update README.md
...
Update the "current status" section
2021-08-11 15:35:21 +02:00
Simon Hausmann
39640ca6aa
Remove table of contents from top-level README.md
...
GitHub has its own table of contents dropdown now, which is nice and makes this one redundant.
2021-08-11 15:19:58 +02:00
Simon Hausmann
c8e96f60b0
Added link from the README to the YouTube tutorial
2021-08-06 16:14:25 +02:00
Simon Hausmann
8b4e41ff41
README: link to the tutorial
...
... and rename the section to "Documentation" and move the badges to the front
2021-08-06 16:01:00 +02:00
Olivier Goffart
8f4caa5d6f
Add link to the license offering for the commercial license
2021-08-05 14:25:28 +02:00
Simon Hausmann
4f8c9b4378
Add a badge for GH discussions as forum
2021-07-10 08:13:13 +02:00
Simon Hausmann
a782bc7853
README: Spelling fixes
2021-07-09 17:44:49 +02:00
Rishabh Budhiraja
74727d953f
Renames viewer to sixtyfps-viewer and publishes it on crates.io ( #237 )
...
* Renames viewer to sixtyfps-viewer and publishes it on crates.io
* Maintain the directory name consistency
2021-05-22 08:34:50 +02:00
Olivier Goffart
16fe50fed1
Add documentation about tools in the README
2021-05-02 09:22:32 +02:00
Simon Hausmann
800b2ed324
Update README to remove the experimental note
...
We're a lot more mature now :-)
2021-04-22 12:45:43 +02:00
Olivier Goffart
bf88bad131
Mention our Mattermost instance in the Readme
2021-03-11 11:39:49 +01:00
Simon Hausmann
fc29b1b7b1
Pull the architecture diagram off the website, too
2020-11-25 09:35:01 +01:00
Simon Hausmann
303c645ace
Move the screenshots to the website
2020-11-25 09:30:50 +01:00
Simon Hausmann
236bb0996a
Add the slide puzzle to the README
2020-11-24 18:37:26 +01:00
Simon Hausmann
b711473b6a
Re-order the demos in the README
...
Printer demo, todo and widget gallery
2020-11-24 18:35:19 +01:00
Simon Hausmann
d33e2c8a88
Mention that we're not in Norway anymore :)
2020-11-02 10:53:49 +01:00
Olivier Goffart
263df7dc63
Remove the www from all sixtyfps.io URL
2020-10-29 11:06:06 +01:00
Simon Hausmann
d412ec8163
Add the todo demo do the main readme
2020-10-22 14:21:42 +02:00
Simon Hausmann
58a1c7ca84
Add npm badget
2020-10-22 13:29:12 +02:00
Simon Hausmann
af6d3661cb
Minor README tweak
2020-10-21 22:02:26 +02:00
Olivier Goffart
4efa67b6a6
README changes
2020-10-21 15:48:07 +02:00
Simon Hausmann
4bc72ec6b3
Link to the node docs from the README
...
Like we do for C++ and Rust
2020-10-20 16:50:00 +02:00
Simon Hausmann
db78199550
Added a little "about us" section to the README
2020-10-20 15:42:04 +02:00
Simon Hausmann
4758e18e12
Move the screenshots of the desktop styling up
...
The screenshots should not be under the web assembly simulation, they
should be on the same level. Also replaced the "Controls" in the title with "Widgets"
since that's also what the import is called.
2020-10-19 18:45:33 +02:00
Olivier Goffart
f6edfb5e8e
Some documentation
2020-10-17 16:46:45 +02:00
Simon Hausmann
a5e2c5ddb5
Fix link title for FAQ
...
It looks nicer without extension
2020-10-16 21:16:58 +02:00
Simon Hausmann
72b1f0259b
Add tables of contents for convenience to the README
...
The VS code Markdown All In One extension makes it easy to keep it
automatically up-to-date.
2020-10-16 15:37:29 +02:00
Simon Hausmann
f3de996262
Added a FAQ
2020-10-16 15:24:17 +02:00
Simon Hausmann
6aa292eac1
Change the names of the logical and physical pixel units
...
The logical pixels are now just called "px" and the less frequently
used physical pixels have the "phx" suffix.
The existing markup was adapted using the syntax updater and the
following patch:
+ if node.kind() == SyntaxKind::NumberLiteral {
+ if node.text().ends_with("lx") {
+ return write!(
+ file,
+ "{}px",
+ node.text().as_str().split_at(node.text().as_str().len() - 2).0
+ );
+ }
+ if node.text().ends_with("px") {
+ return write!(
+ file,
+ "{}phx",
+ node.text().as_str().split_at(node.text().as_str().len() - 2).0
+ );
+ }
+ }
Fixes #49
2020-10-16 07:19:40 +02:00
Olivier Goffart
c4deac88c5
Add links to crates.io
2020-10-13 11:51:00 +02:00
Olivier Goffart
1138c9dbed
Normalize the spelling of SixtyFPS
2020-10-13 07:48:55 +02:00
Simon Hausmann
ce68004aa3
Two minor cleanups in the README
2020-10-12 21:11:12 +02:00
Olivier Goffart
d0611d8491
Document widgets that were missing documentation
2020-10-12 13:36:25 +02:00
Olivier Goffart
23e9a5f339
Fix some spelling issues in README and doc
2020-10-12 12:59:40 +02:00
Simon Hausmann
5f36134ff9
Emphasize the "What" in the README
...
Per feedback, the first sentence about the repo is obvious. So go
straight for the "What". Also emphasize the early status.
2020-10-12 11:34:48 +02:00
Simon Hausmann
49516826a6
Clarify development support intent in the README
...
Emphasize dual licensing over pure commercial.
2020-10-12 10:48:53 +02:00
Simon Hausmann
e1022952d3
Some edits for the README
2020-10-12 08:06:21 +02:00
Olivier Goffart
9d106c6830
Some changes in the README
2020-10-09 13:49:39 +02:00
Olivier Goffart
8fbfc3c4d7
Improve README
2020-10-09 13:39:40 +02:00
Olivier Goffart
fcd5d11193
Some description of the architecture
2020-10-02 21:47:01 +02:00
Simon Hausmann
94cd7bb199
Link to the GitHub Discussions
2020-10-02 16:17:07 +02:00
Simon Hausmann
e82e204b1e
Fix a typo in the .60 syntax example and beef it up just a little
...
Eventually it probably makes sense to replace this with something that highlights models?
2020-09-29 22:34:12 +02:00
Simon Hausmann
f5e221e95b
Try to include screenshots of the gallery, tweak the layout a little and update the others
...
This is far from perfect, but something...
2020-09-11 17:38:35 +02:00
Simon Hausmann
98fbe18a12
Add a CI badget to the readme
2020-09-07 09:00:01 +02:00
Simon Hausmann
dcb923c1df
Simplify markdown links to C++/Rust docs
...
and also offer them conveniently in the primary readme.
2020-09-03 17:35:07 +02:00