Remove GitHub links

This commit is contained in:
david-swift 2026-02-02 21:55:12 +01:00
parent 0c87eaa7f3
commit b7307981db
9 changed files with 19 additions and 19 deletions

View File

@ -47,7 +47,7 @@ An article about the project's motivation is available on the [website of the Sw
It is recommended to develop apps inside of a Flatpak. It is recommended to develop apps inside of a Flatpak.
That way, you don't have to install Swift or any of the dependencies on your system, and you always have access to the latest versions. That way, you don't have to install Swift or any of the dependencies on your system, and you always have access to the latest versions.
Take a look at the [template repository](https://github.com/AparokshaUI/AdwaitaTemplate). Take a look at the [template repository](https://git.aparoksha.dev/aparoksha/adwaita-template).
This works on Linux only. This works on Linux only.
#### Directly on system #### Directly on system

View File

@ -3,16 +3,16 @@
</p> </p>
<p align="center"> <p align="center">
<a href="https://aparokshaui.github.io/adwaita-swift/"> <a href="https://adwaita-swift.aparoksha.dev/documentation/adwaita/">
Documentation Documentation
</a> </a>
· ·
<a href="https://github.com/AparokshaUI/Adwaita"> <a href="https://git.aparoksha.dev/aparoksha/adwaita-swift">
Adwaita for Swift on GitHub Adwaita for Swift Source
</a> </a>
</p> </p>
This repository contains documentation for [Adwaita for Swift](https://github.com/AparokshaUI/Adwaita). It is hosted [here](https://aparokshaui.github.io/adwaita-swift/). This repository contains documentation for [Adwaita for Swift](https://git.aparoksha.dev/aparoksha/adwaita-swift). It is hosted [here](https://adwaita-swift.aparoksha.dev/documentation/adwaita/).
## Thanks ## Thanks

View File

@ -6,7 +6,7 @@
@ContentAndMedia { @ContentAndMedia {
# Topics # Topics
You can find an overview of the available documentation [here](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita/#topics) or in the sidebar. You can find an overview of the available documentation [here](https://adwaita-swift.aparoksha.dev/documentation/adwaita/#topics) or in the sidebar.
It contains a section with the available tutorials (such as this one), articles covering the basics, advanced articles, and multiple sections covering the available types. It contains a section with the available tutorials (such as this one), articles covering the basics, advanced articles, and multiple sections covering the available types.
You'll most often use the section `Views` as views are the most important part of apps. You'll most often use the section `Views` as views are the most important part of apps.

View File

@ -36,7 +36,7 @@
@Step { @Step {
Clone the template repository into the `HelloWorld` directory using `git clone https://git.aparoksha.dev/aparoksha/adwaita-template HelloWorld`. Clone the template repository into the `HelloWorld` directory using `git clone https://git.aparoksha.dev/aparoksha/adwaita-template HelloWorld`.
This creates a directory `HelloWorld` containing the content of the [Adwaita Template](https://github.com/AparokshaUI/AdwaitaTemplate). This creates a directory `HelloWorld` containing the content of the [Adwaita Template](https://git.aparoksha.dev/aparoksha/adwaita-template).
@Image(source: "GitClone.png", alt: "The GNOME Console app.") @Image(source: "GitClone.png", alt: "The GNOME Console app.")
} }
@Step { @Step {

View File

@ -23,11 +23,11 @@
@Section(title: "Experiment with the code") { @Section(title: "Experiment with the code") {
@ContentAndMedia { @ContentAndMedia {
Hopefully, you are now able to modify the app to fit your needs. Hopefully, you are now able to modify the app to fit your needs.
Find the available widgets and their modifiers in the [docs](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita), Find the available widgets and their modifiers in the [docs](https://adwaita-swift.aparoksha.dev/documentation/adwaita/),
interact on [GitHub](https://github.com/AparokshaUI/adwaita-swift) if you need a widget that you cannot find in the docs, browse the [source](https://git.aparoksha.dev/aparoksha/adwaita-swift) and open an issue if you need a widget that you cannot find in the docs,
and showcase your version of the Subtasks app or other projects related to _Adwaita for Swift_ in the [discussions](https://github.com/AparokshaUI/adwaita-swift/discussions/categories/show-and-tell). and showcase your version of the Subtasks app or other projects related to _Adwaita for Swift_ in the [discussions](https://forums.aparoksha.dev/).
Otherwise, feel free to [ask questions](https://github.com/AparokshaUI/adwaita-swift/discussions). Otherwise, feel free to [ask questions](https://forums.aparoksha.dev/).
} }
} }
} }

View File

@ -34,7 +34,7 @@
There are many other bindings available for various programming languages, so if you don't want to learn Swift, take a look at a [selection of official and unofficial bindings](https://github.com/janvhs/Awesome-Libadwaita). There are many other bindings available for various programming languages, so if you don't want to learn Swift, take a look at a [selection of official and unofficial bindings](https://github.com/janvhs/Awesome-Libadwaita).
In this tutorial, we'll start by covering the basics of Swift required for _Adwaita for Swift_. In this tutorial, we'll start by covering the basics of Swift required for _Adwaita for Swift_.
If you have questions, ideas, find typos, or think a passage could be improved, feel free to [participate in the _Adwaita for Swift_ discussions](https://github.com/AparokshaUI/adwaita-swift/discussions). If you have questions, ideas, find typos, or think a passage could be improved, feel free to [participate in the _Adwaita for Swift_ discussions](https://forums.aparoksha.dev/).
} }
} }

View File

@ -39,7 +39,7 @@
We'll start with the imperative way for comparison. We'll start with the imperative way for comparison.
Follow the code and find out how the UI will look like. Follow the code and find out how the UI will look like.
You can actually create UIs in this way using the [CAdw library](https://github.com/AparokshaUI/adwaita-swift/blob/a4b565723b39ba36dad5553e495c71b248a90b87/Package.swift#L22) in the _Adwaita for Swift_ package, and use the documentation [here](https://gnome.pages.gitlab.gnome.org/libadwaita/doc/1-latest/index.html) as a reference. You can actually create UIs in this way using the [CAdw library](https://git.aparoksha.dev/aparoksha/adwaita-swift/src/commit/c976c29cd0277863f4e6be0f64c7d05e393eb804/Package.swift#L20) in the _Adwaita for Swift_ package, and use the documentation [here](https://gnome.pages.gitlab.gnome.org/libadwaita/doc/1-latest/index.html) as a reference.
@Code(name: "main.swift", file: "HelloWorld1.swift") @Code(name: "main.swift", file: "HelloWorld1.swift")
} }
@Step { @Step {

View File

@ -63,14 +63,14 @@
@Resources { @Resources {
Explore more resources for learning about creating beautiful apps with _Adwaita for Swift._ Explore more resources for learning about creating beautiful apps with _Adwaita for Swift._
@Documentation(destination: "https://aparokshaui.github.io/adwaita-swift") { @Documentation(destination: "https://adwaita-swift.aparoksha.dev") {
Browse and search detailed API documentation. Browse and search detailed API documentation.
- [Keyboard shortcuts](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita/keyboardshortcuts) - [Keyboard shortcuts](https://adwaita-swift.aparoksha.dev/documentation/adwaita/keyboardshortcuts)
- [Creating widgets](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita/creatingwidgets) - [Creating widgets](https://adwaita-swift.aparoksha.dev/documentation/adwaita/creatingwidgets)
- [Publishing apps](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita/publishingapps) - [Publishing apps](https://adwaita-swift.aparoksha.dev/documentation/adwaita/publishingapps)
} }
@Forums(destination: "https://github.com/AparokshaUI/adwaita-swift/discussions") { @Forums(destination: "https://forums.aparoksha.dev/") {
Discuss _Adwaita for Swift_, ask questions, and showcase your work. Discuss _Adwaita for Swift_, ask questions, and showcase your work.
} }
} }

View File

@ -251,7 +251,7 @@
@Code(name: "Localized.yml", file: "Localized1.yml") @Code(name: "Localized.yml", file: "Localized1.yml")
} }
@Step { @Step {
Then, add translations for all the languages you want to support. Follow the instructions in the [Localized docs](https://github.com/AparokshaUI/Localized?tab=readme-ov-file#usage). Then, add translations for all the languages you want to support. Follow the instructions in the [Localized docs](https://git.aparoksha.dev/aparoksha/localized#usage).
@Code(name: "Localized.yml", file: "Localized2.yml") @Code(name: "Localized.yml", file: "Localized2.yml")
} }
@Step { @Step {