From 821d84966812ca28caefa5c4e801dc26bf61abd2 Mon Sep 17 00:00:00 2001 From: Julian Schacher Date: Wed, 12 May 2021 12:31:03 +0200 Subject: [PATCH] New: Add initial bare-bones extension source code I'm using version 1 for the first development phase (like what major version zero (0.y.z) is in Semantic Versioning 2.0.0), so that the first production version then gets version 2. --- src/extension.js | 16 ++++++++++++++++ src/metadata.json | 7 +++++++ 2 files changed, 23 insertions(+) create mode 100644 src/extension.js create mode 100644 src/metadata.json diff --git a/src/extension.js b/src/extension.js new file mode 100644 index 0000000..37b175d --- /dev/null +++ b/src/extension.js @@ -0,0 +1,16 @@ +"use strict"; + +class Extension { + constructor() { + } + + enable() { + } + + disable() { + } +} + +function init() { + return new Extension(); +} diff --git a/src/metadata.json b/src/metadata.json new file mode 100644 index 0000000..824c3cd --- /dev/null +++ b/src/metadata.json @@ -0,0 +1,7 @@ +{ + "uuid": "top-bar-organizer@julian.gse.jsts.xyz", + "name": "Top Bar Organizer", + "description": "Organize the items of the top (menu)bar.", + "version": 1, + "shell-version": [ "40" ] +}