3 Commits

Author SHA1 Message Date
ba8253fa30 docs: Update change notes.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 8m50s
2025-11-25 18:08:01 -05:00
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
9 changed files with 23 additions and 13 deletions

View File

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

View File

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

View File

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

View File

@@ -428,7 +428,12 @@ class TfTabNewsElement extends LitElement {
> >
${this.unread_status()}☰ ${this.unread_status()}☰
</div> </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} ${edit_profile}
</div> </div>
<div> <div>

View File

@@ -1,5 +1,7 @@
async function main() { 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/, ''); speedscope_js = speedscope_js.replace(/alert\(`Cannot load.*?return/, '');
app.setDocument(` app.setDocument(`
<!DOCTYPE html> <!DOCTYPE html>

View File

@@ -1,7 +1,9 @@
* Fixed information where identity information was outdated. * Fixed disagreement in identity information.
* Show more context when prompting for permissions. * Show more context when prompting for permissions.
* Reduce redundant queries to improve load times. * Reduce redundant queries to improve load times.
* Improved profile load times. * Improved profile load times.
* Don't show an empty code of conduct. * Don't show an empty code of conduct.
* Resolve ambiguity when a user is both followed and blocked (they're blocked). * Resolve ambiguity when a user is both followed and blocked (they're blocked).
* Move perf tracing viewer into a trace app.
* Minor UI improvements.
* Updates: CodeMirror, emojis, libbacktrace, sqlite 3.51.0. * Updates: CodeMirror, emojis, libbacktrace, sqlite 3.51.0.

View File

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

View File

@@ -13,13 +13,13 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.2025.10</string> <string>0.2025.11</string>
<key>CFBundleSupportedPlatforms</key> <key>CFBundleSupportedPlatforms</key>
<array> <array>
<string>iPhoneOS</string> <string>iPhoneOS</string>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>25</string> <string>26</string>
<key>DTPlatformName</key> <key>DTPlatformName</key>
<string>iphoneos</string> <string>iphoneos</string>
<key>LSRequiresIPhoneOS</key> <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." #define VERSION_NAME "This program kills fascists."