Browse Source

Not ready to go

Bob Mottram 7 years ago
parent
commit
8b6aff32a8
2 changed files with 16 additions and 10 deletions
  1. 2
    0
      doc/EN/devguide.org
  2. 14
    10
      website/EN/devguide.html

+ 2
- 0
doc/EN/devguide.org View File

62
 man freedombone-template
62
 man freedombone-template
63
 #+end_src
63
 #+end_src
64
 
64
 
65
+The template command won't give you a fully working app, but it will give you a big head start and avoid a lot of potential mistakes. It's highly likely that you'll still need to add extra configuration for your particular app, especially within the *install_app* function.
66
+
65
 When your new script is ready for testing you can install it with:
67
 When your new script is ready for testing you can install it with:
66
 
68
 
67
 #+begin_src bash
69
 #+begin_src bash

+ 14
- 10
website/EN/devguide.html View File

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2018-02-07 Wed 10:16 -->
6
+<!-- 2018-02-07 Wed 10:26 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title>&lrm;</title>
9
 <title>&lrm;</title>
246
 
246
 
247
 <center><h1>Developers Guide</h1></center>
247
 <center><h1>Developers Guide</h1></center>
248
 
248
 
249
-<div id="outline-container-org5ea27e4" class="outline-2">
250
-<h2 id="org5ea27e4">Introduction</h2>
251
-<div class="outline-text-2" id="text-org5ea27e4">
249
+<div id="outline-container-orgad5002e" class="outline-2">
250
+<h2 id="orgad5002e">Introduction</h2>
251
+<div class="outline-text-2" id="text-orgad5002e">
252
 <p>
252
 <p>
253
 Freedombone consists of a set of bash scripts. There are a lot of them, but they're not very complicated. If you're familiar with the GNU/Linux commandline and can hack a bash script then you can probably add a new app or fix a bug in the system. There are no trendy development frameworks to learn or to get in your way. You might also want to consult the <a href="./codeofconduct.html">Code of Conduct</a>, and there is a Matrix room at <b>#fbone:matrix.freedombone.net</b>
253
 Freedombone consists of a set of bash scripts. There are a lot of them, but they're not very complicated. If you're familiar with the GNU/Linux commandline and can hack a bash script then you can probably add a new app or fix a bug in the system. There are no trendy development frameworks to learn or to get in your way. You might also want to consult the <a href="./codeofconduct.html">Code of Conduct</a>, and there is a Matrix room at <b>#fbone:matrix.freedombone.net</b>
254
 </p>
254
 </p>
255
 </div>
255
 </div>
256
 </div>
256
 </div>
257
-<div id="outline-container-orgce16dbb" class="outline-2">
258
-<h2 id="orgce16dbb">Adding extra apps</h2>
259
-<div class="outline-text-2" id="text-orgce16dbb">
257
+<div id="outline-container-org8600e6f" class="outline-2">
258
+<h2 id="org8600e6f">Adding extra apps</h2>
259
+<div class="outline-text-2" id="text-org8600e6f">
260
 <p>
260
 <p>
261
 Suppose you have some internet application which you want to add to the system. To do this you need to create an app script which tells the system how to install/remove and also backup/restore. The script should be designed to work with the current stable version of Debian.
261
 Suppose you have some internet application which you want to add to the system. To do this you need to create an app script which tells the system how to install/remove and also backup/restore. The script should be designed to work with the current stable version of Debian.
262
 </p>
262
 </p>
322
 </div>
322
 </div>
323
 
323
 
324
 <p>
324
 <p>
325
+The template command won't give you a fully working app, but it will give you a big head start and avoid a lot of potential mistakes. It's highly likely that you'll still need to add extra configuration for your particular app, especially within the <b>install_app</b> function.
326
+</p>
327
+
328
+<p>
325
 When your new script is ready for testing you can install it with:
329
 When your new script is ready for testing you can install it with:
326
 </p>
330
 </p>
327
 
331
 
340
 </div>
344
 </div>
341
 </div>
345
 </div>
342
 
346
 
343
-<div id="outline-container-org9d33f36" class="outline-2">
344
-<h2 id="org9d33f36">Customising mesh images</h2>
345
-<div class="outline-text-2" id="text-org9d33f36">
347
+<div id="outline-container-org14991ba" class="outline-2">
348
+<h2 id="org14991ba">Customising mesh images</h2>
349
+<div class="outline-text-2" id="text-org14991ba">
346
 <p>
350
 <p>
347
 If you want to make your own specially branded version of the mesh images, such as for a particular event, then to change the default desktop backgrounds edit the images within <b>img/backgrounds</b> and to change the available avatars and desktop icons edit the images within <b>img/avatars</b>. Re-create disk images using the instructions shown previously.
351
 If you want to make your own specially branded version of the mesh images, such as for a particular event, then to change the default desktop backgrounds edit the images within <b>img/backgrounds</b> and to change the available avatars and desktop icons edit the images within <b>img/avatars</b>. Re-create disk images using the instructions shown previously.
348
 </p>
352
 </p>