Regenerate code contributors

pull/6562/head
Chocobozzz 2024-08-14 15:34:16 +02:00
parent d24d221550
commit b708d2102a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 16 additions and 16 deletions

View File

@ -33,14 +33,14 @@
* Balázs Meskó
* Tirifto
* Wicklow
* Hannes Ylä-Jääski
* John Livingston
* Hannes Ylä-Jääski
* Kim
* Vodoyo Kamal
* Armin
* Fontan 030
* Mohamad Reza
* Besnik Bleta
* Mohamad Reza
* Quentin PAGÈS
* Kimsible
* Felix Ableitner
@ -74,12 +74,12 @@
* Cedric F
* Florent
* Marc Strange
* lutangar
* Ch
* J. Lavoie
* YILDIRIM YAPRAK
* barzofarev2
* jan Seli
* lutangar
* 李奕寯
* Kempelen
* Martin Hoefler
@ -90,16 +90,17 @@
* Alexander Ivanov
* Balázs Úr
* Echo Kilo
* Erik Guldberg
* Jan Keromnes
* Luc Didry
* Siourdakis Thanos
* alex gabilondo
* knuxify
* Agron Selimaj
* Attila F
* Caroline Chuong
* David Soh
* Diazepan Medina
* Erik Guldberg
* Jason Zhou
* Loukas Stamellos
* Ms Kimsible
@ -113,7 +114,6 @@
* Kemal Oktay Aktoğan
* Lucas Declercq
* Sirxy
* alex gabilondo
* matograine
* Ahmed ABERWAG
* Daniel Santos
@ -209,6 +209,7 @@
* Asr128
* Aurélien Bertron
* Axel Viala
* Danail Emandiev
* Daniele Garau
* Dep Pranata
* Dirk Kelly
@ -216,6 +217,7 @@
* Ehsan Gholami
* Elga Ahmad Prayoga
* Girish Ramakrishnan
* Goudarz Jafari
* Hakim Oubouali
* Hans Meiser
* Iñigo A
@ -287,7 +289,6 @@
* G4dter
* Gaëtan Rizio
* Gopherslol
* Goudarz Jafari
* HHY
* Hange
* Hjalte
@ -415,6 +416,7 @@
* Gabriel Scherer
* Gergo Bogdan
* Glandos
* Grant
* Grzesiek11
* Guillaume Pérution-Kihli
* Gérald CHATAGNON
@ -445,6 +447,7 @@
* Johnny Jazeix
* Jonas Sulzer
* Jonatan Nyberg
* Jonathan Weth
* Jorge Silva
* Jos
* Julien Le Bras
@ -507,6 +510,7 @@
* Philipp Fischbeck
* Philo van Kemenade
* Predatorix Phoenix
* Quantic Axe
* Quentin Dupont
* Quentí
* ROPEDE

View File

@ -1,17 +1,16 @@
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import { expect } from 'chai'
import { HttpStatusCode, PeerTubeProblemDocument, ServerErrorCode } from '@peertube/peertube-models'
import {
cleanupTests,
createMultipleServers,
doubleFollow,
makeActivityPubGetRequest,
makeGetRequest,
PeerTubeServer,
setAccessTokensToServers,
waitJobs
} from '@peertube/peertube-server-commands'
import { expect } from 'chai'
describe('Test follow constraints', function () {
let servers: PeerTubeServer[] = []

View File

@ -25,9 +25,11 @@ async function run () {
console.log('\n\n# Design\n')
console.log(' * [Olivier Massain](https://dribbble.com/omassain)')
console.log(' * [Marie-Cécile Godwin Paccard](https://mcgodwin.com/)')
console.log(' * [La Coopérative des Internets](https://www.lacooperativedesinternets.fr/)')
console.log('\n\n# Icons\n')
console.log(' * [Feather Icons](https://feathericons.com) (MIT)')
console.log(' * [Lucide Icons](https://lucide.dev/) (ISC)')
console.log(' * `playlist add`, `history`, `subscriptions`, `miscellaneous-services.svg`, `tip` by Material UI (Apache 2.0)')
console.log(' * `support` by Chocobozzz (CC-BY)')
console.log(' * `language` by Aaron Jin (CC-BY)')

View File

@ -13,7 +13,7 @@ import { PEERTUBE_VERSION } from '@server/initializers/constants.js'
import { PluginModel } from '@server/models/server/plugin.js'
import { PluginManager } from './plugin-manager.js'
async function listAvailablePluginsFromIndex (options: PeertubePluginIndexList) {
export async function listAvailablePluginsFromIndex (options: PeertubePluginIndexList) {
const { start = 0, count = 20, search, sort = 'npmName', pluginType } = options
const searchParams: PeertubePluginIndexList & Record<string, string | number> = {
@ -50,7 +50,7 @@ function addInstanceInformation (result: ResultList<PeerTubePluginIndex>) {
return result
}
async function getLatestPluginsVersion (npmNames: string[]): Promise<PeertubePluginLatestVersionResponse> {
export async function getLatestPluginsVersion (npmNames: string[]): Promise<PeertubePluginLatestVersionResponse> {
const bodyRequest: PeertubePluginLatestVersionRequest = {
npmNames,
currentPeerTubeEngine: PEERTUBE_VERSION
@ -62,7 +62,7 @@ async function getLatestPluginsVersion (npmNames: string[]): Promise<PeertubePlu
return body
}
async function getLatestPluginVersion (npmName: string) {
export async function getLatestPluginVersion (npmName: string) {
const results = await getLatestPluginsVersion([ npmName ])
if (Array.isArray(results) === false || results.length !== 1) {
@ -72,8 +72,3 @@ async function getLatestPluginVersion (npmName: string) {
return results[0].latestVersion
}
export {
getLatestPluginsVersion, getLatestPluginVersion, listAvailablePluginsFromIndex
}