1ac389e7c7
* Update deps * Replace profile timeline with GraphQL endpoint * Update GraphQL endpoint versions * Use GraphQL for profile media tab * Fix UserByRestId request * Improve routing, fixes #814 * Fix token pool JSON * Deduplicate GraphQL timeline endpoints * Update list endpoints * Use GraphQL for list tweets * Remove debug leftover * Replace old pinned tweet endpoint with GraphQL * Validate tweet ID * Minor token handling fix * Hide US-only commerce cards * Update config example * Remove http pool and gzip from token pool * Support tombstoned tweets in threads * Retry GraphQL timeout errors * Remove unnecessary 401 retry * Remove broken timeout retry * Update karax, use new bool attribute feature * Update card test * Fix odd edgecase with broken retweets * Replace search endpoints, switch Bearer token * Only parse user search if it's a list * Fix quoted tweet crash * Fix empty search query handling * Fix invalid user search errors again
34 lines
777 B
Nim
34 lines
777 B
Nim
# Package
|
|
|
|
version = "0.1.0"
|
|
author = "zedeus"
|
|
description = "An alternative front-end for Twitter"
|
|
license = "AGPL-3.0"
|
|
srcDir = "src"
|
|
bin = @["nitter"]
|
|
|
|
|
|
# Dependencies
|
|
|
|
requires "nim >= 1.4.8"
|
|
requires "jester#baca3f"
|
|
requires "karax#5cf360c"
|
|
requires "sass#7dfdd03"
|
|
requires "nimcrypto#4014ef9"
|
|
requires "markdown#158efe3"
|
|
requires "packedjson#9e6fbb6"
|
|
requires "supersnappy#6c94198"
|
|
requires "redpool#8b7c1db"
|
|
requires "https://github.com/zedeus/redis#d0a0e6f"
|
|
requires "zippy#ca5989a"
|
|
requires "flatty#e668085"
|
|
requires "jsony#ea811be"
|
|
|
|
|
|
# Tasks
|
|
|
|
task scss, "Generate css":
|
|
exec "nimble c --hint[Processing]:off -d:danger -r tools/gencss"
|
|
|
|
task md, "Render md":
|
|
exec "nimble c --hint[Processing]:off -d:danger -r tools/rendermd"
|