Skip to content

Commit

Permalink
v271.250227.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins build server committed Feb 27, 2025
1 parent 8f61ab1 commit 2b5abd8
Show file tree
Hide file tree
Showing 19 changed files with 112 additions and 120 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "271.250224.0"
version = "271.250227.0"
rust-version = "1.84.0"
edition = "2021"
homepage = "https://tutao.de"
Expand Down
4 changes: 2 additions & 2 deletions app-android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "de.tutao.tutanota"
minSdkVersion 26
targetSdkVersion 34
versionCode 396458
versionName "271.250224.0"
versionCode 396459
versionName "271.250227.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

// https://issuetracker.google.com/issues/181593646
Expand Down
4 changes: 2 additions & 2 deletions app-android/calendar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId = "de.tutao.calendar"
minSdk = 26
targetSdk = 34
versionCode = 97
versionName = "271.250224.0"
versionCode = 98
versionName = "271.250227.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
4 changes: 2 additions & 2 deletions app-ios/TutanotaNotificationExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleShortVersionString</key>
<string>271.250224.0</string>
<string>271.250227.0</string>
<key>CFBundleVersion</key>
<string>271.250224.0</string>
<string>271.250227.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
Expand Down
4 changes: 2 additions & 2 deletions app-ios/calendar/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>271.250224.0</string>
<string>271.250227.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -33,7 +33,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>271.250224.0</string>
<string>271.250227.0</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
4 changes: 2 additions & 2 deletions app-ios/tutanota/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>271.250224.0</string>
<string>271.250227.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>271.250224.0</string>
<string>271.250227.0</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
76 changes: 34 additions & 42 deletions libs/electron-updater.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11603,55 +11603,47 @@ const coerce$1 = (version, options) => {
};
var coerce_1 = coerce$1;

var lrucache;
var hasRequiredLrucache;

function requireLrucache () {
if (hasRequiredLrucache) return lrucache;
hasRequiredLrucache = 1;
class LRUCache {
constructor () {
this.max = 1000;
this.map = new Map();
}

get (key) {
const value = this.map.get(key);
if (value === undefined) {
return undefined
} else {
// Remove the key from the map and add it to the end
this.map.delete(key);
this.map.set(key, value);
return value
}
}
class LRUCache {
constructor () {
this.max = 1000;
this.map = new Map();
}

delete (key) {
return this.map.delete(key)
}
get (key) {
const value = this.map.get(key);
if (value === undefined) {
return undefined
} else {
// Remove the key from the map and add it to the end
this.map.delete(key);
this.map.set(key, value);
return value
}
}

set (key, value) {
const deleted = this.delete(key);
delete (key) {
return this.map.delete(key)
}

if (!deleted && value !== undefined) {
// If cache is full, delete the least recently used item
if (this.map.size >= this.max) {
const firstKey = this.map.keys().next().value;
this.delete(firstKey);
}
set (key, value) {
const deleted = this.delete(key);

this.map.set(key, value);
}
if (!deleted && value !== undefined) {
// If cache is full, delete the least recently used item
if (this.map.size >= this.max) {
const firstKey = this.map.keys().next().value;
this.delete(firstKey);
}

return this
}
}
this.map.set(key, value);
}

lrucache = LRUCache;
return lrucache;
return this
}
}

var lrucache = LRUCache;

var range;
var hasRequiredRange;

Expand Down Expand Up @@ -11872,7 +11864,7 @@ function requireRange () {

range = Range;

const LRU = requireLrucache();
const LRU = lrucache;
const cache = new LRU();

const parseOptions = parseOptions_1;
Expand Down
Loading

0 comments on commit 2b5abd8

Please sign in to comment.