Compare commits
3 Commits
v0.0.19
...
684e6fb9cb
Author | SHA1 | Date | |
---|---|---|---|
684e6fb9cb | |||
ee21fa6d03
|
|||
7a2974e54f |
@ -3,9 +3,9 @@
|
|||||||
MAKEFLAGS += --warn-undefined-variables
|
MAKEFLAGS += --warn-undefined-variables
|
||||||
MAKEFLAGS += --no-builtin-rules
|
MAKEFLAGS += --no-builtin-rules
|
||||||
|
|
||||||
VERSION_CODE := 19
|
VERSION_CODE := 20
|
||||||
VERSION_NUMBER := 0.0.19
|
VERSION_NUMBER := 0.0.20-wip
|
||||||
VERSION_NAME := Don't let your loyalty become a burden.
|
VERSION_NAME := One word all lowercase four words all uppercase.
|
||||||
|
|
||||||
SQLITE_URL := https://www.sqlite.org/2024/sqlite-amalgamation-3460000.zip
|
SQLITE_URL := https://www.sqlite.org/2024/sqlite-amalgamation-3460000.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
|
||||||
|
@ -15,9 +15,6 @@
|
|||||||
# - Build again, this time it should work.
|
# - Build again, this time it should work.
|
||||||
# - Check the release notes, if there's a new dependency or a change to `GNUMakefile`, this file might need to be changed too.
|
# - Check the release notes, if there's a new dependency or a change to `GNUMakefile`, this file might need to be changed too.
|
||||||
# For more details, contact tasiaiso @ https://tilde.club/~tasiaiso/
|
# For more details, contact tasiaiso @ https://tilde.club/~tasiaiso/
|
||||||
#
|
|
||||||
# WARNING: currently it is pinned to `47838d5e482cb4aac40190fa0414f08b8cf94d40`. I couldn't get v0.0.18 to work for some reason.
|
|
||||||
# I'll change this in the next release - tasiaiso
|
|
||||||
{
|
{
|
||||||
pkgs ? import <nixpkgs> {},
|
pkgs ? import <nixpkgs> {},
|
||||||
lib ? import <nixpkgs/lib>,
|
lib ? import <nixpkgs/lib>,
|
||||||
@ -30,9 +27,8 @@ pkgs.stdenv.mkDerivation rec {
|
|||||||
domain = "dev.tildefriends.net";
|
domain = "dev.tildefriends.net";
|
||||||
owner = "cory";
|
owner = "cory";
|
||||||
repo = "tildefriends";
|
repo = "tildefriends";
|
||||||
# rev = "v${version}";
|
rev = "v${version}";
|
||||||
rev = "47838d5e482cb4aac40190fa0414f08b8cf94d40";
|
hash = "sha256-ttqL2wz06Jvn2f6kKIAGpF0nSSle+g4nSlj4jL0D+Fk=";
|
||||||
hash = "sha256-mb5KYvWPIqgV64FOaXKHm2ownBJiiSRtdH8+YWiXwvE="; # 47838d5e482cb4aac40190fa0414f08b8cf94d40
|
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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="19"
|
android:versionCode="20"
|
||||||
android:versionName="0.0.19">
|
android:versionName="0.0.20-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
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
#define VERSION_NUMBER "0.0.19"
|
#define VERSION_NUMBER "0.0.20-wip"
|
||||||
#define VERSION_NAME "Don't let your loyalty become a burden."
|
#define VERSION_NAME "One word all lowercase four words all uppercase."
|
||||||
|
Reference in New Issue
Block a user