Skip to content

Commit e08bbcf

Browse files
committed
replaced .dev links with .me links
1 parent e89e165 commit e08bbcf

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module.exports = {
6767
},
6868
{
6969
label: "API Docs",
70-
href: "https://api.fastj.dev",
70+
href: "https://api.fastj.me",
7171
},
7272
],
7373
},
@@ -89,7 +89,7 @@ module.exports = {
8989
},
9090
{
9191
label: "GitHub",
92-
href: "https://fastj.dev/",
92+
href: "https://fastj.me/",
9393
},
9494
],
9595
},

news/2021-08-04-fastj-1-5-0-release.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ I'm proud to announce that the FastJ Discord server is now open -- [join here][D
2828
With the popularity and feature list of FastJ growing, 13 new example programs have been added! They cover a range of topics like getting started, engine configuration, keyboard and mouse input, text, polygons, models, and more.
2929

3030
### Examples Source Code
31-
- [Hello, FastJ](https://example.fastj.dev/hellofastj/Main.java) -- Creating a Window in FastJ
32-
- [FastJEngine Logging](https://example.fastj.dev/logging/Main.java) -- Logging information and errors in FastJ
33-
- [FastJEngine Configuration](https://example.fastj.dev/engineconfig/Main.java) -- Configuring FastJ's FPS, UPS, and viewer/game window size
34-
- [Polygon2D](https://example.fastj.dev/polygon2d/Main.java) -- Creating and using `Polygon2D` objects (polygons) in FastJ
35-
- [Text2D](https://example.fastj.dev/text2d/Main.java) -- Creating and using `Text2D` objects (text) in FastJ
36-
- [Model2D](https://example.fastj.dev/model2d/Main.java) -- Creating and using `Model2D` objects (models) in FastJ
37-
- [Model File Read/Write](https://example.fastj.dev/modelreadwrite/Main.java) -- Reading and writing `Model2D` objects from/to files in FastJ
38-
- [Display Rendering Settings](https://example.fastj.dev/rendersettings/Main.java) -- changing a `Display`'s global rendering settings
39-
- [Keyboard Input](https://example.fastj.dev/keyboard/Main.java) -- Getting keyboard input in FastJ
40-
- [Mouse Input](https://example.fastj.dev/mouse/Main.java) -- getting mouse input in FastJ
31+
- [Hello, FastJ](https://examples.fastj.me/hellofastj/Main.java) -- Creating a Window in FastJ
32+
- [FastJEngine Logging](https://examples.fastj.me/logging/Main.java) -- Logging information and errors in FastJ
33+
- [FastJEngine Configuration](https://examples.fastj.me/engineconfig/Main.java) -- Configuring FastJ's FPS, UPS, and viewer/game window size
34+
- [Polygon2D](https://examples.fastj.me/polygon2d/Main.java) -- Creating and using `Polygon2D` objects (polygons) in FastJ
35+
- [Text2D](https://examples.fastj.me/text2d/Main.java) -- Creating and using `Text2D` objects (text) in FastJ
36+
- [Model2D](https://examples.fastj.me/model2d/Main.java) -- Creating and using `Model2D` objects (models) in FastJ
37+
- [Model File Read/Write](https://examples.fastj.me/modelreadwrite/Main.java) -- Reading and writing `Model2D` objects from/to files in FastJ
38+
- [Display Rendering Settings](https://examples.fastj.me/rendersettings/Main.java) -- changing a `Display`'s global rendering settings
39+
- [Keyboard Input](https://examples.fastj.me/keyboard/Main.java) -- Getting keyboard input in FastJ
40+
- [Mouse Input](https://examples.fastj.me/mouse/Main.java) -- getting mouse input in FastJ
4141

4242
Furthermore, the following examples have been removed:
4343
- "Hello World!" has been removed, in favor of "Hello, FastJ!"
@@ -404,7 +404,7 @@ box.setRenderStyle(RenderStyle.FillAndOutline);
404404

405405

406406
[Discord-Link]: https://discord.gg/FTWsYVSDv6 "Join the FastJ Discord!"
407-
[Audio-Example-Link]: https://example.fastj.dev/audio/Main.java "FastJ Audio Example"
408-
[Polygon2D-Example-Link]: https://example.fastj.dev/polygon2d/Main.java "FastJ Polygon2D Example"
409-
[Text2D-Example-Link]: https://example.fastj.dev/text2d/Main.java "FastJ Text2D Example"
410-
[Model2D-Example-Link]: https://example.fastj.dev/model2d/Main.java "FastJ Model2D Example"
407+
[Audio-Example-Link]: https://examples.fastj.me/audio/Main.java "FastJ Audio Example"
408+
[Polygon2D-Example-Link]: https://examples.fastj.me/polygon2d/Main.java "FastJ Polygon2D Example"
409+
[Text2D-Example-Link]: https://examples.fastj.me/text2d/Main.java "FastJ Text2D Example"
410+
[Model2D-Example-Link]: https://examples.fastj.me/model2d/Main.java "FastJ Model2D Example"

news/2021-08-10-fastj-1-5-1-release.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ FastJ 1.5.1 has been released, with 80 new commits since FastJ [1.5.0][FastJ-Ver
2222
## New Example Programs
2323
2 new example programs have been added to FastJ: Simple Audio and Behaviors! Check them out below:
2424

25-
- [FastJ Audio](https://example.fastj.dev/audio/Main.java) -- Simple Audio Playing/Loading in FastJ
26-
- [Behaviors](https://example.fastj.dev/behaviors/Main.java) -- Behaviors in FastJ
25+
- [FastJ Audio](https://examples.fastj.me/audio/Main.java) -- Simple Audio Playing/Loading in FastJ
26+
- [Behaviors](https://examples.fastj.me/behaviors/Main.java) -- Behaviors in FastJ
2727

2828

2929
## Replace Issue Templates with Issue Forms

wiki/fastj-basics/fastj-quick-start.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,5 +141,5 @@ Check out the following links to learn how to use FastJ:
141141
[Git-Link]: https://git-scm.com/downloads "Download Git, the powerful source control management tool."
142142

143143
[Terminals Are Different]: https://gist.github.com/lucasstarsz/9bbc306f8655b916367d557043e498ad "Terminals Access Files Differently"
144-
[Example-Programs-Readme-Link]: https://example.fastj.dev "FastJ Examples"
145-
[Documentation-Link]: https://api.fastj.dev "FastJ API Documentation"
144+
[Example-Programs-Readme-Link]: https://examples.fastj.me "FastJ Examples"
145+
[Documentation-Link]: https://api.fastj.me "FastJ API Documentation"

wiki/tutorials/hello-fastj.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Otherwise, keep reading! These tutorials will do their best to cover all the thi
173173

174174

175175
[FastJ-In-Minutes-Link]: /wiki/fastj-basics/fastj-quick-start "Hit the ground running by creating your first FastJ program!"
176-
[HelloFastJ-Example-Link]: https://example.fastj.dev/hellofastj/Main.java "Hello, FastJ! | FastJ Tutorials"
176+
[HelloFastJ-Example-Link]: https://examples.fastj.me/hellofastj/Main.java "Hello, FastJ! | FastJ Tutorials"
177177
[Engine-Configuration-Tutorial-Link]: /wiki/tutorials/fastj-configuration "Configure FastJEngine's FPS, UPS, initial window size, and more!"
178178
[Discord-Link]: https://discord.gg/FTWsYVSDv6 "Join the FastJ Discord!"
179-
[Examples-Link]: https://example.fastj.dev/ "FastJ Examples"
179+
[Examples-Link]: https://examples.fastj.me/ "FastJ Examples"

0 commit comments

Comments
 (0)