File tree Expand file tree Collapse file tree 4 files changed +27
-13
lines changed Expand file tree Collapse file tree 4 files changed +27
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @perryrh0dan/taskline" ,
3
3
"productName" : " Taskline" ,
4
- "version" : " 1.3.4 " ,
4
+ "version" : " 1.4.0 " ,
5
5
"description" : " Tasks, boards & notes for the command-line habitat" ,
6
6
"repository" : " https://github.com/perryrh0dan/taskline" ,
7
7
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ Come over to [Gitter](https://gitter.im/taskline/community?source=orgpage) or [T
74
74
- Possibility to cancel tasks
75
75
- Possibility to rearrange item ids
76
76
- Timetracking for tasks
77
+ - Multilanguage support
77
78
78
79
### Coming
79
80
@@ -602,7 +603,18 @@ Run the build script from '/scripts/build.sh'
602
603
603
604
### Publish
604
605
605
- After
606
+ #### Npm
607
+
608
+ 100% automated;
609
+
610
+ #### Snapcraft
611
+
612
+ ``` bash
613
+ snapcraft login
614
+
615
+ snapcraft push --release=stable taskline_1.3.4_multi.snap
616
+ ```
617
+
606
618
607
619
## Team
608
620
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -e # stop on error
3
+ echo ' Build Snap Package...'
3
4
4
5
# Check if temp already exists if yes delete
5
- bash -c ' [ -d temp ] && rm -r temp'
6
+ if [ -d temp ]; then rm -r temp; fi ;
6
7
7
8
# Creating a temp directory for the build and navigate in
8
9
echo ' Creating temp directory'
@@ -57,7 +58,8 @@ rm ./gulpfile.js
57
58
58
59
# Build Snap
59
60
echo ' Build snap'
60
- sudo snapcraft cleanbuild
61
+ sudo snapcraft clean
62
+ sudo snapcraft
61
63
62
64
# Copy snap to main directory
63
65
echo ' Copy snap to main directory'
@@ -68,5 +70,5 @@ find ./ -iname '*.snap' -exec cp {} ../ \;
68
70
# Navigate out and delete temp directory
69
71
echo ' Delete temp directory'
70
72
cd ..
71
- sudo rm -r ./temp
73
+ # sudo rm -r ./temp
72
74
Original file line number Diff line number Diff line change 1
1
name : taskline
2
- version : ' 1.3.4 '
2
+ version : ' 1.4.0 '
3
3
summary : Tasks, boards & notes for the command-line habitat
4
4
description : |
5
5
By utilizing a simple and minimal usage syntax, that requires a flat learning curve, Taskline enables you
@@ -42,6 +42,13 @@ architectures:
42
42
- amd64
43
43
- i386
44
44
45
+ parts :
46
+ taskline :
47
+ plugin : nodejs
48
+ nodejs-version : 12.16.1
49
+ nodejs-package-manager : npm
50
+ source : .
51
+
45
52
apps :
46
53
taskline :
47
54
command : tl
50
57
- network
51
58
- network-control
52
59
- x11
53
-
54
- parts :
55
- taskline :
56
- plugin : nodejs
57
- node-engine : 12.16.1
58
- node-package-manager : npm
59
- source : .
You can’t perform that action at this time.
0 commit comments