Skip to content

Commit

Permalink
Correct twinset cuft display
Browse files Browse the repository at this point in the history
  • Loading branch information
calmh committed Nov 11, 2023
1 parent deaa5b8 commit 99689b3
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 20 deletions.
34 changes: 20 additions & 14 deletions ios/fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
fastlane documentation
================
----

# Installation

Make sure you have the latest version of the Xcode command line tools installed:

```
```sh
xcode-select --install
```

Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew install fastlane`
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)

# Available Actions

## iOS

### ios build

```sh
[bundle exec] fastlane ios build
```
fastlane ios build
```



### ios upload

```sh
[bundle exec] fastlane ios upload
```
fastlane ios upload
```



----

This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.

More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).

The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
2 changes: 1 addition & 1 deletion lib/divecalculation/divecalculation_cylinder_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DiveCalculationCylinderView extends StatelessWidget {
),
if (metric)
Text(
(cvm.cylinder!.twinset ? "2×" : "") + "${shortNumber(cvm.cylinder!.compressedVolume(pressure).cuft)} cuft",
(cvm.cylinder!.twinset ? "2×" : "") + "${shortNumber(cvm.cylinder!.compressedVolume(pressure).cuft / cvm.cylinder!.twinFactor)} cuft",
style: h1,
textAlign: TextAlign.right,
),
Expand Down
6 changes: 3 additions & 3 deletions macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
path_provider_foundation: eaf5b3e458fc0e5fbb9940fb09980e853fe058b8
shared_preferences_foundation: e2dae3258e06f44cc55f49d42024fd8dd03c590c
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126

PODFILE CHECKSUM: 236401fc2c932af29a9fcf0e97baeeb2d750d367

COCOAPODS: 1.12.1
COCOAPODS: 1.14.2
2 changes: 1 addition & 1 deletion macos/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0920;
LastUpgradeCheck = 1300;
LastUpgradeCheck = 1430;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C80D4294CF70F00263BE5 = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
LastUpgradeVersion = "1430"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down

0 comments on commit 99689b3

Please sign in to comment.