Compare commits
5 Commits
v0.0.32.1
...
199448e11e
Author | SHA1 | Date | |
---|---|---|---|
199448e11e | |||
fdaabab807 | |||
ca4560c5c9 | |||
2478f3064d | |||
e9b8b43e7c |
@@ -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 := 39
|
VERSION_CODE := 40
|
||||||
VERSION_CODE_IOS := 15
|
VERSION_CODE_IOS := 15
|
||||||
VERSION_NUMBER := 0.0.32.1
|
VERSION_NUMBER := 0.0.33-wip
|
||||||
VERSION_NAME := This program kills fascists.
|
VERSION_NAME := This program kills fascists.
|
||||||
|
|
||||||
IPHONEOS_VERSION_MIN=14.0
|
IPHONEOS_VERSION_MIN=14.0
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"type": "tildefriends-app",
|
"type": "tildefriends-app",
|
||||||
"emoji": "🦀",
|
"emoji": "🦀",
|
||||||
"previous": "&Ym1vefMN4CV4UIgLuV+zu52qj58WwIScctt4v5YIHmQ=.sha256"
|
"previous": "&PCN9g0ZEGGYlY+Rqpcn+x3iTZ1n8yljYm+pbgjPkW0w=.sha256"
|
||||||
}
|
}
|
||||||
|
@@ -203,7 +203,7 @@ class TfTabNewsElement extends LitElement {
|
|||||||
new Event('refresh', {bubbles: true, composed: true})
|
new Event('refresh', {bubbles: true, composed: true})
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<span style="width: 1.5em; height: 1.5em; padding: 8px">↻</span>
|
<span style="display: inline-block; width: 1.8em">↻</span>
|
||||||
Sync now
|
Sync now
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
@@ -216,7 +216,10 @@ class TfTabNewsElement extends LitElement {
|
|||||||
})
|
})
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
${this.stay_connected ? '🔗 Online mode' : '⛓️💥 Passive mode'}
|
<span style="display: inline-block; width: 1.8em"
|
||||||
|
>${this.stay_connected ? '🔗' : '⛓️💥'}</span
|
||||||
|
>
|
||||||
|
${this.stay_connected ? 'Online mode' : 'Passive mode'}
|
||||||
</button>
|
</button>
|
||||||
`
|
`
|
||||||
: undefined}
|
: undefined}
|
||||||
|
2
deps/speedscope/index.html
vendored
2
deps/speedscope/index.html
vendored
@@ -11,7 +11,7 @@
|
|||||||
<link rel="icon" type="image/x-icon" href="favicon-FOKUP5Y5.ico">
|
<link rel="icon" type="image/x-icon" href="favicon-FOKUP5Y5.ico">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script src="speedscope-VHEG2FVF.js"></script>
|
<script src="speedscope-7YPLLUY2.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
6
deps/speedscope/release.txt
vendored
6
deps/speedscope/release.txt
vendored
@@ -1,3 +1,3 @@
|
|||||||
speedscope@1.22.2
|
speedscope@1.23.0
|
||||||
Sat Feb 15 13:02:38 PST 2025
|
Sun Jul 6 20:04:28 PDT 2025
|
||||||
1c254dcb3e2b4f6d921340d20e972d9d27b788f4
|
aa9bef50789a2989746b576fff182b6f01dfce6a
|
||||||
|
File diff suppressed because one or more lines are too long
@@ -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="39"
|
android:versionCode="40"
|
||||||
android:versionName="0.0.32.1">
|
android:versionName="0.0.33-wip">
|
||||||
<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
|
||||||
|
@@ -110,9 +110,9 @@ public class TildeFriendsActivity extends Activity {
|
|||||||
server_thread.start();
|
server_thread.start();
|
||||||
|
|
||||||
web_view.getSettings().setJavaScriptEnabled(true);
|
web_view.getSettings().setJavaScriptEnabled(true);
|
||||||
web_view.getSettings().setDatabaseEnabled(true);
|
|
||||||
web_view.getSettings().setDomStorageEnabled(true);
|
web_view.getSettings().setDomStorageEnabled(true);
|
||||||
|
|
||||||
|
set_database_enabled();
|
||||||
set_database_path();
|
set_database_path();
|
||||||
|
|
||||||
web_view.setDownloadListener(new DownloadListener() {
|
web_view.setDownloadListener(new DownloadListener() {
|
||||||
@@ -451,4 +451,10 @@ public class TildeFriendsActivity extends Activity {
|
|||||||
web_view.getSettings().setDatabasePath(getDatabasePath("webview").getPath());
|
web_view.getSettings().setDatabasePath(getDatabasePath("webview").getPath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
|
private void set_database_enabled()
|
||||||
|
{
|
||||||
|
web_view.getSettings().setDatabaseEnabled(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -3,7 +3,9 @@
|
|||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
android:background="#000">
|
||||||
<com.unprompted.tildefriends.TildeFriendsWebView
|
<com.unprompted.tildefriends.TildeFriendsWebView
|
||||||
android:id="@+id/web"
|
android:id="@+id/web"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>0.0.32.1</string>
|
<string>0.0.33</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
<array>
|
<array>
|
||||||
<string>iPhoneOS</string>
|
<string>iPhoneOS</string>
|
||||||
|
@@ -1,2 +1,2 @@
|
|||||||
#define VERSION_NUMBER "0.0.32.1"
|
#define VERSION_NUMBER "0.0.33-wip"
|
||||||
#define VERSION_NAME "This program kills fascists."
|
#define VERSION_NAME "This program kills fascists."
|
||||||
|
Reference in New Issue
Block a user