Skip to content

Commit

Permalink
fix broken news links
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasstarsz committed Feb 18, 2022
1 parent e08bbcf commit 8e5ca17
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
28 changes: 14 additions & 14 deletions news/2021-08-04-fastj-1-5-0-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ I'm proud to announce that the FastJ Discord server is now open -- [join here][D
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.

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

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


[Discord-Link]: https://discord.gg/FTWsYVSDv6 "Join the FastJ Discord!"
[Audio-Example-Link]: https://examples.fastj.me/audio/Main.java "FastJ Audio Example"
[Polygon2D-Example-Link]: https://examples.fastj.me/polygon2d/Main.java "FastJ Polygon2D Example"
[Text2D-Example-Link]: https://examples.fastj.me/text2d/Main.java "FastJ Text2D Example"
[Model2D-Example-Link]: https://examples.fastj.me/model2d/Main.java "FastJ Model2D Example"
[Audio-Example-Link]: http://examples.fastj.me/audio/Main.java "FastJ Audio Example"
[Polygon2D-Example-Link]: http://examples.fastj.me/polygon2d/Main.java "FastJ Polygon2D Example"
[Text2D-Example-Link]: http://examples.fastj.me/text2d/Main.java "FastJ Text2D Example"
[Model2D-Example-Link]: http://examples.fastj.me/model2d/Main.java "FastJ Model2D Example"
4 changes: 2 additions & 2 deletions news/2021-08-10-fastj-1-5-1-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ FastJ 1.5.1 has been released, with 80 new commits since FastJ [1.5.0][FastJ-Ver
## New Example Programs
2 new example programs have been added to FastJ: Simple Audio and Behaviors! Check them out below:

- [FastJ Audio](https://examples.fastj.me/audio/Main.java) -- Simple Audio Playing/Loading in FastJ
- [Behaviors](https://examples.fastj.me/behaviors/Main.java) -- Behaviors in FastJ
- [FastJ Audio](http://examples.fastj.me/audio/Main.java) -- Simple Audio Playing/Loading in FastJ
- [Behaviors](http://examples.fastj.me/behaviors/Main.java) -- Behaviors in FastJ


## Replace Issue Templates with Issue Forms
Expand Down
2 changes: 1 addition & 1 deletion news/2022-02-17-fastj-1-6-0-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ hide_table_of_contents: false
FastJ 1.6.0 has been released, with 80 new commits since FastJ [1.5.1][FastJ-Version-1.5.1-Release-Link]. This version of FastJ contains bug fixes, new features, new examples, and more! Read on to find out what's new.


[FastJ-Version-1.5.1-Release-Link]: /news/2022/02/17/fastj-1-5-1-release "FastJ 1.5.1 Release"
[FastJ-Version-1.5.1-Release-Link]: /news/2021/08/10/fastj-1-5-1-release "FastJ 1.5.1 Release"

<!--truncate-->

Expand Down
2 changes: 1 addition & 1 deletion wiki/fastj-basics/fastj-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@ Check out the following links to learn how to use FastJ:
[Git-Link]: https://git-scm.com/downloads "Download Git, the powerful source control management tool."

[Terminals Are Different]: https://gist.github.com/lucasstarsz/9bbc306f8655b916367d557043e498ad "Terminals Access Files Differently"
[Example-Programs-Readme-Link]: https://examples.fastj.me "FastJ Examples"
[Example-Programs-Readme-Link]: http://examples.fastj.me "FastJ Examples"
[Documentation-Link]: https://api.fastj.me "FastJ API Documentation"
4 changes: 2 additions & 2 deletions wiki/tutorials/hello-fastj.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Otherwise, keep reading! These tutorials will do their best to cover all the thi


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

0 comments on commit 8e5ca17

Please sign in to comment.