phoityne 0.0.1.0 → 0.0.1.1
raw patch · 3 files changed
+72/−6 lines, 3 files
Files
- Changelog.md +8/−0
- README.md +58/−0
- phoityne.cabal +6/−6
+ Changelog.md view
@@ -0,0 +1,8 @@+20151223 phoityne-0.0.1.1 + +* [Add] README.md, Changelog.md + +20151220 phoityne-0.0.1.0 + +* [Info] Initial release.+
+ README.md view
@@ -0,0 +1,58 @@+# Phoityne++Phoityne is a ghci debug viewer with simple editor.+(on Windows)++## Install+ + +### Setup GTK3 +Download the all in package of gtk from [here](http://win32builder.gnome.org/ "GTK3"). +Extract it and set path to bin and lib folder, set install directory to prefix of lib/pkgconfig/*.pc files. + + +### Start stack project ++ % stack new project+ . . . . .+ %+ % cd project+ % stack install phoityne+ . . . . .+ %+ % C:\Users\username\AppData\Roaming\local\bin\phoityne.exe+ %++## Keyboard shortcuts++ +### Build, Debug +* F5 : start debug / jump to next break point +* Shift+F5 : end debug +* F7 : build +* Shift+F7 : rebuild (stack clean; stack build) +* F9 : put on/off break point +* F10 : step over +* F11 : step in + +### File, Search +* Ctrl+S : save all +* Ctrl+F : search +* F3 : jump to next search result +* Ctrl+R : replace + +### Folder Tree +* Left : collapse folder +* Right : expand folder +* Up : go up +* Down : go down+++## Demo Videos++### Demo Video1+[](https://www.youtube.com/watch?v=MKMEgb0sFsI)++### Demo Video2+[](https://www.youtube.com/watch?v=T10wWCmWHaA)+
phoityne.cabal view
@@ -1,16 +1,16 @@ name: phoityne-version: 0.0.1.0+version: 0.0.1.1 synopsis: ghci debug viewer with simple editor.-description: phoityne is a ghci debug viewer with simple editor.-homepage: under construction+description: Phoityne is a ghci debug viewer with simple editor. license: BSD3 license-file: LICENSE author: phoityne_hs maintainer: phoityne.hs@gmail.com-copyright: phoityne_hs category: Development build-type: Simple cabal-version: >=1.10+extra-source-files: README.md + , Changelog.md data-files: conf/*.ico , conf/*.glade , conf/*.png@@ -46,8 +46,8 @@ , text , bytestring , MissingH- , safe- , HStringTemplate + , safe + , HStringTemplate , gtk3 , transformers , containers