Compare commits

..

No commits in common. "bfc468de5bd10bfa0631f04ad81551f18f19a7d7" and "67de345c2590401c0803fb1fbddffbdadb21359e" have entirely different histories.

109 changed files with 143 additions and 175 deletions

View file

@ -21,7 +21,7 @@ commands:
- sdkman/setup-sdkman
- sdkman/sdkman-install:
candidate: kotlin
version: 2.1.10
version: 2.0.20
- run:
name: Download dependencies
command: ./bld download
@ -46,11 +46,11 @@ jobs:
steps:
- build_and_test
bld_jdk21:
bld_jdk20:
<<: *defaults
docker:
- image: cimg/openjdk:21.0
- image: cimg/openjdk:20.0
steps:
- build_and_test
@ -59,4 +59,4 @@ workflows:
bld:
jobs:
- bld_jdk17
- bld_jdk21
- bld_jdk20

View file

@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
java-version: [17, 21, 23]
kotlin-version: [1.9.25, 2.0.20, 2.1.10]
kotlin-version: [1.9.24, 2.0.20, 2.1.0]
steps:
- name: Checkout source repository

View file

@ -2,12 +2,12 @@
<library name="bld">
<CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.2.1.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.1.0.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.2.1-sources.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.1.0-sources.jar!/" />
</SOURCES>
<excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -1,4 +1,4 @@
Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

View file

@ -1,8 +1,8 @@
# mobibot
[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Kotlin](https://img.shields.io/badge/kotlin-2.1.10-7f52ff.svg)](https://kotlinlang.org)
[![bld](https://img.shields.io/badge/2.2.1-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld)
[![Kotlin](https://img.shields.io/badge/kotlin-2.1.0-7f52ff.svg)](https://kotlinlang.org)
[![bld](https://img.shields.io/badge/2.1.0-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ethauvin_mobibot&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=ethauvin_mobibot)
[![GitHub CI](https://github.com/ethauvin/mobibot/actions/workflows/bld.yml/badge.svg)](https://github.com/ethauvin/mobibot/actions/workflows/bld.yml)
[![CircleCI](https://circleci.com/gh/ethauvin/mobibot/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/mobibot/tree/master)

Binary file not shown.

View file

@ -1,10 +1,10 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.9
bld.extension-gv=com.uwyn.rife2:bld-generated-version:1.0.0
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.9
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.0.4
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.7
bld.extension-gv=com.uwyn.rife2:bld-generated-version:0.9.9
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.8
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.0.3
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=2.2.1
bld.version=2.1.0

24
pom.xml
View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik.mobibot</groupId>
<artifactId>mobibot</artifactId>
<version>0.8.0-rc+20250318045311</version>
<version>0.8.0-rc+20241221064558</version>
<name>mobibot</name>
<description></description>
<url></url>
@ -30,7 +30,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.18.0</version>
<version>1.17.1</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -42,7 +42,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.12.1</version>
<version>2.11.0</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -54,25 +54,25 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.1.10</version>
<version>2.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>2.1.10</version>
<version>2.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId>
<version>2.1.10</version>
<version>2.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>2.1.10</version>
<version>2.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -90,7 +90,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<version>2.0.16</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -162,13 +162,13 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20250107</version>
<version>20240303</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.19.1</version>
<version>1.18.3</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -180,13 +180,13 @@
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>jokeapi</artifactId>
<version>1.0.0</version>
<version>0.9.2-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>pinboard-poster</artifactId>
<version>1.2.0</version>
<version>1.1.2-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -1,7 +1,7 @@
/*
* MobibotBuild.java
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
@ -77,7 +77,7 @@ public class MobibotBuild extends Project {
SONATYPE_SNAPSHOTS_LEGACY);
var log4j = version(2, 24, 3);
var kotlin = version(2, 1, 10);
var kotlin = version(2, 1, 0);
var langchain = version(0, 36, 2);
scope(compile)
// PircBotX
@ -85,10 +85,10 @@ public class MobibotBuild extends Project {
// Commons (mostly for PircBotX)
.include(dependency("org.apache.commons", "commons-lang3", "3.17.0"))
.include(dependency("org.apache.commons", "commons-text", "1.13.0"))
.include(dependency("commons-codec", "commons-codec", "1.18.0"))
.include(dependency("commons-codec", "commons-codec", "1.17.1"))
.include(dependency("commons-net", "commons-net", "3.11.1"))
// Google
.include(dependency("com.google.code.gson", "gson", "2.12.1"))
.include(dependency("com.google.code.gson", "gson", "2.11.0"))
.include(dependency("com.google.guava", "guava", "33.2.1-jre"))
// Kotlin
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
@ -98,7 +98,7 @@ public class MobibotBuild extends Project {
.include(dependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.10.1"))
.include(dependency("org.jetbrains.kotlinx", "kotlinx-cli-jvm", "0.3.6"))
// Logging
.include(dependency("org.slf4j", "slf4j-api", "2.0.17"))
.include(dependency("org.slf4j", "slf4j-api", "2.0.16"))
.include(dependency("org.apache.logging.log4j", "log4j-api", log4j))
.include(dependency("org.apache.logging.log4j", "log4j-core", log4j))
.include(dependency("org.apache.logging.log4j", "log4j-slf4j2-impl", log4j))
@ -112,19 +112,18 @@ public class MobibotBuild extends Project {
.include(dependency("com.squareup.okhttp3", "okhttp", "4.12.0"))
.include(dependency("net.aksingh", "owm-japis", "2.5.3.0"))
.include(dependency("net.objecthunter", "exp4j", "0.4.8"))
.include(dependency("org.json", "json", "20250107"))
.include(dependency("org.jsoup", "jsoup", "1.19.1"))
.include(dependency("org.json", "json", "20240303"))
.include(dependency("org.jsoup", "jsoup", "1.18.3"))
// Thauvin
.include(dependency("net.thauvin.erik", "cryptoprice", "1.0.3-SNAPSHOT"))
.include(dependency("net.thauvin.erik", "jokeapi", "1.0.0"))
.include(dependency("net.thauvin.erik", "pinboard-poster", "1.2.0"))
.include(dependency("net.thauvin.erik", "jokeapi", "0.9.2-SNAPSHOT"))
.include(dependency("net.thauvin.erik", "pinboard-poster", "1.1.2-SNAPSHOT"))
.include(dependency("net.thauvin.erik.urlencoder", "urlencoder-lib-jvm", "1.6.0"));
scope(test)
.include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 1)))
.include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 12, 1)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 12, 1)))
.include(dependency("org.junit.platform", "junit-platform-launcher", version(1, 12, 1)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 4)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 4)));
List<String> jars = new ArrayList<>();
runtimeClasspathJars().forEach(f -> jars.add("./lib/" + f.getName()));

View file

@ -1,7 +1,7 @@
/*
* Addons.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Constants.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* FeedReader.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Mobibot.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Pinboard.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,34 +1,3 @@
/*
* ReleaseInfo.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* Neither the name of this project nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This file is automatically generated
* Do not modify! -- ALL CHANGES WILL BE ERASED!
@ -45,12 +14,12 @@ import java.time.ZoneId
*/
object ReleaseInfo {
const val PROJECT = "mobibot"
const val VERSION = "0.8.0-rc+20250102175731"
const val VERSION = "0.8.0-rc+20240908190240"
@JvmField
@Suppress("MagicNumber")
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
Instant.ofEpochMilli(1735869451156L), ZoneId.systemDefault()
Instant.ofEpochMilli(1725847361020L), ZoneId.systemDefault()
)
const val WEBSITE = "https://mobitopia.org/mobibot/"

View file

@ -1,7 +1,7 @@
/*
* Utils.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* AbstractCommand.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ChannelFeed.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Cycle.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Die.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Ignore.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Info.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Me.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Modules.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Msg.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Nick.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Recap.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Say.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Users.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Versions.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Comment.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* LinksManager.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Posting.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Tags.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* View.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* NickComparator.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Seen.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* SeenNick.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Tell.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* TellManager.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* TellMessage.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Entries.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* EntriesUtils.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* EntryComment.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* EntryLink.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* FeedsManager.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* AbstractModule.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Calc.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ChatGpt2.kt
* ChatGpt.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* CryptoPrices.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* CurrencyConverter.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Dice.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Gemini2.kt
* Gemini.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* GoogleSearch.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Joke.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Lookup.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Mastodon.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ModuleException.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Ping.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* RockPaperScissors.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* StockQuote.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* War.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Weather2.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* WolframAlpha.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* WorldTime.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ErrorMessage.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Message.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* NoticeMessage.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* PrivateMessage.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* PublicMessage.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* SocialManager.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* SocialModule.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* SocialTimer.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* AddonsTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* DisableOnCi.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* DisableOnCiCondition.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ExceptionSanitizer.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* FeedReaderTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* LocalProperties.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* PinboardTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* UtilsTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* InfoTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* RecapTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* LinksManagerTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ViewTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* SeenTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* TellMessageTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* TellMessagesMgrTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* EntriesUtilsTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* EntryLinkTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* FeedMgrTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* CalcTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* ChatGpt2Test.kt
* ChatGptTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* CryptoPricesTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* CurrencyConverterTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* DiceTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* Gemini2Test.kt
* GeminiTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* GoogleSearchTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* JokeTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

View file

@ -1,7 +1,7 @@
/*
* LookupTest.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
* Copyright 2004-2024 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:

Some files were not shown because too many files have changed in this diff Show more