Skip to content

Commit

Permalink
0.2.5 Bugfix and suggestions release
Browse files Browse the repository at this point in the history
  • Loading branch information
eekkelund committed Jan 31, 2017
1 parent f81f4fb commit 426c874
Show file tree
Hide file tree
Showing 8 changed files with 82 additions and 9 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Includes keyboard and root mode!
* Installing built RPM

* Normal text editor features including:
* Line numbers (experimental)
* Line numbers
* Autosave
* Themes
* Font settings
Expand All @@ -46,6 +46,7 @@ Includes keyboard and root mode!
* .py = Pythons and common keywords
* .* = Common keywords
* Tabulator button on Sym view
* Tab settings real tab "\t" or amount of spaces
* Arrow keys
* On shift latched possibility to jump words
* On shift down copying
Expand Down Expand Up @@ -83,7 +84,7 @@ Not in particular order..:)
- [X] Icon
- [ ] Harbour version(v.0.3)
- [ ] App cover(v.0.3-0.4)
- [ ] Fix line numbering(v.0.3?)
- [X] Fix line numbering YEA
- [ ] Nemomobile version(v.0.5)
- [ ] Breakpoints(v.0.5)
- [X] About page
Expand Down Expand Up @@ -115,14 +116,21 @@ If you have problem when installing try `pkcon refresh` and then try to install

## History

[Version 0.2](https://openrepos.net/content/eekkelund/tide) 18/01/2017
[Version 0.2.5](https://openrepos.net/content/eekkelund/tide) 31/01/2017
[Version 0.2](https://openrepos.net/content/eekkelund/tide) 18/01/2017
[Version 0.1](https://openrepos.net/content/eekkelund/tide) 21/12/2016

[Changelog](https://github.com/eekkelund/harbour-tIDE/blob/master/rpm/harbour-tide.changes)

## Contributors

[wellef](https://github.com/wellef): Project deleting, wrap mode setting for the editor, Python bug fixes
[GoAlexander](https://github.com/GoAlexander): Icon for searchbar

### Translations

[eson57](https://github.com/eson57): Swedish
[d9h02f](https://github.com/d9h02f): Dutch

Thank you! :)

Expand All @@ -132,7 +140,7 @@ Base of the keyboard: Jolla's [maliit keyboard](https://github.com/maliit) and S
Some highlighting rules and indentation: Oleg Yadrov's [QML Creator](https://github.com/olegyadrov/qmlcreator)
SettingsPage slider: [Ancelad](https://github.com/Ancelad)
Dedicated to: [Gido Griese](https://talk.maemo.org/member.php?u=60993)
Icon: [gri4994](https://github.com/gri4994)
Icon: [gri4994](https://github.com/gri4994) SVG: [topiasv-p](https://github.com/topiasv-p)

## License

Expand Down
13 changes: 13 additions & 0 deletions rpm/harbour-tide.changes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@
# * date Author's Name <author's email> version-release
# - Summary of changes

* Tue Jan 31 2017 Eetu Kahelin <eekkelund> 0.2.5-1
-Able to start from command line in rootmode.
-Tabulator key settings, (Real tab - 8spaces)
-Bugfix: Linecounting works now WOOoo:)
-Swedish(eson57) and Dutch (d9h02f) translations
-Bugfix: Respect system allowed orientations settings.(Issue#9)
-Bugfix: Come back to right folder when returning from editor and indentation function improving
-Slightly better highlighting time, which affects file opening time
-Fix: Better tab setting, not final though
-Settings page available from EditorPage!
-Better higlighting time, not perfect yet. Multiline needs fix
-Added enterkey icon for searchbar in editorpage(GoAlexander)

* Wed Jan 18 2017 Eetu Kahelin <eekkelund> 0.2-1
- Added tabulator key, visible on Sym view
- Added selecting and jumping words to cursor keys
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-tide.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name: harbour-tide
%{!?qtc_make:%define qtc_make make}
%{?qtc_builddir:%define _builddir %qtc_builddir}
Summary: transportable IDE
Version: 0.2
Version: 0.2.5
Release: 1
Group: Qt/Qt
License: GPLv3
Expand Down
17 changes: 16 additions & 1 deletion tide/qml/pages/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,21 @@ Page {
text: "<a href='https://github.com/eson57'>eson57</a> "+": "+ qsTr("Swedish")
onLinkActivated: Qt.openUrlExternally(link)
}
Label {
textFormat: Text.StyledText
linkColor: Theme.primaryColor
color: Theme.highlightColor
wrapMode: Text.WordWrap
font.pixelSize: Theme.fontSizeSmall
anchors {
left: parent.left
leftMargin: Theme.horizontalPageMargin
right: parent.right
rightMargin: Theme.horizontalPageMargin
}
text: "<a href='https://github.com/d9h02f'>d9h02f</a> "+": "+ qsTr("Dutch")
onLinkActivated: Qt.openUrlExternally(link)
}
Label {
textFormat: Text.StyledText
color: Theme.primaryColor
Expand Down Expand Up @@ -405,7 +420,7 @@ Page {
rightMargin: Theme.horizontalPageMargin
}
anchors.margins: Theme.paddingLarge
text: qsTr("Icon:")+" "+" <a href='https://github.com/gri4994'>gri4994</a>"+" and "+"<a href='https://github.com/topiasv-p'>topiasv-p</a>"
text: qsTr("Icon:")+" "+" <a href='https://github.com/gri4994'>gri4994</a>"+" and svg "+"<a href='https://github.com/topiasv-p'>topiasv-p</a>"
onLinkActivated: Qt.openUrlExternally(link)
}
Label {
Expand Down
3 changes: 2 additions & 1 deletion tide/tide.pro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ SAILFISHAPP_ICONS = 86x86 108x108 128x128 256x256

CONFIG += sailfishapp_i18n

TRANSLATIONS += translations/harbour-tide-sv.ts
TRANSLATIONS += translations/harbour-tide-sv.ts\
translations/harbour-tide-nl.ts

DISTFILES += \
qml/python/createProject.py \
Expand Down
24 changes: 22 additions & 2 deletions tide/translations/harbour-tide-nl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@
</message>
<message>
<source>Themes</source>
<translation>Thema's</translation>
<translation>Thema&apos;s</translation>
</message>
<message>
<source>New keyboard is activated from: Settings - Text input - Keyboards - Develop</source>
<translation>Nieuw toetsenbord kan geactiveerd worden via Instellingen &gt; Tekstinvoer &gt; Toetsenborden &gt; Ontwikkelaars</translation>
</message>
<message>
<source>Built RPM&apos;s are located at:</source>
<translation>Gebouwde RPM's worden opgeslagen in:</translation>
<translation>Gebouwde RPM&apos;s worden opgeslagen in:</translation>
</message>
<message>
<source>Base of the keyboard: Jolla&apos;s</source>
Expand Down Expand Up @@ -219,6 +219,22 @@
<source>Edit UI, app or system files. You name it!</source>
<translation>Bewerk gebruikersinterface, app- of systeembestanden. Jij kiest!</translation>
</message>
<message>
<source>Start as root script</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Translations</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Swedish</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dutch</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AddFileDialog</name>
Expand Down Expand Up @@ -344,6 +360,10 @@
<source>Tap to show top bar</source>
<translation>Tik om de bovenste balk weer te geven</translation>
</message>
<message>
<source>Settings</source>
<translation type="unfinished">Instellingen</translation>
</message>
</context>
<context>
<name>FileManagerPage</name>
Expand Down
8 changes: 8 additions & 0 deletions tide/translations/harbour-tide-sv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,10 @@
<source>Swedish</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dutch</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AddFileDialog</name>
Expand Down Expand Up @@ -356,6 +360,10 @@
<source>Tap to show top bar</source>
<translation>Tryck för att visa toppfält</translation>
</message>
<message>
<source>Settings</source>
<translation type="unfinished">Inställningar</translation>
</message>
</context>
<context>
<name>FileManagerPage</name>
Expand Down
8 changes: 8 additions & 0 deletions tide/translations/harbour-tide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,10 @@
<source>Start as root script</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dutch</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AddFileDialog</name>
Expand Down Expand Up @@ -356,6 +360,10 @@
<source>Tap to show top bar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>FileManagerPage</name>
Expand Down

0 comments on commit 426c874

Please sign in to comment.