2 Commits

Author SHA1 Message Date
f5bd389183 build: This will probably be the November release.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 20m28s
2025-11-25 12:51:13 -05:00
0c34a38e15 ssb: Try not very successfully to make the welcome line format less awkwardly. 2025-11-25 12:50:33 -05:00
8 changed files with 20 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ src
deps
.clang-format
flake.lock
apps/trace/speedscope/**
# Minified files
**/*.min.css

View File

@@ -16,9 +16,9 @@ MAKEFLAGS += --no-builtin-rules
## LD := Linker.
## ANDROID_SDK := Path to the Android SDK.
VERSION_CODE := 47
VERSION_CODE_IOS := 25
VERSION_NUMBER := 0.2025.10
VERSION_CODE := 48
VERSION_CODE_IOS := 26
VERSION_NUMBER := 0.2025.11
VERSION_NAME := This program kills fascists.
IPHONEOS_VERSION_MIN=14.5

View File

@@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "🦀",
"previous": "&Tozi8g5lPpLW7znc+jm7xDZxoTq1G3DJAh2YhG+FRAQ=.sha256"
"previous": "&7dPNAI4sffljUTiwGr3XEUeB8sBD72CFkWMk/o0Z2pw=.sha256"
}

View File

@@ -428,7 +428,12 @@ class TfTabNewsElement extends LitElement {
>
${this.unread_status()}☰
</div>
Welcome, <tf-user id=${this.whoami} .users=${this.users}></tf-user>!
<span
style="display: inline-block; width: 100%; max-width: 100%; white-space: nowrap; overflow: hidden"
>
Welcome,
<tf-user id=${this.whoami} .users=${this.users}></tf-user>!
</span>
${edit_profile}
</div>
<div>

View File

@@ -1,5 +1,7 @@
async function main() {
let speedscope_js = await utf8Decode(getFile('speedscope/speedscope-432XE7GS.js'));
let speedscope_js = await utf8Decode(
getFile('speedscope/speedscope-432XE7GS.js')
);
speedscope_js = speedscope_js.replace(/alert\(`Cannot load.*?return/, '');
app.setDocument(`
<!DOCTYPE html>

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unprompted.tildefriends"
android:versionCode="47"
android:versionName="0.2025.10">
android:versionCode="48"
android:versionName="0.2025.11">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application

View File

@@ -13,13 +13,13 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.2025.10</string>
<string>0.2025.11</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>25</string>
<string>26</string>
<key>DTPlatformName</key>
<string>iphoneos</string>
<key>LSRequiresIPhoneOS</key>

View File

@@ -1,2 +1,2 @@
#define VERSION_NUMBER "0.2025.10"
#define VERSION_NUMBER "0.2025.11"
#define VERSION_NAME "This program kills fascists."