Merge branch 'main' into develop

This commit is contained in:
CodeDoctorDE
2026-02-18 13:08:59 +01:00
4 changed files with 16 additions and 13 deletions

View File

@@ -8,7 +8,7 @@ GEM
artifactory (3.0.17)
atomos (0.1.3)
aws-eventstream (1.4.0)
aws-partitions (1.1213.0)
aws-partitions (1.1215.0)
aws-sdk-core (3.242.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.992.0)
@@ -17,7 +17,7 @@ GEM
bigdecimal
jmespath (~> 1, >= 1.6.1)
logger
aws-sdk-kms (1.121.0)
aws-sdk-kms (1.122.0)
aws-sdk-core (~> 3, >= 3.241.4)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.213.0)
@@ -43,7 +43,7 @@ GEM
dotenv (2.8.1)
emoji_regex (3.2.3)
excon (0.112.0)
faraday (1.10.4)
faraday (1.10.5)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
@@ -72,7 +72,7 @@ GEM
faraday_middleware (1.2.1)
faraday (~> 1.0)
fastimage (2.4.0)
fastlane (2.232.0)
fastlane (2.232.1)
CFPropertyList (>= 2.3, < 4.0.0)
abbrev (~> 0.1.2)
addressable (>= 2.8, < 3.0.0)

View File

@@ -6,11 +6,14 @@
<summary>Draw and organize ideas</summary>
<metadata_license>CC0-1.0</metadata_license>
<project_license>AGPL-3.0-only</project_license>
<recommends>
<supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
</recommends>
</supports>
<requires>
<display_length compare="ge">360</display_length>
</requires>
<branding>
<color type="primary" scheme_preference="light">#f2ead4</color>
<color type="primary" scheme_preference="dark">#4b3807</color>

View File

@@ -37,10 +37,10 @@ packages:
dependency: "direct main"
description:
name: archive
sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd"
sha256: a96e8b390886ee8abb49b7bd3ac8df6f451c621619f52a26e815fdcf568959ff
url: "https://pub.dev"
source: hosted
version: "4.0.7"
version: "4.0.9"
args:
dependency: "direct main"
description:
@@ -675,18 +675,18 @@ packages:
dependency: "direct main"
description:
name: idb_shim
sha256: cc994e1095d69f2bcdf929246112ed0772d59d75be8a58995667acc2df091602
sha256: "921301da0a735f336a28fc35c3abdbd4498895cc205fa1ea9f7e785e7d854ceb"
url: "https://pub.dev"
source: hosted
version: "2.8.2+3"
version: "2.8.2+4"
image:
dependency: "direct main"
description:
name: image
sha256: "492bd52f6c4fbb6ee41f781ff27765ce5f627910e1e0cbecfa3d9add5562604c"
sha256: f9881ff4998044947ec38d098bc7c8316ae1186fa786eddffdb867b9bc94dfce
url: "https://pub.dev"
source: hosted
version: "4.7.2"
version: "4.8.0"
integration_test:
dependency: "direct main"
description: flutter

View File

@@ -114,7 +114,7 @@ Future<void> updateAppData(String version) async {
var dateString = DateFormat('yyyy-MM-dd').format(currentDate);
var line = '\t\t<release version="$version" date="$dateString" />';
var lines = List<String>.from(await file.readAsLines());
lines.insert(71, line);
lines.insert(74, line);
await file.writeAsString(lines.join('\n'));
print('Successfully updated appdata version to $version');
}