Skip to content

Commit

Permalink
Fix typos (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanBaulch authored Oct 15, 2024
1 parent dadec2e commit da94e3e
Show file tree
Hide file tree
Showing 17 changed files with 45 additions and 45 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@

## Version 3.1.0

### Improvments
### Improvements
- Scripting shortcuts can now be tested directly from the code editor screen
- The contrast of the color scheme for syntax highlighting in the code editor was increased for better readability
- In addition to the `abort` function, there is now also an `abortAll` function which can be used in combination with the `executeShortcut` function.
Expand All @@ -272,7 +272,7 @@

## Version 3.0.0

A lot of things were added, changed and reworked in this version. It is very likely that new bugs were introduced or that things no longer work the same way they did before. If you encounter any issue, please let me know, either by contacting me (see the "Contact Developer" option on the Information screen) or by opening a Github issue.
A lot of things were added, changed and reworked in this version. It is very likely that new bugs were introduced or that things no longer work the same way they did before. If you encounter any issue, please let me know, either by contacting me (see the "Contact Developer" option on the Information screen) or by opening a GitHub issue.

### Improvements
- The app's UI was migrated to Material Design 3
Expand Down Expand Up @@ -660,7 +660,7 @@ This version includes a massive refactoring under the hood, so there's a good ch
- Fixed a deadlock that would happen when calling the `wait` function too many times
- Fixed crash on Android 12 when trying to open Wi-Fi selection screen
- Reduced likelihood of old response window showing up again when triggering a new shortcut
- Removed "Multline" checkbox from Number Input and Password Input variable types as it had no effect and was never supposed to be there
- Removed "Multiline" checkbox from Number Input and Password Input variable types as it had no effect and was never supposed to be there
- Improved the handling of large HTTP responses. The app is now less likely to crash when encountering these

## Version 2.12.0
Expand Down Expand Up @@ -693,7 +693,7 @@ For convenience, there is now a `response.getHeader(headerName)` and a `response
## Version 2.10.0

### Important Changes
The minimum supported Android version is now at 5.0 (Lollipop). Going forward, older versions of Android will no longer receive updates. You can still install older versions of the app by [downloading the APK directly from Github](https://github.com/Waboodoo/HTTP-Shortcuts/releases).
The minimum supported Android version is now at 5.0 (Lollipop). Going forward, older versions of Android will no longer receive updates. You can still install older versions of the app by [downloading the APK directly from GitHub](https://github.com/Waboodoo/HTTP-Shortcuts/releases).

Furthermore, this version introduces a breaking change to the Scripting feature, specifically to the built-in `hmac` and `base64decode` functions. The return type of these functions is now `Uint8Array` (i.e., an array of bytes) instead of a hex string. See the **Scripting** section below for more information.

Expand Down Expand Up @@ -840,7 +840,7 @@ The Import and Export functionality was moved out of the general settings screen
### Miscellaneous
- Shortcuts can now be limited to only execute when connected to a specific wifi (thanks [@crasu](https://github.com/crasu))
- The value input field for static (constant) variables is now multi-line, making it easier to enter or view larger values.
- It is now possible to trigger a specific shortcut via a invoking a deep-link of the form `http-shortcuts://deep-link/<id-of-shortcut-here>`
- It is now possible to trigger a specific shortcut by invoking a deep-link of the form `http-shortcuts://deep-link/<id-of-shortcut-here>`
- When displaying a JSON formatted response in a window, it is now possible to toggle line-wrapping by tapping.
- The `About` section was moved out of the `Settings` page to be a standalone page.

Expand Down
2 changes: 1 addition & 1 deletion HTTPShortcuts/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ android {
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}

/* Used for Play Store & Github release page */
/* Used for Play Store & GitHub release page */
create("releaseFull") {
isMinifyEnabled = true
isShrinkResources = true
Expand Down
4 changes: 2 additions & 2 deletions HTTPShortcuts/app/src/main/assets/changelog.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions HTTPShortcuts/app/src/main/assets/docs/advanced.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion HTTPShortcuts/app/src/main/assets/docs/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<html>
<head><link rel="stylesheet" href="style.css"></head>
<body id="root">
<h1>Introduction</h1><h2>What is HTTP?</h2><p>HTTP (<strong>H</strong>yper<strong>t</strong>ext <strong>T</strong>ransfer <strong>P</strong>rotocol) is a widely used protocol which forms the foundation of the web as we know it. It revolves around the concept of requesting resources (e.g. pages of a website or endpoints in a REST API), identified by a URL, from a server.</p><p>This app assumes that you're already familiar with the basics of the protocol, so in case you're not I suggest you get yourself an <a href="https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol">overview</a> first.</p><h2>What is this app about?</h2><p>The main goal of this app is to provide an easy way to send HTTP requests from an Android device. It achieves this by allowing you to create so called <a href="shortcuts.md">shortcuts</a> which can be clicked to trigger such a request, either from within the app directly or via a widget placed on your home screen.</p><p>Shortcuts can be grouped together into different <a href="categories.md">categories</a> which are shown as separate tabs inside the app.</p><p>In some cases you want do to more than just send a simple HTTP request but need more powerful tools for advanced workflows. This is where <a href="variables.md">variables</a> come in, which allow you to dynamically inject values into your request, and the <a href="scripting.md">scripting</a> capabilities of the app, which allow you to use JavaScript code snippets to further customize how your shortcuts behave.</p>
<h1>Introduction</h1><h2>What is HTTP?</h2><p>HTTP (<strong>H</strong>yper<strong>t</strong>ext <strong>T</strong>ransfer <strong>P</strong>rotocol) is a widely used protocol which forms the foundation of the web as we know it. It revolves around the concept of requesting resources (e.g. pages of a website or endpoints in a REST API), identified by a URL, from a server.</p><p>This app assumes that you're already familiar with the basics of the protocol, so in case you're not I suggest you get yourself an <a href="https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol">overview</a> first.</p><h2>What is this app about?</h2><p>The main goal of this app is to provide an easy way to send HTTP requests from an Android device. It achieves this by allowing you to create so called <a href="shortcuts.md">shortcuts</a> which can be clicked to trigger such a request, either from within the app directly or via a widget placed on your home screen.</p><p>Shortcuts can be grouped together into different <a href="categories.md">categories</a> which are shown as separate tabs inside the app.</p><p>In some cases you want to do more than just send a simple HTTP request but need more powerful tools for advanced workflows. This is where <a href="variables.md">variables</a> come in, which allow you to dynamically inject values into your request, and the <a href="scripting.md">scripting</a> capabilities of the app, which allow you to use JavaScript code snippets to further customize how your shortcuts behave.</p>
</body>
</html>
Loading

0 comments on commit da94e3e

Please sign in to comment.