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.
@@ -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('clear')
37
- .description('Clears build information')
38
- .action(buildActions.clear);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudron",
3
- "version": "7.0.3",
3
+ "version": "7.0.4",
4
4
  "license": "MIT",
5
5
  "description": "Cloudron Commandline Tool",
6
6
  "type": "module",
@@ -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 clear(/* localOptions, cmd */) {
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.unsetCwdConfig(sourceDir);
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
- clear,
439
+ reset,
424
440
  info,
425
441
  dockerignoreMatcher
426
442
  };
@@ -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)}. Use "cloudron versions add" to add a version.`);
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
- auctex/questing,questing 13.2-1.1 all
2
- integrated document editing environment for TeX etc.
3
-
4
- bibata-cursor-theme/questing,questing 2.0.6-1 all
5
- Bibata is open source, compact, and material designed cursor set
6
-
7
- big-cursor/questing,questing 3.16 all
8
- larger mouse cursors for X
9
-
10
- breeze/questing,now 4:6.4.5-0ubuntu1 amd64 [installed,automatic]
11
- Default Plasma theme (Metapackage)
12
-
13
- breeze-cursor-theme/questing,questing,now 4:6.4.5-0ubuntu1 all [installed,automatic]
14
- Default Plasma cursor theme
15
-
16
- budgie-hotcorners-applet/questing 1.9.0-1 amd64
17
- Applet providing hotcorners capabilities for the Budgie Desktop
18
-
19
- cairo-dock-showmouse-plug-in/questing 3.5.1-1build1 amd64
20
- Showmouse plug-in Cairo-dock
21
-
22
- chameleon-cursor-theme/questing,questing 0.5-8 all
23
- modern but not gaudy X11 mouse theme
24
-
25
- comixcursors-lefthanded/questing,questing 0.10.0-1 all
26
- X11 mouse pointer themes with a comic art feeling (LH, translucent)
27
-
28
- comixcursors-lefthanded-opaque/questing,questing 0.10.0-1 all
29
- X11 mouse pointer themes with a comic art feeling (LH, opaque)
30
-
31
- comixcursors-righthanded/questing,questing 0.10.0-1 all
32
- X11 mouse pointer themes with a comic art feeling (RH, translucent)
33
-
34
- comixcursors-righthanded-opaque/questing,questing 0.10.0-1 all
35
- X11 mouse pointer themes with a comic art feeling (RH, opaque)
36
-
37
- crystalcursors/questing,questing 1.1.1-14.1 all
38
- X11 mouse theme with the crystal look&feel
39
-
40
- cursor/unknown,now 2.5.26-1772083177 amd64 [installed]
41
- The AI Code Editor.
42
-
43
- cursor-nightly/unknown 2.7.0-pre.5.patch.0-1772235562 amd64
44
- The AI Code Editor.
45
-
46
- cursor-sandbox-apparmor/unknown,unknown,unknown,now 0.2.0 all [installed]
47
- AppArmor profile for Cursor sandbox helper (Enterprise)
48
-
49
- dangen/questing 0.5-7 amd64
50
- shoot 'em up game where accurate shooting matters
51
-
52
- dde-qt5integration/questing 5.7.12-1build1 amd64
53
- Qt5 theme integration for Deepin application
54
-
55
- deepin-icon-theme/questing,questing 2025.03.27-1 all
56
- Icon Theme for Deepin software and Deepin Desktop Environment
57
-
58
- dmz-cursor-theme/questing,questing,now 0.4.5.3 all [installed,automatic]
59
- Style neutral, scalable cursor theme
60
-
61
- e-wrapper/questing,questing 0.2-1 all
62
- invoke your editor, with optional file:lineno handling
63
-
64
- elpa-bar-cursor/questing,questing 2.0-2 all
65
- switch Emacs block cursor to a bar
66
-
67
- elpa-beacon/questing,questing 1.3.4-3 all
68
- highlight the cursor whenever the window scrolls
69
-
70
- elpa-cfrs/questing,questing 1.6.0-4 all
71
- Child-frame based read-string for Emacs
72
-
73
- elpa-crdt/questing,questing 0.3.5-4 all
74
- collaborative editing environment for Emacs
75
-
76
- elpa-expand-region/questing,questing 1.0.0-2 all
77
- Increase selected region in Emacs by semantic units
78
-
79
- elpa-org-appear/questing,questing 0.3.0-3 all
80
- auto-toggle visibility of org mode elements
81
-
82
- elpa-php-mode/questing,questing 1.27.0-1 all
83
- PHP Mode for GNU Emacs
84
-
85
- fierce/questing,questing 1.6.0-1 all
86
- Domain DNS scanner
87
-
88
- fonts-texgyre/questing,questing 20180621-6 all
89
- OpenType fonts based on URW Fonts
90
-
91
- fuse-emulator-gtk/questing 1.6.0+dfsg1-2build4 amd64
92
- The Free Unix Spectrum Emulator (GTK version)
93
-
94
- fuse-emulator-sdl/questing 1.6.0+dfsg1-2build4 amd64
95
- The Free Unix Spectrum Emulator (SDL version)
96
-
97
- gdl-astrolib/questing,questing 2022.09.12+dfsg-2 all
98
- Low-level astronomy software for GDL
99
-
100
- geany-plugin-addons/questing 2.1+dfsg-2 amd64
101
- miscellaneous plugins for Geany
102
-
103
- geany-plugin-autoclose/questing 2.1+dfsg-2 amd64
104
- auto-closing plugin for Geany
105
-
106
- geany-plugin-automark/questing 2.1+dfsg-2 amd64
107
- auto-mark plugin for Geany
108
-
109
- geany-plugin-doc/questing 2.1+dfsg-2 amd64
110
- documentation plugin for Geany
111
-
112
- geany-plugin-pairtaghighlighter/questing 2.1+dfsg-2 amd64
113
- tag pair highlighter plugin for Geany
114
-
115
- gedit-latex-plugin/questing,questing 46.2.2-1 all
116
- gedit plugin for composing and compiling LaTeX documents
117
-
118
- gnome-settings-daemon/questing,now 49.0-1ubuntu3 amd64 [installed,automatic]
119
- daemon handling the GNOME session settings
120
-
121
- golang-github-atomicgo-cursor-dev/questing,questing 0.2.0-2 all
122
- Move the terminal cursor in any direction on every operating system (library)
123
-
124
- golang-github-bmatsuo-lmdb-go-dev/questing,questing 1.8.0+git20170215.a14b5a3-4build1 all
125
- Bindings for the LMDB C library
126
-
127
- golang-github-jaguilar-vt100-dev/questing,questing 0.0~git20201024.81de19c-2 all
128
- raw-mode vt100 screen reader
129
-
130
- golang-github-konsorten-go-windows-terminal-sequences-dev/questing,questing 1.0.2-3 all
131
- Enable support for Windows Terminal Colors
132
-
133
- golang-github-tonistiigi-vt100-dev/questing,questing 0.0~git20240514.90bafcd-2 all
134
- Raw-mode vt100 screen reader (library)
135
-
136
- golang-github-vmihailenco-msgpack.v5-dev/questing,questing 5.4.1-1 all
137
- MessagePack (msgpack.org) encoding for Golang (library)
138
-
139
- gt5/questing,questing 1.5.0~20111220+bzr29-4 all
140
- shell program to display visual disk usage with navigation
141
-
142
- human-theme/questing,questing 0.39.3 all
143
- Human theme
144
-
145
- hyprcursor-util/questing 0.1.11-1 amd64
146
- Utility to manipulate hyprcusor and xcursor themes
147
-
148
- icoutils/questing 0.32.3-6 amd64
149
- Create and extract MS Windows icons and cursors
150
-
151
- inspectrum/questing 0.3.1-1build2 amd64
152
- tool for visualising captured radio signals
153
-
154
- journal-brief/questing,questing 1.1.8-3 all
155
- Show interesting new systemd journal entries
156
-
157
- kakoune/questing 2024.05.18-2ubuntu1 amd64
158
- Vim-inspired, selection-oriented code editor
159
-
160
- keynav/questing 0.20180421~git6505bd0d-3.1 amd64
161
- keyboard-driven mouse cursor mover
162
-
163
- kmousetool/questing,now 4:25.08.1-0ubuntu1 amd64 [installed,automatic]
164
- mouse manipulation tool for the disabled
165
-
166
- knot-resolver/questing 5.7.5-1 amd64
167
- caching, DNSSEC-validating DNS resolver
168
-
169
- libansi-terminal-ocaml/questing 0.8.5-5build4 amd64
170
- colors and cursor movements for OCaml applications (runtime files)
171
-
172
- libansi-terminal-ocaml-dev/questing 0.8.5-5build4 amd64
173
- colors and cursor movements for OCaml applications (dev files)
174
-
175
- libcatalyst-view-csv-perl/questing,questing 1.8-1 all
176
- CSV view class for the Catalyst web framework
177
-
178
- libdbix-class-cursor-cached-perl/questing,questing 1.001004-3 all
179
- cursor object with built-in caching support
180
-
181
- libghc-ansi-terminal-dev/questing 1.0.2-1 amd64
182
- Simple ANSI terminal support, with Windows compatibility
183
-
184
- libghc-ansi-terminal-doc/questing,questing 1.0.2-1 all
185
- Simple ANSI terminal support, with Windows compatibility; documentation
186
-
187
- libghc-ansi-terminal-prof/questing 1.0.2-1 amd64
188
- Simple ANSI terminal support, with Windows compatibility; profiling libraries
189
-
190
- libghc-terminal-progress-bar-dev/questing 0.4.2-2 amd64
191
- A simple progress bar in the terminal
192
-
193
- libghc-terminal-progress-bar-doc/questing,questing 0.4.2-2 all
194
- A simple progress bar in the terminal; documentation
195
-
196
- libghc-terminal-progress-bar-prof/questing 0.4.2-2 amd64
197
- A simple progress bar in the terminal; profiling libraries
198
-
199
- libhyprcursor-dev/questing 0.1.11-1 amd64
200
- hyprland cursor format, library and utilities (headers)
201
-
202
- libhyprcursor0/questing 0.1.11-1 amd64
203
- hyprland cursor format, library and utilities
204
-
205
- libmonospaceif-dev/questing 0.7.15-2.1 amd64
206
- Interface translating libfizmo output into monospaced text
207
-
208
- libmygui-dev/questing 3.4.2+dfsg-1.1build1 amd64
209
- Fast, simple and flexible GUI for OpenMW - development files
210
-
211
- libmygui.ogreplatform0debian1t64/questing 3.4.2+dfsg-1.1build1 amd64
212
- Fast, simple and flexible GUI - Ogre interface
213
-
214
- libmygui.opengl3platform0debian1t64/questing 3.4.2+dfsg-1.1build1 amd64
215
- Fast, simple and flexible GUI - OpenGL3 interface
216
-
217
- libmygui.openglplatform0debian1t64/questing 3.4.2+dfsg-1.1build1 amd64
218
- Fast, simple and flexible GUI - OpenGL interface
219
-
220
- libmyguiengine3debian1t64/questing 3.4.2+dfsg-1.1build1 amd64
221
- Fast, simple and flexible GUI - shared library
222
-
223
- libodbccr2/questing,now 2.3.12-2ubuntu2 amd64 [installed,automatic]
224
- ODBC Cursor library for Unix
225
-
226
- libpaperclips-java/questing,questing 1.0.4-3 all
227
- Simplified Java Printing Support for SWT
228
-
229
- libpaperclips-java-doc/questing,questing 1.0.4-3 all
230
- Documentation for libpaperclips-java
231
-
232
- librust-cursor-icon-dev/questing 1.1.0-2 amd64
233
- Cross platform cursor icon type - Rust source code
234
-
235
- librust-hickory-recursor-dev/questing 0.24.1-1 amd64
236
- *WARNING* This library is experimental - Rust source code
237
-
238
- librust-regex-cursor-dev/questing 0.1.4-1 amd64
239
- Regex fork that can search discontiguous haystacks - Rust source code
240
-
241
- librust-wayland-cursor-0.29-dev/questing 0.29.5-6 amd64
242
- Bindings to libwayland-cursor - Rust source code
243
-
244
- librust-wayland-cursor-dev/questing 0.31.11-1 amd64
245
- Bindings to libwayland-cursor - Rust source code
246
-
247
- librust-xcursor-dev/questing 0.3.4-1 amd64
248
- Loading XCursor themes - Rust source code
249
-
250
- libstartup-notification0/questing,now 0.12-8 amd64 [installed,automatic]
251
- library for program launch feedback (shared library)
252
-
253
- libstartup-notification0-dev/questing 0.12-8 amd64
254
- library for program launch feedback (development headers)
255
-
256
- libt3key-bin/questing 0.2.10-1.1 amd64
257
- Utilities for working with libt3key terminal descriptions
258
-
259
- libt3key-dev/questing 0.2.10-1.1 amd64
260
- Development files for libt3key
261
-
262
- libt3key1/questing 0.2.10-1.1 amd64
263
- Terminal key sequence database library
264
-
265
- libtickit-widget-entry-plugin-completion-perl/questing,questing 0.02-1 all
266
- word-completion plugin for Tickit::Widget::Entry
267
-
268
- libwayland-cursor++1/questing 1.0.0-6 amd64
269
- wayland compositor infrastructure - cursor library C++ bindings
270
-
271
- libwayland-cursor0/questing,now 1.24.0-1build1 amd64 [installed,automatic]
272
- wayland compositor infrastructure - cursor library
273
-
274
- libx11-protocol-other-perl/questing,questing 31-1 all
275
- miscellaneous X11::Protocol helpers
276
-
277
- libxcb-cursor-dev/questing 0.1.5-1 amd64
278
- utility libraries for X C Binding -- cursor, development files
279
-
280
- libxcb-cursor0/questing,now 0.1.5-1 amd64 [installed]
281
- utility libraries for X C Binding -- cursor
282
-
283
- libxcursor-dev/questing 1:1.2.3-1 amd64
284
- X cursor management library (development files)
285
-
286
- libxcursor1/questing,now 1:1.2.3-1 amd64 [installed,automatic]
287
- X cursor management library
288
-
289
- libxfixes-dev/questing 1:6.0.0-2build1 amd64
290
- X11 miscellaneous 'fixes' extension library (development headers)
291
-
292
- libxfixes3/questing,now 1:6.0.0-2build1 amd64 [installed,automatic]
293
- X11 miscellaneous 'fixes' extension library
294
-
295
- libxmlbeans-java/questing,questing 4.0.0-2 all
296
- Java library for accessing XML by binding it to Java types
297
-
298
- libzed-ocaml/questing 3.2.3-1build6 amd64
299
- abstract engine for text edition in OCaml (runtime)
300
-
301
- libzed-ocaml-dev/questing 3.2.3-1build6 amd64
302
- abstract engine for text edition in OCaml (development tools)
303
-
304
- liquidwar/questing 5.6.5-2.1 amd64
305
- truly original multiplayer wargame
306
-
307
- liquidwar-data/questing,questing 5.6.5-2.1 all
308
- data files for Liquid War
309
-
310
- liquidwar-server/questing 5.6.5-2.1 amd64
311
- Liquid War server
312
-
313
- mate-settings-daemon/questing 1.26.1-1.2 amd64
314
- daemon handling the MATE session settings
315
-
316
- mate-settings-daemon-common/questing,questing 1.26.1-1.2 all
317
- daemon handling the MATE session settings (common files)
318
-
319
- mate-settings-daemon-dev/questing 1.26.1-1.2 amd64
320
- daemon handling the MATE session settings (development files)
321
-
322
- mle/questing 1.7.2-1 amd64
323
- flexible terminal-based editor
324
-
325
- mygui-doc/questing,questing 3.4.2+dfsg-1.1build1 all
326
- API documentations for MyGUI library
327
-
328
- nim-lapper-dev/questing,questing 0.1.8-1 all
329
- simple, fast interval searches for nim
330
-
331
- node-ansi/questing,questing 0.3.1-2 all
332
- Advanced ANSI formatting tool for Node.js
333
-
334
- node-ansi-escapes/questing,questing 5.0.0+really.4.3.1-1 all
335
- ANSI escape codes for manipulating the terminal
336
-
337
- node-charm/questing,questing 1.0.2-3 all
338
- ansi control sequences for terminal cursor hopping and colors
339
-
340
- node-cli-cursor/questing,questing 4.0.0-3 all
341
- Toggle the CLI cursor
342
-
343
- node-console-control-strings/questing,questing 1.1.0-3 all
344
- cross-platform tested terminal/console command strings
345
-
346
- node-restore-cursor/questing,questing 4.0.0-4 all
347
- Gracefully restore the CLI cursor on exit
348
-
349
- node-y-codemirror/questing,questing 3.0.1-2 all
350
- node-yjs binding to a CodeMirror editor
351
-
352
- node-yjs/questing,questing 13.6.8-1 all
353
- CRDT framework with a powerful abstraction of shared data
354
-
355
- obs-advanced-scene-switcher/questing 1.29.2-1ubuntu1 amd64
356
- plugin for OBS Studio to improve the scene switching
357
-
358
- oneko/questing 1.2.sakura.6-16 amd64
359
- cat chases the cursor (now a mouse) around the screen
360
-
361
- oxygen-cursor-theme/questing,questing 0.0.2012-06-kde4.8-6ubuntu1 all
362
- Oxygen mouse cursor theme
363
-
364
- oxygen-cursor-theme-extra/questing,questing 0.0.2012-06-kde4.8-6ubuntu1 all
365
- Oxygen mouse cursor theme - extra colors
366
-
367
- pacvim/questing 1.1.1-1.1 amd64
368
- pacman game concept with vim command
369
-
370
- paje.app/questing 1.98-2build1 amd64
371
- generic visualization tool (Gantt chart and more)
372
-
373
- paper-icon-theme/questing,questing 1.5.0+git20200312.aa3e8af-6 all
374
- simple and modern icon and cursor theme
375
-
376
- pd-hcs/questing 0.2.1-4build1 amd64
377
- Pd library of experiments in UNIX, the Pd GUI, and more
378
-
379
- pdns-recursor/questing 5.2.4-2build2 amd64
380
- PowerDNS Recursor
381
-
382
- phinger-cursor-theme/questing,questing 1.1-0ubuntu1 all
383
- The most over-engineered cursor theme
384
-
385
- phosh-osk-stub/questing 0.46.0-1 amd64
386
- An alternative on screen keyboard for Phosh
387
-
388
- phosh-osk-stub-doc/questing,questing 0.46.0-1 all
389
- API documentation for Phosh's OSK stub
390
-
391
- pinfo/questing 0.6.13-2 amd64
392
- user-friendly console-based viewer for Info document files
393
-
394
- python-bsddb3-doc/questing,questing 6.2.9-4build1 all
395
- Documentation for the python Berkeley DB interface module
396
-
397
- python-psycopg2-doc/questing,questing 2.9.10-1build1 all
398
- Python module for PostgreSQL (documentation package)
399
-
400
- python3-ansi/questing,questing 0.1.5-2 all
401
- cursor movement and graphics - Python 3
402
-
403
- python3-asyncpg/questing 0.30.0-1.1 amd64
404
- asyncio PosgtreSQL driver
405
-
406
- python3-bsddb3/questing 6.2.9-4build1 amd64
407
- Python interface for Berkeley DB (Python 3.x)
408
-
409
- python3-consolekit/questing,questing 1.7.2-2 all
410
- Additional utilities for click
411
-
412
- python3-easyansi/questing,questing 0.3-4 all
413
- terminal framework for colors, cursor movements, and drawing
414
-
415
- python3-mplcursors/questing,questing 0.6-2 all
416
- Interactive data selection cursors for Matplotlib
417
-
418
- python3-psycopg2/questing 2.9.10-1build1 amd64
419
- Python 3 module for PostgreSQL
420
-
421
- python3-psycopg2cffi/questing 2.9.0-1 amd64
422
- implementation of the psycopg2 module using cffi
423
-
424
- python3-tktooltip/questing 3.1.2-1 amd64
425
- simple yet fully customisable tooltip/pop-up implementation
426
-
427
- ruby-tty-cursor/questing,questing 0.7.1-2 all
428
- Library to help move the terminal cursor around and manipulate text
429
-
430
- sabily-themes/questing,questing 1.7build1 all
431
- Sabily themes
432
-
433
- slop/questing 7.6-4ubuntu1 amd64
434
- queries for a selection from the user and prints the region to stdout
435
-
436
- smenu/questing 1.4.0-1 amd64
437
- curse-based CLI selection box
438
-
439
- speakup-doc/questing,questing 3.1.6.dfsg.1-7 all
440
- Documentation for speakup kernel modules
441
-
442
- staden/questing 2.0.0+b11-7 amd64
443
- DNA sequence assembly (Gap4/Gap5), editing and analysis tools
444
-
445
- staden-common/questing,questing 2.0.0+b11-7 all
446
- Architecture independent files for Staden
447
-
448
- tea/questing 63.3.0-1 amd64
449
- graphical text editor with syntax highlighting
450
-
451
- teseq/questing 1.1.1-5 amd64
452
- utility for rendering terminal typescripts human-readable
453
-
454
- tklib/questing,questing 0.9-1 all
455
- standard Tk Library
456
-
457
- topp/questing 2.6.0+cleaned1-4build7 amd64
458
- set of programs implementing The OpenMS Proteomic Pipeline
459
-
460
- ubuntume-themes/questing,questing 1.7build1 all
461
- Sabily themes (transitional package)
462
-
463
- ukui-settings-daemon/questing 4.0.0.2-1 amd64
464
- daemon handling the UKUI session settings
465
-
466
- ukui-settings-daemon-common/questing,questing 4.0.0.2-1 all
467
- daemon handling the UKUI session settings (common files)
468
-
469
- unclutter/questing 8-26 amd64
470
- hides the mouse cursor in X after a period of inactivity
471
-
472
- unclutter-xfixes/questing 1.6-1build2 amd64
473
- hide the X mouse cursor after a period of inactivity, using XFixes
474
-
475
- unity-settings-daemon/questing 15.04.1+21.10.20220802-0ubuntu6 amd64
476
- daemon handling the Unity session settings
477
-
478
- uqm/questing 0.8.0+dfsg-3.2 amd64
479
- The Ur-Quan Masters - An inter-galactic adventure game
480
-
481
- uqm-content/questing,questing 0.8.0+deb-1 all
482
- The Ur-Quan Masters - Game data files
483
-
484
- uqm-music/questing,questing 0.8.0+deb-1 all
485
- The Ur-Quan Masters - Game music files
486
-
487
- uqm-russian/questing,questing 1.0.2-6 all
488
- Russian addon for 'The Ur-Quan Masters' game
489
-
490
- uqm-voice/questing,questing 0.8.0+deb-1 all
491
- The Ur-Quan Masters - Voice files
492
-
493
- val-and-rick/questing 0.1a.dfsg1-7build1 amd64
494
- shooter game
495
-
496
- val-and-rick-data/questing,questing 0.1a.dfsg1-7build1 all
497
- shooter game - game data
498
-
499
- vim-textobj-user/questing,questing 0.7.6-3 all
500
- Vim plugin for user-defined text objects
501
-
502
- vis/questing 0.9-1 amd64
503
- Modern, legacy free, simple yet efficient vim-like editor
504
-
505
- wmdrawer/questing 0.10.5-6.1build2 amd64
506
- Window Maker dockapp providing a drawer to launch applications
507
-
508
- wmfire/questing 1.2.4-8 amd64
509
- very cool fiery way of showing your CPU usage
510
-
511
- x11-apps/questing,now 7.7+11build3 amd64 [installed,automatic]
512
- X applications
513
-
514
- xbanish/questing 1.8-1 amd64
515
- banish the mouse cursor when typing, show it again when the mouse moves
516
-
517
- xbattbar/questing 1.4.9-2 amd64
518
- Display battery status in X11
519
-
520
- xcur2png/questing 0.7.1-1.1 amd64
521
- program to convert X cursors into PNG images
522
-
523
- xcursor-themes/questing,questing,now 1.0.6-0ubuntu1 all [installed,automatic]
524
- Base X cursor themes
525
-
526
- xfce4-eyes-plugin/questing 4.6.2-1 amd64
527
- eyes that follow your mouse for the Xfce4 panel
528
-
529
- xfoil/questing 6.99.dfsg+1-3 amd64
530
- program for the design and analysis of subsonic airfoils
531
-
532
- xgterm/questing 2.2+dfsg-1 amd64
533
- Terminal emulator to work with IRAF
534
-
535
- xidle/questing 20200802 amd64
536
- run program after inactivity or edge sensitive
537
-
538
- xmlbeans/questing,questing 4.0.0-2 all
539
- Java library for accessing XML by binding it to Java types - tools
540
-
541
- xwit/questing 3.4-16 amd64
542
- collection of simple routines to call some X11 functions
543
-
544
- yorick-curses/questing 0.1-7 amd64
545
- interface to the (n)curses library for the Yorick language
546
-
547
- zsh-autosuggestions/questing,questing 0.7.1-1 all
548
- Fish-like fast/unobtrusive autosuggestions for zsh
549
-