Compare commits

..

3 Commits

Author SHA1 Message Date
a9cb913a47 Working on 0.0.19. 2024-04-24 19:29:17 -04:00
b7b5d4f1a5 Calling it 0.0.18. 2024-04-24 19:24:10 -04:00
a947396bad Prettier. 2024-04-24 19:23:13 -04:00
8 changed files with 71 additions and 46 deletions

View File

@ -3,9 +3,9 @@
MAKEFLAGS += --warn-undefined-variables MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules MAKEFLAGS += --no-builtin-rules
VERSION_CODE := 18 VERSION_CODE := 19
VERSION_NUMBER := 0.0.18-wip VERSION_NUMBER := 0.0.19-wip
VERSION_NAME := Celebrating totality for upwards of 3m1.4s. VERSION_NAME := Don't let your loyalty become a burden.
SQLITE_URL := https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip SQLITE_URL := https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip
LIBUV_URL := https://dist.libuv.org/dist/v1.48.0/libuv-v1.48.0.tar.gz LIBUV_URL := https://dist.libuv.org/dist/v1.48.0/libuv-v1.48.0.tar.gz

View File

@ -236,7 +236,13 @@ class TfElement extends LitElement {
console.log(by_count.sort((x, y) => y.count - x.count).slice(0, 20)); console.log(by_count.sort((x, y) => y.count - x.count).slice(0, 20));
let start_time = new Date(); let start_time = new Date();
users = await this.fetch_about(Object.keys(following).sort(), users); users = await this.fetch_about(Object.keys(following).sort(), users);
console.log('about took', (new Date() - start_time) / 1000.0, 'seconds for', Object.keys(users).length, 'users'); console.log(
'about took',
(new Date() - start_time) / 1000.0,
'seconds for',
Object.keys(users).length,
'users'
);
this.following = Object.keys(following); this.following = Object.keys(following);
this.users = users; this.users = users;
await tags; await tags;

View File

@ -550,7 +550,8 @@ class TfComposeElement extends LitElement {
@input=${this.input} @input=${this.input}
@paste=${this.paste} @paste=${this.paste}
contenteditable contenteditable
>${draft.text}</span> >${draft.text}</span
>
</div> </div>
<div class="w3-half w3-padding"> <div class="w3-half w3-padding">
${content_warning} ${content_warning}

View File

@ -72,10 +72,7 @@ class TfMessageElement extends LitElement {
return expression; return expression;
} }
} }
return html`<div return html`<div class="w3-button" @click=${this.show_reactions}>
class="w3-button"
@click=${this.show_reactions}
>
${(this.message.votes || []).map( ${(this.message.votes || []).map(
(vote) => html` (vote) => html`
<span <span

View File

@ -23,29 +23,45 @@ class TfReactionsModalElement extends LitElement {
render() { render() {
let self = this; let self = this;
return this.votes?.length ? html` return this.votes?.length
<div class="w3-modal w3-animate-opacity" style="display: block; box-sizing: border-box"> ? html` <div
class="w3-modal w3-animate-opacity"
style="display: block; box-sizing: border-box"
>
<div class="w3-modal-content w3-card-4 w3-theme-d1"> <div class="w3-modal-content w3-card-4 w3-theme-d1">
<div class="w3-container w3-padding"> <div class="w3-container w3-padding">
<header class="w3-container"> <header class="w3-container">
<h2>Reactions</h2> <h2>Reactions</h2>
<span class="w3-button w3-display-topright" @click=${this.clear}>&times;</span> <span class="w3-button w3-display-topright" @click=${this.clear}
>&times;</span
>
</header> </header>
<ul class="w3-theme-dark w3-container w3-ul"> <ul class="w3-theme-dark w3-container w3-ul">
${this.votes.map(x => html` ${this.votes.map(
(x) => html`
<li class="w3-bar"> <li class="w3-bar">
<span class="w3-bar-item">${x?.content?.vote?.expression}</span> <span class="w3-bar-item"
<tf-user class="w3-bar-item" id=${x.author} .users=${this.users}></tf-user> >${x?.content?.vote?.expression}</span
<span class="w3-bar-item w3-right">${new Date(x?.timestamp).toLocaleString()}</span> >
<tf-user
class="w3-bar-item"
id=${x.author}
.users=${this.users}
></tf-user>
<span class="w3-bar-item w3-right"
>${new Date(x?.timestamp).toLocaleString()}</span
>
</li> </li>
`)} `
)}
</ul> </ul>
<footer class="w3-container w3-padding"> <footer class="w3-container w3-padding">
<button class="w3-button" @click=${this.clear}>Close</button> <button class="w3-button" @click=${this.clear}>Close</button>
</footer> </footer>
</div> </div>
</div> </div>
</div>` : undefined; </div>`
: undefined;
} }
} }

View File

@ -347,7 +347,12 @@ class TfNavigationElement extends LitElement {
${this.status?.message && !this.status.is_error ${this.status?.message && !this.status.is_error
? html` ? html`
<link type="text/css" rel="stylesheet" href="/static/w3.css" /> <link type="text/css" rel="stylesheet" href="/static/w3.css" />
<div class="w3-bar-item" style="color: ${this.status.color ?? kStatusColor}">${this.status.message}</div> <div
class="w3-bar-item"
style="color: ${this.status.color ?? kStatusColor}"
>
${this.status.message}
</div>
` `
: undefined} : undefined}
${Object.keys(this.spark_lines) ${Object.keys(this.spark_lines)

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="18" android:versionCode="19"
android:versionName="0.0.18-wip"> android:versionName="0.0.19-wip">
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="34"/> <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="34"/>
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.INTERNET"/>
<application <application

View File

@ -1,2 +1,2 @@
#define VERSION_NUMBER "0.0.18-wip" #define VERSION_NUMBER "0.0.19-wip"
#define VERSION_NAME "Celebrating totality for upwards of 3m1.4s." #define VERSION_NAME "Don't let your loyalty become a burden."