cloudron 7.0.3 → 7.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cloudron-build +3 -3
- package/package.json +1 -1
- package/src/build-actions.js +22 -6
- package/src/versions-actions.js +94 -1
- package/udo apt update +0 -549
package/bin/cloudron-build
CHANGED
|
@@ -33,9 +33,9 @@ program.command('build', { isDefault: true })
|
|
|
33
33
|
.option('--tag <docker image tag>', 'Docker image tag. Note that this does not include the repository name')
|
|
34
34
|
.action(buildActions.build);
|
|
35
35
|
|
|
36
|
-
program.command('
|
|
37
|
-
.description('
|
|
38
|
-
.action(buildActions.
|
|
36
|
+
program.command('reset')
|
|
37
|
+
.description('Reset build configuration for this directory')
|
|
38
|
+
.action(buildActions.reset);
|
|
39
39
|
|
|
40
40
|
program.command('info')
|
|
41
41
|
.description('Print build information')
|
package/package.json
CHANGED
package/src/build-actions.js
CHANGED
|
@@ -295,6 +295,11 @@ async function build(localOptions, cmd) {
|
|
|
295
295
|
|
|
296
296
|
const appConfig = config.getCwdConfig(sourceDir);
|
|
297
297
|
const buildServiceConfig = getEffectiveBuildServiceConfig(options);
|
|
298
|
+
if (buildServiceConfig.type === 'remote' && buildServiceConfig.url) {
|
|
299
|
+
console.log('Building using remote build service at %s', buildServiceConfig.url);
|
|
300
|
+
} else {
|
|
301
|
+
console.log('Building locally with Docker.');
|
|
302
|
+
}
|
|
298
303
|
|
|
299
304
|
let repository = appConfig.repository;
|
|
300
305
|
if (!repository || options.repository) {
|
|
@@ -315,8 +320,10 @@ async function build(localOptions, cmd) {
|
|
|
315
320
|
|
|
316
321
|
appConfig.gitCommit = execSync('git rev-parse HEAD', { encoding: 'utf8' }).trim(); // when the build gets saved, save the gitCommit also
|
|
317
322
|
if (buildServiceConfig.type === 'remote' && buildServiceConfig.url) {
|
|
323
|
+
console.log('Building using remote build service at %s', buildServiceConfig.url);
|
|
318
324
|
await buildRemote(manifest, sourceDir, appConfig, options, buildServiceConfig);
|
|
319
325
|
} else {
|
|
326
|
+
console.log('Building locally with Docker.');
|
|
320
327
|
await buildLocal(manifest, sourceDir, appConfig, options);
|
|
321
328
|
}
|
|
322
329
|
}
|
|
@@ -377,16 +384,25 @@ async function push(localOptions, cmd) {
|
|
|
377
384
|
if (buildStatus !== 'success') return exit('Failed to push app. See log output above.');
|
|
378
385
|
}
|
|
379
386
|
|
|
380
|
-
async function
|
|
381
|
-
// const options = cmd.optsWithGlobals();
|
|
382
|
-
|
|
383
|
-
// try to find the manifest of this project
|
|
387
|
+
async function reset(/* localOptions, cmd */) {
|
|
384
388
|
const manifestFilePath = helper.locateManifest();
|
|
385
389
|
if (!manifestFilePath) return exit('No CloudronManifest.json found');
|
|
386
390
|
|
|
387
391
|
const sourceDir = path.dirname(manifestFilePath);
|
|
392
|
+
const cwdConfig = config.getCwdConfig(sourceDir);
|
|
393
|
+
|
|
394
|
+
if (!cwdConfig.repository && !cwdConfig.dockerImage) return console.log('Nothing to reset.');
|
|
395
|
+
|
|
396
|
+
const answer = await readline.question('Clear saved repository, image, and build info for this directory? [y/N] ', {});
|
|
397
|
+
if (answer.toLowerCase() !== 'y') return;
|
|
398
|
+
|
|
399
|
+
delete cwdConfig.repository;
|
|
400
|
+
delete cwdConfig.dockerImage;
|
|
401
|
+
delete cwdConfig.dockerImageSha256;
|
|
402
|
+
delete cwdConfig.gitCommit;
|
|
388
403
|
|
|
389
|
-
config.
|
|
404
|
+
config.setCwdConfig(sourceDir, cwdConfig);
|
|
405
|
+
console.log('Build configuration reset.');
|
|
390
406
|
}
|
|
391
407
|
|
|
392
408
|
async function info(localOptions, cmd) {
|
|
@@ -420,7 +436,7 @@ export default {
|
|
|
420
436
|
logs,
|
|
421
437
|
status,
|
|
422
438
|
push,
|
|
423
|
-
|
|
439
|
+
reset,
|
|
424
440
|
info,
|
|
425
441
|
dockerignoreMatcher
|
|
426
442
|
};
|
package/src/versions-actions.js
CHANGED
|
@@ -41,7 +41,14 @@ async function init(/*localOptions, cmd*/) {
|
|
|
41
41
|
if (fs.existsSync(versionsFilePath)) return exit(`${path.relative(process.cwd(), versionsFilePath)} already exists.`);
|
|
42
42
|
|
|
43
43
|
await writeVersions(versionsFilePath, { stable: true, versions: {} });
|
|
44
|
-
console.log(`Created ${path.relative(process.cwd(), versionsFilePath)}
|
|
44
|
+
console.log(`Created ${path.relative(process.cwd(), versionsFilePath)}.`);
|
|
45
|
+
|
|
46
|
+
const result = manifestFormat.parseFile(manifestFilePath);
|
|
47
|
+
if (!result.error) {
|
|
48
|
+
ensurePublishFields(result.manifest, manifestFilePath);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
console.log('\nUse "cloudron versions add" to add a version.');
|
|
45
52
|
}
|
|
46
53
|
|
|
47
54
|
async function resolveManifest(manifest, baseDir) {
|
|
@@ -69,6 +76,92 @@ async function resolveManifest(manifest, baseDir) {
|
|
|
69
76
|
}
|
|
70
77
|
}
|
|
71
78
|
|
|
79
|
+
function createStubFile(filePath, content) {
|
|
80
|
+
if (fs.existsSync(filePath)) return false;
|
|
81
|
+
fs.writeFileSync(filePath, content, 'utf8');
|
|
82
|
+
return true;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function ensurePublishFields(manifest, manifestFilePath) {
|
|
86
|
+
const baseDir = path.dirname(manifestFilePath);
|
|
87
|
+
const rawManifest = JSON.parse(fs.readFileSync(manifestFilePath, 'utf8'));
|
|
88
|
+
const added = [];
|
|
89
|
+
const created = [];
|
|
90
|
+
|
|
91
|
+
const defaultFields = {
|
|
92
|
+
id: 'com.example.app',
|
|
93
|
+
title: '',
|
|
94
|
+
author: '',
|
|
95
|
+
tagline: '',
|
|
96
|
+
website: '',
|
|
97
|
+
contactEmail: '',
|
|
98
|
+
iconUrl: '',
|
|
99
|
+
packagerName: '',
|
|
100
|
+
packagerUrl: '',
|
|
101
|
+
minBoxVersion: '9.1.0',
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
for (const [key, defaultValue] of Object.entries(defaultFields)) {
|
|
105
|
+
if (rawManifest[key]) continue;
|
|
106
|
+
|
|
107
|
+
rawManifest[key] = defaultValue;
|
|
108
|
+
manifest[key] = defaultValue;
|
|
109
|
+
added.push(key);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
if (!rawManifest.description) {
|
|
113
|
+
rawManifest.description = 'file://DESCRIPTION.md';
|
|
114
|
+
manifest.description = 'file://DESCRIPTION.md';
|
|
115
|
+
added.push('description');
|
|
116
|
+
if (createStubFile(path.join(baseDir, 'DESCRIPTION.md'), 'Describe your app here.\n')) {
|
|
117
|
+
created.push('DESCRIPTION.md');
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
if (!rawManifest.changelog) {
|
|
122
|
+
rawManifest.changelog = 'file://CHANGELOG';
|
|
123
|
+
manifest.changelog = 'file://CHANGELOG';
|
|
124
|
+
added.push('changelog');
|
|
125
|
+
const version = rawManifest.version || '0.1.0';
|
|
126
|
+
if (createStubFile(path.join(baseDir, 'CHANGELOG'), `[${version}]\n* Initial release\n`)) {
|
|
127
|
+
created.push('CHANGELOG');
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
if (!rawManifest.postInstallMessage) {
|
|
132
|
+
rawManifest.postInstallMessage = 'file://POSTINSTALL.md';
|
|
133
|
+
manifest.postInstallMessage = 'file://POSTINSTALL.md';
|
|
134
|
+
added.push('postInstallMessage');
|
|
135
|
+
if (createStubFile(path.join(baseDir, 'POSTINSTALL.md'), 'Post-installation instructions.\n')) {
|
|
136
|
+
created.push('POSTINSTALL.md');
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
if (!rawManifest.tags || rawManifest.tags.length === 0) {
|
|
141
|
+
rawManifest.tags = ['uncategorized'];
|
|
142
|
+
manifest.tags = ['uncategorized'];
|
|
143
|
+
added.push('tags');
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
if (!rawManifest.mediaLinks || rawManifest.mediaLinks.length === 0) {
|
|
147
|
+
rawManifest.mediaLinks = ['https://example.com/screenshot.png'];
|
|
148
|
+
manifest.mediaLinks = ['https://example.com/screenshot.png'];
|
|
149
|
+
added.push('mediaLinks');
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
if (added.length === 0) return;
|
|
153
|
+
|
|
154
|
+
fs.writeFileSync(manifestFilePath, JSON.stringify(rawManifest, null, 2) + '\n', 'utf8');
|
|
155
|
+
|
|
156
|
+
console.log(`\nAdded missing fields to ${path.relative(process.cwd(), manifestFilePath)}: ${added.join(', ')}`);
|
|
157
|
+
if (created.length > 0) {
|
|
158
|
+
console.log(`Created stub files: ${created.join(', ')}`);
|
|
159
|
+
}
|
|
160
|
+
console.log('\nEdit the following fields in CloudronManifest.json before publishing:');
|
|
161
|
+
console.log(' id, title, author, tagline, website, contactEmail, iconUrl, packagerName, packagerUrl');
|
|
162
|
+
console.log(' tags, mediaLinks, DESCRIPTION.md, CHANGELOG, POSTINSTALL.md');
|
|
163
|
+
}
|
|
164
|
+
|
|
72
165
|
async function addOrUpdate(localOptions, cmd) {
|
|
73
166
|
const isUpdate = cmd.parent.args[0] === 'update';
|
|
74
167
|
const versionsFilePath = await locateVersions();
|
package/udo apt update
DELETED
|
@@ -1,549 +0,0 @@
|
|
|
1
|
-
[32mauctex[0m/questing,questing 13.2-1.1 all
|
|
2
|
-
integrated document editing environment for TeX etc.
|
|
3
|
-
|
|
4
|
-
[32mbibata-cursor-theme[0m/questing,questing 2.0.6-1 all
|
|
5
|
-
Bibata is open source, compact, and material designed cursor set
|
|
6
|
-
|
|
7
|
-
[32mbig-cursor[0m/questing,questing 3.16 all
|
|
8
|
-
larger mouse cursors for X
|
|
9
|
-
|
|
10
|
-
[32mbreeze[0m/questing,now 4:6.4.5-0ubuntu1 amd64 [installed,automatic]
|
|
11
|
-
Default Plasma theme (Metapackage)
|
|
12
|
-
|
|
13
|
-
[32mbreeze-cursor-theme[0m/questing,questing,now 4:6.4.5-0ubuntu1 all [installed,automatic]
|
|
14
|
-
Default Plasma cursor theme
|
|
15
|
-
|
|
16
|
-
[32mbudgie-hotcorners-applet[0m/questing 1.9.0-1 amd64
|
|
17
|
-
Applet providing hotcorners capabilities for the Budgie Desktop
|
|
18
|
-
|
|
19
|
-
[32mcairo-dock-showmouse-plug-in[0m/questing 3.5.1-1build1 amd64
|
|
20
|
-
Showmouse plug-in Cairo-dock
|
|
21
|
-
|
|
22
|
-
[32mchameleon-cursor-theme[0m/questing,questing 0.5-8 all
|
|
23
|
-
modern but not gaudy X11 mouse theme
|
|
24
|
-
|
|
25
|
-
[32mcomixcursors-lefthanded[0m/questing,questing 0.10.0-1 all
|
|
26
|
-
X11 mouse pointer themes with a comic art feeling (LH, translucent)
|
|
27
|
-
|
|
28
|
-
[32mcomixcursors-lefthanded-opaque[0m/questing,questing 0.10.0-1 all
|
|
29
|
-
X11 mouse pointer themes with a comic art feeling (LH, opaque)
|
|
30
|
-
|
|
31
|
-
[32mcomixcursors-righthanded[0m/questing,questing 0.10.0-1 all
|
|
32
|
-
X11 mouse pointer themes with a comic art feeling (RH, translucent)
|
|
33
|
-
|
|
34
|
-
[32mcomixcursors-righthanded-opaque[0m/questing,questing 0.10.0-1 all
|
|
35
|
-
X11 mouse pointer themes with a comic art feeling (RH, opaque)
|
|
36
|
-
|
|
37
|
-
[32mcrystalcursors[0m/questing,questing 1.1.1-14.1 all
|
|
38
|
-
X11 mouse theme with the crystal look&feel
|
|
39
|
-
|
|
40
|
-
[32mcursor[0m/unknown,now 2.5.26-1772083177 amd64 [installed]
|
|
41
|
-
The AI Code Editor.
|
|
42
|
-
|
|
43
|
-
[32mcursor-nightly[0m/unknown 2.7.0-pre.5.patch.0-1772235562 amd64
|
|
44
|
-
The AI Code Editor.
|
|
45
|
-
|
|
46
|
-
[32mcursor-sandbox-apparmor[0m/unknown,unknown,unknown,now 0.2.0 all [installed]
|
|
47
|
-
AppArmor profile for Cursor sandbox helper (Enterprise)
|
|
48
|
-
|
|
49
|
-
[32mdangen[0m/questing 0.5-7 amd64
|
|
50
|
-
shoot 'em up game where accurate shooting matters
|
|
51
|
-
|
|
52
|
-
[32mdde-qt5integration[0m/questing 5.7.12-1build1 amd64
|
|
53
|
-
Qt5 theme integration for Deepin application
|
|
54
|
-
|
|
55
|
-
[32mdeepin-icon-theme[0m/questing,questing 2025.03.27-1 all
|
|
56
|
-
Icon Theme for Deepin software and Deepin Desktop Environment
|
|
57
|
-
|
|
58
|
-
[32mdmz-cursor-theme[0m/questing,questing,now 0.4.5.3 all [installed,automatic]
|
|
59
|
-
Style neutral, scalable cursor theme
|
|
60
|
-
|
|
61
|
-
[32me-wrapper[0m/questing,questing 0.2-1 all
|
|
62
|
-
invoke your editor, with optional file:lineno handling
|
|
63
|
-
|
|
64
|
-
[32melpa-bar-cursor[0m/questing,questing 2.0-2 all
|
|
65
|
-
switch Emacs block cursor to a bar
|
|
66
|
-
|
|
67
|
-
[32melpa-beacon[0m/questing,questing 1.3.4-3 all
|
|
68
|
-
highlight the cursor whenever the window scrolls
|
|
69
|
-
|
|
70
|
-
[32melpa-cfrs[0m/questing,questing 1.6.0-4 all
|
|
71
|
-
Child-frame based read-string for Emacs
|
|
72
|
-
|
|
73
|
-
[32melpa-crdt[0m/questing,questing 0.3.5-4 all
|
|
74
|
-
collaborative editing environment for Emacs
|
|
75
|
-
|
|
76
|
-
[32melpa-expand-region[0m/questing,questing 1.0.0-2 all
|
|
77
|
-
Increase selected region in Emacs by semantic units
|
|
78
|
-
|
|
79
|
-
[32melpa-org-appear[0m/questing,questing 0.3.0-3 all
|
|
80
|
-
auto-toggle visibility of org mode elements
|
|
81
|
-
|
|
82
|
-
[32melpa-php-mode[0m/questing,questing 1.27.0-1 all
|
|
83
|
-
PHP Mode for GNU Emacs
|
|
84
|
-
|
|
85
|
-
[32mfierce[0m/questing,questing 1.6.0-1 all
|
|
86
|
-
Domain DNS scanner
|
|
87
|
-
|
|
88
|
-
[32mfonts-texgyre[0m/questing,questing 20180621-6 all
|
|
89
|
-
OpenType fonts based on URW Fonts
|
|
90
|
-
|
|
91
|
-
[32mfuse-emulator-gtk[0m/questing 1.6.0+dfsg1-2build4 amd64
|
|
92
|
-
The Free Unix Spectrum Emulator (GTK version)
|
|
93
|
-
|
|
94
|
-
[32mfuse-emulator-sdl[0m/questing 1.6.0+dfsg1-2build4 amd64
|
|
95
|
-
The Free Unix Spectrum Emulator (SDL version)
|
|
96
|
-
|
|
97
|
-
[32mgdl-astrolib[0m/questing,questing 2022.09.12+dfsg-2 all
|
|
98
|
-
Low-level astronomy software for GDL
|
|
99
|
-
|
|
100
|
-
[32mgeany-plugin-addons[0m/questing 2.1+dfsg-2 amd64
|
|
101
|
-
miscellaneous plugins for Geany
|
|
102
|
-
|
|
103
|
-
[32mgeany-plugin-autoclose[0m/questing 2.1+dfsg-2 amd64
|
|
104
|
-
auto-closing plugin for Geany
|
|
105
|
-
|
|
106
|
-
[32mgeany-plugin-automark[0m/questing 2.1+dfsg-2 amd64
|
|
107
|
-
auto-mark plugin for Geany
|
|
108
|
-
|
|
109
|
-
[32mgeany-plugin-doc[0m/questing 2.1+dfsg-2 amd64
|
|
110
|
-
documentation plugin for Geany
|
|
111
|
-
|
|
112
|
-
[32mgeany-plugin-pairtaghighlighter[0m/questing 2.1+dfsg-2 amd64
|
|
113
|
-
tag pair highlighter plugin for Geany
|
|
114
|
-
|
|
115
|
-
[32mgedit-latex-plugin[0m/questing,questing 46.2.2-1 all
|
|
116
|
-
gedit plugin for composing and compiling LaTeX documents
|
|
117
|
-
|
|
118
|
-
[32mgnome-settings-daemon[0m/questing,now 49.0-1ubuntu3 amd64 [installed,automatic]
|
|
119
|
-
daemon handling the GNOME session settings
|
|
120
|
-
|
|
121
|
-
[32mgolang-github-atomicgo-cursor-dev[0m/questing,questing 0.2.0-2 all
|
|
122
|
-
Move the terminal cursor in any direction on every operating system (library)
|
|
123
|
-
|
|
124
|
-
[32mgolang-github-bmatsuo-lmdb-go-dev[0m/questing,questing 1.8.0+git20170215.a14b5a3-4build1 all
|
|
125
|
-
Bindings for the LMDB C library
|
|
126
|
-
|
|
127
|
-
[32mgolang-github-jaguilar-vt100-dev[0m/questing,questing 0.0~git20201024.81de19c-2 all
|
|
128
|
-
raw-mode vt100 screen reader
|
|
129
|
-
|
|
130
|
-
[32mgolang-github-konsorten-go-windows-terminal-sequences-dev[0m/questing,questing 1.0.2-3 all
|
|
131
|
-
Enable support for Windows Terminal Colors
|
|
132
|
-
|
|
133
|
-
[32mgolang-github-tonistiigi-vt100-dev[0m/questing,questing 0.0~git20240514.90bafcd-2 all
|
|
134
|
-
Raw-mode vt100 screen reader (library)
|
|
135
|
-
|
|
136
|
-
[32mgolang-github-vmihailenco-msgpack.v5-dev[0m/questing,questing 5.4.1-1 all
|
|
137
|
-
MessagePack (msgpack.org) encoding for Golang (library)
|
|
138
|
-
|
|
139
|
-
[32mgt5[0m/questing,questing 1.5.0~20111220+bzr29-4 all
|
|
140
|
-
shell program to display visual disk usage with navigation
|
|
141
|
-
|
|
142
|
-
[32mhuman-theme[0m/questing,questing 0.39.3 all
|
|
143
|
-
Human theme
|
|
144
|
-
|
|
145
|
-
[32mhyprcursor-util[0m/questing 0.1.11-1 amd64
|
|
146
|
-
Utility to manipulate hyprcusor and xcursor themes
|
|
147
|
-
|
|
148
|
-
[32micoutils[0m/questing 0.32.3-6 amd64
|
|
149
|
-
Create and extract MS Windows icons and cursors
|
|
150
|
-
|
|
151
|
-
[32minspectrum[0m/questing 0.3.1-1build2 amd64
|
|
152
|
-
tool for visualising captured radio signals
|
|
153
|
-
|
|
154
|
-
[32mjournal-brief[0m/questing,questing 1.1.8-3 all
|
|
155
|
-
Show interesting new systemd journal entries
|
|
156
|
-
|
|
157
|
-
[32mkakoune[0m/questing 2024.05.18-2ubuntu1 amd64
|
|
158
|
-
Vim-inspired, selection-oriented code editor
|
|
159
|
-
|
|
160
|
-
[32mkeynav[0m/questing 0.20180421~git6505bd0d-3.1 amd64
|
|
161
|
-
keyboard-driven mouse cursor mover
|
|
162
|
-
|
|
163
|
-
[32mkmousetool[0m/questing,now 4:25.08.1-0ubuntu1 amd64 [installed,automatic]
|
|
164
|
-
mouse manipulation tool for the disabled
|
|
165
|
-
|
|
166
|
-
[32mknot-resolver[0m/questing 5.7.5-1 amd64
|
|
167
|
-
caching, DNSSEC-validating DNS resolver
|
|
168
|
-
|
|
169
|
-
[32mlibansi-terminal-ocaml[0m/questing 0.8.5-5build4 amd64
|
|
170
|
-
colors and cursor movements for OCaml applications (runtime files)
|
|
171
|
-
|
|
172
|
-
[32mlibansi-terminal-ocaml-dev[0m/questing 0.8.5-5build4 amd64
|
|
173
|
-
colors and cursor movements for OCaml applications (dev files)
|
|
174
|
-
|
|
175
|
-
[32mlibcatalyst-view-csv-perl[0m/questing,questing 1.8-1 all
|
|
176
|
-
CSV view class for the Catalyst web framework
|
|
177
|
-
|
|
178
|
-
[32mlibdbix-class-cursor-cached-perl[0m/questing,questing 1.001004-3 all
|
|
179
|
-
cursor object with built-in caching support
|
|
180
|
-
|
|
181
|
-
[32mlibghc-ansi-terminal-dev[0m/questing 1.0.2-1 amd64
|
|
182
|
-
Simple ANSI terminal support, with Windows compatibility
|
|
183
|
-
|
|
184
|
-
[32mlibghc-ansi-terminal-doc[0m/questing,questing 1.0.2-1 all
|
|
185
|
-
Simple ANSI terminal support, with Windows compatibility; documentation
|
|
186
|
-
|
|
187
|
-
[32mlibghc-ansi-terminal-prof[0m/questing 1.0.2-1 amd64
|
|
188
|
-
Simple ANSI terminal support, with Windows compatibility; profiling libraries
|
|
189
|
-
|
|
190
|
-
[32mlibghc-terminal-progress-bar-dev[0m/questing 0.4.2-2 amd64
|
|
191
|
-
A simple progress bar in the terminal
|
|
192
|
-
|
|
193
|
-
[32mlibghc-terminal-progress-bar-doc[0m/questing,questing 0.4.2-2 all
|
|
194
|
-
A simple progress bar in the terminal; documentation
|
|
195
|
-
|
|
196
|
-
[32mlibghc-terminal-progress-bar-prof[0m/questing 0.4.2-2 amd64
|
|
197
|
-
A simple progress bar in the terminal; profiling libraries
|
|
198
|
-
|
|
199
|
-
[32mlibhyprcursor-dev[0m/questing 0.1.11-1 amd64
|
|
200
|
-
hyprland cursor format, library and utilities (headers)
|
|
201
|
-
|
|
202
|
-
[32mlibhyprcursor0[0m/questing 0.1.11-1 amd64
|
|
203
|
-
hyprland cursor format, library and utilities
|
|
204
|
-
|
|
205
|
-
[32mlibmonospaceif-dev[0m/questing 0.7.15-2.1 amd64
|
|
206
|
-
Interface translating libfizmo output into monospaced text
|
|
207
|
-
|
|
208
|
-
[32mlibmygui-dev[0m/questing 3.4.2+dfsg-1.1build1 amd64
|
|
209
|
-
Fast, simple and flexible GUI for OpenMW - development files
|
|
210
|
-
|
|
211
|
-
[32mlibmygui.ogreplatform0debian1t64[0m/questing 3.4.2+dfsg-1.1build1 amd64
|
|
212
|
-
Fast, simple and flexible GUI - Ogre interface
|
|
213
|
-
|
|
214
|
-
[32mlibmygui.opengl3platform0debian1t64[0m/questing 3.4.2+dfsg-1.1build1 amd64
|
|
215
|
-
Fast, simple and flexible GUI - OpenGL3 interface
|
|
216
|
-
|
|
217
|
-
[32mlibmygui.openglplatform0debian1t64[0m/questing 3.4.2+dfsg-1.1build1 amd64
|
|
218
|
-
Fast, simple and flexible GUI - OpenGL interface
|
|
219
|
-
|
|
220
|
-
[32mlibmyguiengine3debian1t64[0m/questing 3.4.2+dfsg-1.1build1 amd64
|
|
221
|
-
Fast, simple and flexible GUI - shared library
|
|
222
|
-
|
|
223
|
-
[32mlibodbccr2[0m/questing,now 2.3.12-2ubuntu2 amd64 [installed,automatic]
|
|
224
|
-
ODBC Cursor library for Unix
|
|
225
|
-
|
|
226
|
-
[32mlibpaperclips-java[0m/questing,questing 1.0.4-3 all
|
|
227
|
-
Simplified Java Printing Support for SWT
|
|
228
|
-
|
|
229
|
-
[32mlibpaperclips-java-doc[0m/questing,questing 1.0.4-3 all
|
|
230
|
-
Documentation for libpaperclips-java
|
|
231
|
-
|
|
232
|
-
[32mlibrust-cursor-icon-dev[0m/questing 1.1.0-2 amd64
|
|
233
|
-
Cross platform cursor icon type - Rust source code
|
|
234
|
-
|
|
235
|
-
[32mlibrust-hickory-recursor-dev[0m/questing 0.24.1-1 amd64
|
|
236
|
-
*WARNING* This library is experimental - Rust source code
|
|
237
|
-
|
|
238
|
-
[32mlibrust-regex-cursor-dev[0m/questing 0.1.4-1 amd64
|
|
239
|
-
Regex fork that can search discontiguous haystacks - Rust source code
|
|
240
|
-
|
|
241
|
-
[32mlibrust-wayland-cursor-0.29-dev[0m/questing 0.29.5-6 amd64
|
|
242
|
-
Bindings to libwayland-cursor - Rust source code
|
|
243
|
-
|
|
244
|
-
[32mlibrust-wayland-cursor-dev[0m/questing 0.31.11-1 amd64
|
|
245
|
-
Bindings to libwayland-cursor - Rust source code
|
|
246
|
-
|
|
247
|
-
[32mlibrust-xcursor-dev[0m/questing 0.3.4-1 amd64
|
|
248
|
-
Loading XCursor themes - Rust source code
|
|
249
|
-
|
|
250
|
-
[32mlibstartup-notification0[0m/questing,now 0.12-8 amd64 [installed,automatic]
|
|
251
|
-
library for program launch feedback (shared library)
|
|
252
|
-
|
|
253
|
-
[32mlibstartup-notification0-dev[0m/questing 0.12-8 amd64
|
|
254
|
-
library for program launch feedback (development headers)
|
|
255
|
-
|
|
256
|
-
[32mlibt3key-bin[0m/questing 0.2.10-1.1 amd64
|
|
257
|
-
Utilities for working with libt3key terminal descriptions
|
|
258
|
-
|
|
259
|
-
[32mlibt3key-dev[0m/questing 0.2.10-1.1 amd64
|
|
260
|
-
Development files for libt3key
|
|
261
|
-
|
|
262
|
-
[32mlibt3key1[0m/questing 0.2.10-1.1 amd64
|
|
263
|
-
Terminal key sequence database library
|
|
264
|
-
|
|
265
|
-
[32mlibtickit-widget-entry-plugin-completion-perl[0m/questing,questing 0.02-1 all
|
|
266
|
-
word-completion plugin for Tickit::Widget::Entry
|
|
267
|
-
|
|
268
|
-
[32mlibwayland-cursor++1[0m/questing 1.0.0-6 amd64
|
|
269
|
-
wayland compositor infrastructure - cursor library C++ bindings
|
|
270
|
-
|
|
271
|
-
[32mlibwayland-cursor0[0m/questing,now 1.24.0-1build1 amd64 [installed,automatic]
|
|
272
|
-
wayland compositor infrastructure - cursor library
|
|
273
|
-
|
|
274
|
-
[32mlibx11-protocol-other-perl[0m/questing,questing 31-1 all
|
|
275
|
-
miscellaneous X11::Protocol helpers
|
|
276
|
-
|
|
277
|
-
[32mlibxcb-cursor-dev[0m/questing 0.1.5-1 amd64
|
|
278
|
-
utility libraries for X C Binding -- cursor, development files
|
|
279
|
-
|
|
280
|
-
[32mlibxcb-cursor0[0m/questing,now 0.1.5-1 amd64 [installed]
|
|
281
|
-
utility libraries for X C Binding -- cursor
|
|
282
|
-
|
|
283
|
-
[32mlibxcursor-dev[0m/questing 1:1.2.3-1 amd64
|
|
284
|
-
X cursor management library (development files)
|
|
285
|
-
|
|
286
|
-
[32mlibxcursor1[0m/questing,now 1:1.2.3-1 amd64 [installed,automatic]
|
|
287
|
-
X cursor management library
|
|
288
|
-
|
|
289
|
-
[32mlibxfixes-dev[0m/questing 1:6.0.0-2build1 amd64
|
|
290
|
-
X11 miscellaneous 'fixes' extension library (development headers)
|
|
291
|
-
|
|
292
|
-
[32mlibxfixes3[0m/questing,now 1:6.0.0-2build1 amd64 [installed,automatic]
|
|
293
|
-
X11 miscellaneous 'fixes' extension library
|
|
294
|
-
|
|
295
|
-
[32mlibxmlbeans-java[0m/questing,questing 4.0.0-2 all
|
|
296
|
-
Java library for accessing XML by binding it to Java types
|
|
297
|
-
|
|
298
|
-
[32mlibzed-ocaml[0m/questing 3.2.3-1build6 amd64
|
|
299
|
-
abstract engine for text edition in OCaml (runtime)
|
|
300
|
-
|
|
301
|
-
[32mlibzed-ocaml-dev[0m/questing 3.2.3-1build6 amd64
|
|
302
|
-
abstract engine for text edition in OCaml (development tools)
|
|
303
|
-
|
|
304
|
-
[32mliquidwar[0m/questing 5.6.5-2.1 amd64
|
|
305
|
-
truly original multiplayer wargame
|
|
306
|
-
|
|
307
|
-
[32mliquidwar-data[0m/questing,questing 5.6.5-2.1 all
|
|
308
|
-
data files for Liquid War
|
|
309
|
-
|
|
310
|
-
[32mliquidwar-server[0m/questing 5.6.5-2.1 amd64
|
|
311
|
-
Liquid War server
|
|
312
|
-
|
|
313
|
-
[32mmate-settings-daemon[0m/questing 1.26.1-1.2 amd64
|
|
314
|
-
daemon handling the MATE session settings
|
|
315
|
-
|
|
316
|
-
[32mmate-settings-daemon-common[0m/questing,questing 1.26.1-1.2 all
|
|
317
|
-
daemon handling the MATE session settings (common files)
|
|
318
|
-
|
|
319
|
-
[32mmate-settings-daemon-dev[0m/questing 1.26.1-1.2 amd64
|
|
320
|
-
daemon handling the MATE session settings (development files)
|
|
321
|
-
|
|
322
|
-
[32mmle[0m/questing 1.7.2-1 amd64
|
|
323
|
-
flexible terminal-based editor
|
|
324
|
-
|
|
325
|
-
[32mmygui-doc[0m/questing,questing 3.4.2+dfsg-1.1build1 all
|
|
326
|
-
API documentations for MyGUI library
|
|
327
|
-
|
|
328
|
-
[32mnim-lapper-dev[0m/questing,questing 0.1.8-1 all
|
|
329
|
-
simple, fast interval searches for nim
|
|
330
|
-
|
|
331
|
-
[32mnode-ansi[0m/questing,questing 0.3.1-2 all
|
|
332
|
-
Advanced ANSI formatting tool for Node.js
|
|
333
|
-
|
|
334
|
-
[32mnode-ansi-escapes[0m/questing,questing 5.0.0+really.4.3.1-1 all
|
|
335
|
-
ANSI escape codes for manipulating the terminal
|
|
336
|
-
|
|
337
|
-
[32mnode-charm[0m/questing,questing 1.0.2-3 all
|
|
338
|
-
ansi control sequences for terminal cursor hopping and colors
|
|
339
|
-
|
|
340
|
-
[32mnode-cli-cursor[0m/questing,questing 4.0.0-3 all
|
|
341
|
-
Toggle the CLI cursor
|
|
342
|
-
|
|
343
|
-
[32mnode-console-control-strings[0m/questing,questing 1.1.0-3 all
|
|
344
|
-
cross-platform tested terminal/console command strings
|
|
345
|
-
|
|
346
|
-
[32mnode-restore-cursor[0m/questing,questing 4.0.0-4 all
|
|
347
|
-
Gracefully restore the CLI cursor on exit
|
|
348
|
-
|
|
349
|
-
[32mnode-y-codemirror[0m/questing,questing 3.0.1-2 all
|
|
350
|
-
node-yjs binding to a CodeMirror editor
|
|
351
|
-
|
|
352
|
-
[32mnode-yjs[0m/questing,questing 13.6.8-1 all
|
|
353
|
-
CRDT framework with a powerful abstraction of shared data
|
|
354
|
-
|
|
355
|
-
[32mobs-advanced-scene-switcher[0m/questing 1.29.2-1ubuntu1 amd64
|
|
356
|
-
plugin for OBS Studio to improve the scene switching
|
|
357
|
-
|
|
358
|
-
[32moneko[0m/questing 1.2.sakura.6-16 amd64
|
|
359
|
-
cat chases the cursor (now a mouse) around the screen
|
|
360
|
-
|
|
361
|
-
[32moxygen-cursor-theme[0m/questing,questing 0.0.2012-06-kde4.8-6ubuntu1 all
|
|
362
|
-
Oxygen mouse cursor theme
|
|
363
|
-
|
|
364
|
-
[32moxygen-cursor-theme-extra[0m/questing,questing 0.0.2012-06-kde4.8-6ubuntu1 all
|
|
365
|
-
Oxygen mouse cursor theme - extra colors
|
|
366
|
-
|
|
367
|
-
[32mpacvim[0m/questing 1.1.1-1.1 amd64
|
|
368
|
-
pacman game concept with vim command
|
|
369
|
-
|
|
370
|
-
[32mpaje.app[0m/questing 1.98-2build1 amd64
|
|
371
|
-
generic visualization tool (Gantt chart and more)
|
|
372
|
-
|
|
373
|
-
[32mpaper-icon-theme[0m/questing,questing 1.5.0+git20200312.aa3e8af-6 all
|
|
374
|
-
simple and modern icon and cursor theme
|
|
375
|
-
|
|
376
|
-
[32mpd-hcs[0m/questing 0.2.1-4build1 amd64
|
|
377
|
-
Pd library of experiments in UNIX, the Pd GUI, and more
|
|
378
|
-
|
|
379
|
-
[32mpdns-recursor[0m/questing 5.2.4-2build2 amd64
|
|
380
|
-
PowerDNS Recursor
|
|
381
|
-
|
|
382
|
-
[32mphinger-cursor-theme[0m/questing,questing 1.1-0ubuntu1 all
|
|
383
|
-
The most over-engineered cursor theme
|
|
384
|
-
|
|
385
|
-
[32mphosh-osk-stub[0m/questing 0.46.0-1 amd64
|
|
386
|
-
An alternative on screen keyboard for Phosh
|
|
387
|
-
|
|
388
|
-
[32mphosh-osk-stub-doc[0m/questing,questing 0.46.0-1 all
|
|
389
|
-
API documentation for Phosh's OSK stub
|
|
390
|
-
|
|
391
|
-
[32mpinfo[0m/questing 0.6.13-2 amd64
|
|
392
|
-
user-friendly console-based viewer for Info document files
|
|
393
|
-
|
|
394
|
-
[32mpython-bsddb3-doc[0m/questing,questing 6.2.9-4build1 all
|
|
395
|
-
Documentation for the python Berkeley DB interface module
|
|
396
|
-
|
|
397
|
-
[32mpython-psycopg2-doc[0m/questing,questing 2.9.10-1build1 all
|
|
398
|
-
Python module for PostgreSQL (documentation package)
|
|
399
|
-
|
|
400
|
-
[32mpython3-ansi[0m/questing,questing 0.1.5-2 all
|
|
401
|
-
cursor movement and graphics - Python 3
|
|
402
|
-
|
|
403
|
-
[32mpython3-asyncpg[0m/questing 0.30.0-1.1 amd64
|
|
404
|
-
asyncio PosgtreSQL driver
|
|
405
|
-
|
|
406
|
-
[32mpython3-bsddb3[0m/questing 6.2.9-4build1 amd64
|
|
407
|
-
Python interface for Berkeley DB (Python 3.x)
|
|
408
|
-
|
|
409
|
-
[32mpython3-consolekit[0m/questing,questing 1.7.2-2 all
|
|
410
|
-
Additional utilities for click
|
|
411
|
-
|
|
412
|
-
[32mpython3-easyansi[0m/questing,questing 0.3-4 all
|
|
413
|
-
terminal framework for colors, cursor movements, and drawing
|
|
414
|
-
|
|
415
|
-
[32mpython3-mplcursors[0m/questing,questing 0.6-2 all
|
|
416
|
-
Interactive data selection cursors for Matplotlib
|
|
417
|
-
|
|
418
|
-
[32mpython3-psycopg2[0m/questing 2.9.10-1build1 amd64
|
|
419
|
-
Python 3 module for PostgreSQL
|
|
420
|
-
|
|
421
|
-
[32mpython3-psycopg2cffi[0m/questing 2.9.0-1 amd64
|
|
422
|
-
implementation of the psycopg2 module using cffi
|
|
423
|
-
|
|
424
|
-
[32mpython3-tktooltip[0m/questing 3.1.2-1 amd64
|
|
425
|
-
simple yet fully customisable tooltip/pop-up implementation
|
|
426
|
-
|
|
427
|
-
[32mruby-tty-cursor[0m/questing,questing 0.7.1-2 all
|
|
428
|
-
Library to help move the terminal cursor around and manipulate text
|
|
429
|
-
|
|
430
|
-
[32msabily-themes[0m/questing,questing 1.7build1 all
|
|
431
|
-
Sabily themes
|
|
432
|
-
|
|
433
|
-
[32mslop[0m/questing 7.6-4ubuntu1 amd64
|
|
434
|
-
queries for a selection from the user and prints the region to stdout
|
|
435
|
-
|
|
436
|
-
[32msmenu[0m/questing 1.4.0-1 amd64
|
|
437
|
-
curse-based CLI selection box
|
|
438
|
-
|
|
439
|
-
[32mspeakup-doc[0m/questing,questing 3.1.6.dfsg.1-7 all
|
|
440
|
-
Documentation for speakup kernel modules
|
|
441
|
-
|
|
442
|
-
[32mstaden[0m/questing 2.0.0+b11-7 amd64
|
|
443
|
-
DNA sequence assembly (Gap4/Gap5), editing and analysis tools
|
|
444
|
-
|
|
445
|
-
[32mstaden-common[0m/questing,questing 2.0.0+b11-7 all
|
|
446
|
-
Architecture independent files for Staden
|
|
447
|
-
|
|
448
|
-
[32mtea[0m/questing 63.3.0-1 amd64
|
|
449
|
-
graphical text editor with syntax highlighting
|
|
450
|
-
|
|
451
|
-
[32mteseq[0m/questing 1.1.1-5 amd64
|
|
452
|
-
utility for rendering terminal typescripts human-readable
|
|
453
|
-
|
|
454
|
-
[32mtklib[0m/questing,questing 0.9-1 all
|
|
455
|
-
standard Tk Library
|
|
456
|
-
|
|
457
|
-
[32mtopp[0m/questing 2.6.0+cleaned1-4build7 amd64
|
|
458
|
-
set of programs implementing The OpenMS Proteomic Pipeline
|
|
459
|
-
|
|
460
|
-
[32mubuntume-themes[0m/questing,questing 1.7build1 all
|
|
461
|
-
Sabily themes (transitional package)
|
|
462
|
-
|
|
463
|
-
[32mukui-settings-daemon[0m/questing 4.0.0.2-1 amd64
|
|
464
|
-
daemon handling the UKUI session settings
|
|
465
|
-
|
|
466
|
-
[32mukui-settings-daemon-common[0m/questing,questing 4.0.0.2-1 all
|
|
467
|
-
daemon handling the UKUI session settings (common files)
|
|
468
|
-
|
|
469
|
-
[32munclutter[0m/questing 8-26 amd64
|
|
470
|
-
hides the mouse cursor in X after a period of inactivity
|
|
471
|
-
|
|
472
|
-
[32munclutter-xfixes[0m/questing 1.6-1build2 amd64
|
|
473
|
-
hide the X mouse cursor after a period of inactivity, using XFixes
|
|
474
|
-
|
|
475
|
-
[32munity-settings-daemon[0m/questing 15.04.1+21.10.20220802-0ubuntu6 amd64
|
|
476
|
-
daemon handling the Unity session settings
|
|
477
|
-
|
|
478
|
-
[32muqm[0m/questing 0.8.0+dfsg-3.2 amd64
|
|
479
|
-
The Ur-Quan Masters - An inter-galactic adventure game
|
|
480
|
-
|
|
481
|
-
[32muqm-content[0m/questing,questing 0.8.0+deb-1 all
|
|
482
|
-
The Ur-Quan Masters - Game data files
|
|
483
|
-
|
|
484
|
-
[32muqm-music[0m/questing,questing 0.8.0+deb-1 all
|
|
485
|
-
The Ur-Quan Masters - Game music files
|
|
486
|
-
|
|
487
|
-
[32muqm-russian[0m/questing,questing 1.0.2-6 all
|
|
488
|
-
Russian addon for 'The Ur-Quan Masters' game
|
|
489
|
-
|
|
490
|
-
[32muqm-voice[0m/questing,questing 0.8.0+deb-1 all
|
|
491
|
-
The Ur-Quan Masters - Voice files
|
|
492
|
-
|
|
493
|
-
[32mval-and-rick[0m/questing 0.1a.dfsg1-7build1 amd64
|
|
494
|
-
shooter game
|
|
495
|
-
|
|
496
|
-
[32mval-and-rick-data[0m/questing,questing 0.1a.dfsg1-7build1 all
|
|
497
|
-
shooter game - game data
|
|
498
|
-
|
|
499
|
-
[32mvim-textobj-user[0m/questing,questing 0.7.6-3 all
|
|
500
|
-
Vim plugin for user-defined text objects
|
|
501
|
-
|
|
502
|
-
[32mvis[0m/questing 0.9-1 amd64
|
|
503
|
-
Modern, legacy free, simple yet efficient vim-like editor
|
|
504
|
-
|
|
505
|
-
[32mwmdrawer[0m/questing 0.10.5-6.1build2 amd64
|
|
506
|
-
Window Maker dockapp providing a drawer to launch applications
|
|
507
|
-
|
|
508
|
-
[32mwmfire[0m/questing 1.2.4-8 amd64
|
|
509
|
-
very cool fiery way of showing your CPU usage
|
|
510
|
-
|
|
511
|
-
[32mx11-apps[0m/questing,now 7.7+11build3 amd64 [installed,automatic]
|
|
512
|
-
X applications
|
|
513
|
-
|
|
514
|
-
[32mxbanish[0m/questing 1.8-1 amd64
|
|
515
|
-
banish the mouse cursor when typing, show it again when the mouse moves
|
|
516
|
-
|
|
517
|
-
[32mxbattbar[0m/questing 1.4.9-2 amd64
|
|
518
|
-
Display battery status in X11
|
|
519
|
-
|
|
520
|
-
[32mxcur2png[0m/questing 0.7.1-1.1 amd64
|
|
521
|
-
program to convert X cursors into PNG images
|
|
522
|
-
|
|
523
|
-
[32mxcursor-themes[0m/questing,questing,now 1.0.6-0ubuntu1 all [installed,automatic]
|
|
524
|
-
Base X cursor themes
|
|
525
|
-
|
|
526
|
-
[32mxfce4-eyes-plugin[0m/questing 4.6.2-1 amd64
|
|
527
|
-
eyes that follow your mouse for the Xfce4 panel
|
|
528
|
-
|
|
529
|
-
[32mxfoil[0m/questing 6.99.dfsg+1-3 amd64
|
|
530
|
-
program for the design and analysis of subsonic airfoils
|
|
531
|
-
|
|
532
|
-
[32mxgterm[0m/questing 2.2+dfsg-1 amd64
|
|
533
|
-
Terminal emulator to work with IRAF
|
|
534
|
-
|
|
535
|
-
[32mxidle[0m/questing 20200802 amd64
|
|
536
|
-
run program after inactivity or edge sensitive
|
|
537
|
-
|
|
538
|
-
[32mxmlbeans[0m/questing,questing 4.0.0-2 all
|
|
539
|
-
Java library for accessing XML by binding it to Java types - tools
|
|
540
|
-
|
|
541
|
-
[32mxwit[0m/questing 3.4-16 amd64
|
|
542
|
-
collection of simple routines to call some X11 functions
|
|
543
|
-
|
|
544
|
-
[32myorick-curses[0m/questing 0.1-7 amd64
|
|
545
|
-
interface to the (n)curses library for the Yorick language
|
|
546
|
-
|
|
547
|
-
[32mzsh-autosuggestions[0m/questing,questing 0.7.1-1 all
|
|
548
|
-
Fish-like fast/unobtrusive autosuggestions for zsh
|
|
549
|
-
|