mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 17:11:14 +00:00
Merge pull request 'fix(hetzner): Fix the resize volume request' (#456) from hetzner-volume-resize-hotfix into master
Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/456
This commit is contained in:
commit
418d96b842
|
@ -10,7 +10,7 @@ AppDir:
|
|||
id: org.selfprivacy.app
|
||||
name: SelfPrivacy
|
||||
icon: org.selfprivacy.app
|
||||
version: 0.10.0
|
||||
version: 0.10.1
|
||||
exec: selfprivacy
|
||||
exec_args: $@
|
||||
apt:
|
||||
|
|
15
fastlane/metadata/android/en-US/changelogs/0.10.1.txt
Normal file
15
fastlane/metadata/android/en-US/changelogs/0.10.1.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
### Features
|
||||
|
||||
- Enabled the following languages:
|
||||
- Azerbaijani
|
||||
- Belarusian
|
||||
- Hebrew
|
||||
- Latvian
|
||||
- Macedonian
|
||||
- Slovak
|
||||
- Slovenian
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **Hetzner**: Fixed an issue where could not resize a volume on Hetzner ([#456](https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/issues/456), resolves [#455](https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/issues/455))
|
||||
- **DNS**: Make sure that we notice domain ownership lost ([#441](https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/issues/441), resolves [#390](https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/issues/390))
|
|
@ -547,7 +547,7 @@ class HetznerApi extends RestApiMap {
|
|||
resizeVolumeResponse = await client.post(
|
||||
'/volumes/${volume.id}/actions/resize',
|
||||
data: {
|
||||
'size': size.gibibyte,
|
||||
'size': size.gibibyte.floor(),
|
||||
},
|
||||
);
|
||||
success =
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: selfprivacy
|
||||
description: selfprivacy.org
|
||||
publish_to: 'none'
|
||||
version: 0.10.0+20
|
||||
version: 0.10.1+21
|
||||
|
||||
environment:
|
||||
sdk: '>=3.2.1 <4.0.0'
|
||||
|
|
Loading…
Reference in a new issue