Skip to content

Commit 25253ee

Browse files
committed
Prepare 4.0.0 release
1 parent 8a3b1e8 commit 25253ee

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## Version 4.0.0
2+
3+
### Breaking Change
4+
This versions drops backwards compatibility with the internal data format that was used up to version 3.28.0. If you're reading this inside the app, your data was already successfully migrated and you don't need to do anything. If you're upgrading from version 3.28.0 or older, you should install version 3.33.0 first to make sure your data is migrated. For more information and for recovery options, see [http-shortcuts.rmy.ch/restore](https://http-shortcuts.rmy.ch/restore).
5+
6+
### Improvements
7+
- You can now configure a category to hide the labels of all shortcuts within, to show only a grid of shortcut icons
8+
- There is now a [showMultiSelection](https://http-shortcuts.rmy.ch/scripting#show-selection) Scripting function
9+
- It is now possible to use client certificates that don't require a password
10+
11+
### Bugfixes
12+
- Date Input and Time Input variables now use the correct locale instead of defaulting to English, for resolving things like weekday of month names. (thanks [@f0sh](https://github.com/f0sh))
13+
- It is no longer possible to create select variables where the same key is used multiple times for different options
14+
115
## Version 3.33.0
216

317
### Improvements

HTTPShortcuts/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ android {
5959
targetSdk = 35
6060

6161
// Version name and code must remain as literals so that F-Droid can read them
62-
versionName = "3.34.0"
62+
versionName = "4.0.0"
6363
// 11,(2 digits major),(2 digits minor),(2 digits patch),(2 digits build)
64-
versionCode = 1103340000
64+
versionCode = 1104000000
6565

6666
buildConfigField("String", "BUGSNAG_API_KEY", "\"$bugsnagAPIKey\"")
6767
buildConfigField("long", "BUILD_TIMESTAMP", buildTimestamp.toString())

HTTPShortcuts/app/src/main/assets/acknowledgments.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ <h1>Code Contributions</h1>
188188
<li>Fixed accidental truncation of shortcut descriptions: <a href="https://github.com/ray2c">ray2c</a></li>
189189
<li>Fixed soft keyboard overlapping UI elements: <a href="https://github.com/ray2c">ray2c</a></li>
190190
<li>Fixed handling of redirect status code in sendHttpRequest function: <a href="https://github.com/ray2c">ray2c</a></li>
191+
<li>Fixed handling of locales in Date and Time variables: <a href="https://github.com/f0sh">f0sh</a></li>
191192
</ul>
192193
</article>
193194
</body>

0 commit comments

Comments
 (0)