update changelog
This commit is contained in:
@@ -685,9 +685,24 @@ Roboto Font License:
|
|||||||
</border>
|
</border>
|
||||||
<border width="100%" color="0 0 0 .9" pad="10" dir="col">
|
<border width="100%" color="0 0 0 .9" pad="10" dir="col">
|
||||||
<!--window content-->
|
<!--window content-->
|
||||||
<border color=".2" width="100%" height="300">
|
<border color=".2" width="100%" height="400">
|
||||||
<scroll pad="10" margin="5" color=".3 .3 .3 .4" dir="col" shrink="1">
|
<scroll pad="10" margin="5" color=".3 .3 .3 .4" dir="col" shrink="1">
|
||||||
<text margin="0 0 0 5" font-face="arial" font-size="30" text="0.1.3"/>
|
<text margin="0 0 0 5" font-face="arial" font-size="30" text="0.1.4"/>
|
||||||
|
<text margin="10 0 0 5" font-face="arial" font-size="11" text=
|
||||||
|
"- [WIN] Add: Windows Store package installer
|
||||||
|
- [OSX] Quick Look plugin for thumbnail generation
|
||||||
|
- [FIX] Browse Dialog crashing at empty files
|
||||||
|
- Implement a Fail-safe two-stage save document
|
||||||
|
- [IOS,OSX] Add: Crash Recovery routine, which saves a recovery.ppi after crashing
|
||||||
|
- [IOS,OSX] Add: HockeyApp crash report
|
||||||
|
- Add: Resize document, allows to change resolution after the document creation
|
||||||
|
- Internal: Text node wrap text per-char
|
||||||
|
- [OSX] Open File System Dialog for PPI files
|
||||||
|
- Add: text cursor caret for a better UX
|
||||||
|
- Add: Current working directory workflow, allows you to change the current
|
||||||
|
open/save/export directory
|
||||||
|
"/>
|
||||||
|
<text margin="20 0 0 5" font-face="arial" font-size="30" text="0.1.3"/>
|
||||||
<text margin="10 0 0 5" font-face="arial" font-size="11" text=
|
<text margin="10 0 0 5" font-face="arial" font-size="11" text=
|
||||||
"- [OSX] Fix: use the right extension when exporting a .jpg
|
"- [OSX] Fix: use the right extension when exporting a .jpg
|
||||||
"/>
|
"/>
|
||||||
@@ -696,7 +711,8 @@ Roboto Font License:
|
|||||||
"- [OSX] Fix: fixed permissions issue preventing to import images
|
"- [OSX] Fix: fixed permissions issue preventing to import images
|
||||||
"/>
|
"/>
|
||||||
<text margin="20 0 0 5" font-face="arial" font-size="30" text="0.1.1"/>
|
<text margin="20 0 0 5" font-face="arial" font-size="30" text="0.1.1"/>
|
||||||
<text margin="10 0 0 5" font-face="arial" font-size="11" text=
|
<text margin="10 0 0 5" font-face="arial" font-size="11" text="First public release!"/>
|
||||||
|
<!--<text margin="10 0 0 5" font-face="arial" font-size="11" text=
|
||||||
"This is the first public release of PanoPainter. It's important to note this is an early
|
"This is the first public release of PanoPainter. It's important to note this is an early
|
||||||
access to the software, so be aware it may crash or behave in unexpected ways.
|
access to the software, so be aware it may crash or behave in unexpected ways.
|
||||||
Always save your work. It comes with a lot of features that will be improved over time.
|
Always save your work. It comes with a lot of features that will be improved over time.
|
||||||
@@ -712,7 +728,7 @@ Here's a list of what's available in this release.
|
|||||||
- Cloud Storage for device interoperability
|
- Cloud Storage for device interoperability
|
||||||
- Timelapse
|
- Timelapse
|
||||||
- Layers
|
- Layers
|
||||||
"/>
|
"/>-->
|
||||||
</scroll>
|
</scroll>
|
||||||
</border>
|
</border>
|
||||||
<!--footer buttons-->
|
<!--footer buttons-->
|
||||||
|
|||||||
@@ -8,11 +8,6 @@ branch = check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"]).rstrip().dec
|
|||||||
shorthash = check_output(["git", "log", "--pretty=format:%h", "-n 1"]).rstrip().decode("utf-8")
|
shorthash = check_output(["git", "log", "--pretty=format:%h", "-n 1"]).rstrip().decode("utf-8")
|
||||||
revcount = int(check_output(["git", "rev-list", "--count", "HEAD"]))
|
revcount = int(check_output(["git", "rev-list", "--count", "HEAD"]))
|
||||||
tag = check_output(["git", "describe", "--tags", "--abbrev=0"]).rstrip().decode("utf-8")
|
tag = check_output(["git", "describe", "--tags", "--abbrev=0"]).rstrip().decode("utf-8")
|
||||||
|
|
||||||
if (len(sys.argv) < 2)
|
|
||||||
print "Version generation failed, target not specified. Define release/debug."
|
|
||||||
exit(0)
|
|
||||||
|
|
||||||
config = sys.argv[2].lower()
|
config = sys.argv[2].lower()
|
||||||
|
|
||||||
version = "%s.%d (%s-%s-%s)" % (tag, revcount, shorthash, branch, config)
|
version = "%s.%d (%s-%s-%s)" % (tag, revcount, shorthash, branch, config)
|
||||||
|
|||||||
Reference in New Issue
Block a user