Skip to content

Commit 4fc602c

Browse files
authored
Merge pull request #18 from vinser/develop
Fix for v1.6.0
2 parents 72fac6e + 39cba72 commit 4fc602c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

appInit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ func init() {
1010
app.SetMetadata(fyne.AppMetadata{
1111
ID: "io.github.vinser.pixyne",
1212
Name: "Pixyne",
13-
Version: "selfcrafted",
13+
Version: "1.6.0",
1414
})
1515
}

m_dialogs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ func (a *App) aboutDialog() {
2626
infoRow := widget.NewRichTextFromMarkdown(`
2727
## Pixyne - photo picker
2828
---
29-
Use [Pixyne](http://vinser.github.io/pixyne) to quickly review your photo folder and safely delete bad and similar shots.
29+
Use [Pixyne](http://vinser.github.io/pixyne) to quickly review your photo folder and safely delete bad and similar shots.
3030
31-
You may also set EXIF shooting date to the file date or to a manually entered date.
31+
You may also fix EXIF the shooting dates, crop and ajust photos.
3232
3333
---`)
3434
var buildVersion, buildFor, buildTime, goVersion, versionLine, buildLine string

sh/app-semver.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# set semantic version
44
[[ $(cat FyneApp.toml) =~ ([0-9]+\.[0-9]+\.[0-9]+) ]] && SEMVER="${BASH_REMATCH[0]}"
5+
sed -i -r 's/Version: *"[0-9]+\.[0-9]+\.[0-9]+"/Version: "'${SEMVER}'"/g' appInit.go
56
sed -i -r 's/tag\/v[0-9]+\.[0-9]+\.[0-9]+/tag\/v'${SEMVER}'/g' README.md
67
sed -i -r 's/tag\/v[0-9]+\.[0-9]+\.[0-9]+/tag\/v'${SEMVER}'/g' docs/README.md
78
sed -i -r 's/Version="[0-9]+\.[0-9]+\.[0-9]+"/Version="'${SEMVER}'"/g' sh/app2msi.wsx

0 commit comments

Comments
 (0)