[DEV] add a real stable tag
This commit is contained in:
parent
02c6e75822
commit
bb0003170b
21
sources/createTag.sh
Executable file
21
sources/createTag.sh
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
usage()
|
||||||
|
{
|
||||||
|
echo -e "$0 [TAG]"
|
||||||
|
echo -e "\t\t[TAG] : Tag to set on the version"
|
||||||
|
exit -1
|
||||||
|
}
|
||||||
|
|
||||||
|
#verify all input parameters :
|
||||||
|
tag=""
|
||||||
|
if [ "$1" = "" ] ; then
|
||||||
|
usage
|
||||||
|
else
|
||||||
|
tag="$1"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n $tag > tag
|
||||||
|
|
||||||
|
git commit -a -m "create a new release"
|
||||||
|
git tag $tag
|
@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutinModule
|
import lutinModule
|
||||||
import lutinTools
|
import lutinTools
|
||||||
|
import lutinDebug as debug
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
def Create(target):
|
def Create(target):
|
||||||
@ -84,12 +85,14 @@ def Create(target):
|
|||||||
|
|
||||||
myModule.AddPath(lutinTools.GetCurrentPath(__file__))
|
myModule.AddPath(lutinTools.GetCurrentPath(__file__))
|
||||||
|
|
||||||
|
|
||||||
myModule.CopyFile("../data/Font/freefont/FreeSerif.ttf","fonts/FreeSerif.ttf")
|
myModule.CopyFile("../data/Font/freefont/FreeSerif.ttf","fonts/FreeSerif.ttf")
|
||||||
myModule.CopyFolder("../data/Font/freefont/FreeMon*.ttf","fonts/")
|
myModule.CopyFolder("../data/Font/freefont/FreeMon*.ttf","fonts/")
|
||||||
|
|
||||||
now = datetime.datetime.now()
|
|
||||||
versionID=str(now.year-2012)+"."+str(now.month)+"."+str(now.day)
|
tagFile = lutinTools.GetCurrentPath(__file__) + "/tag"
|
||||||
|
versionID = lutinTools.FileReadData(tagFile)
|
||||||
|
|
||||||
|
debug.info(" edn versionId = '" + versionID + "'")
|
||||||
|
|
||||||
# set the package properties :
|
# set the package properties :
|
||||||
myModule.pkgSet("VERSION", versionID)
|
myModule.pkgSet("VERSION", versionID)
|
||||||
|
1
sources/tag
Normal file
1
sources/tag
Normal file
@ -0,0 +1 @@
|
|||||||
|
0.4.0
|
1
todo.txt
1
todo.txt
@ -31,7 +31,6 @@ List of all thing to do to have a corect text editor :
|
|||||||
- Add a cocillage
|
- Add a cocillage
|
||||||
- Goto Line
|
- Goto Line
|
||||||
- Buffer view : update display position when change buffer
|
- Buffer view : update display position when change buffer
|
||||||
- Add a real stable version number
|
|
||||||
- word moving and word removing (ctrl+ '->' && ctrl+ '<-') && (ctrl+ 'del' && ctrl+ 'suppr')
|
- word moving and word removing (ctrl+ '->' && ctrl+ '<-') && (ctrl+ 'del' && ctrl+ 'suppr')
|
||||||
ewol :
|
ewol :
|
||||||
- A spliter of windows (increase siaze of the buffer list & have multiple windows:
|
- A spliter of windows (increase siaze of the buffer list & have multiple windows:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user