Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jecisc/native-browser
A Small project to add the possibility to open native browser on a FileReference for Pharo
https://github.com/jecisc/native-browser
files filesystem pharo smalltalk
Last synced: 4 days ago
JSON representation
A Small project to add the possibility to open native browser on a FileReference for Pharo
- Host: GitHub
- URL: https://github.com/jecisc/native-browser
- Owner: jecisc
- License: mit
- Created: 2018-10-04T07:33:05.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-26T15:21:19.000Z (almost 6 years ago)
- Last Synced: 2024-11-17T07:34:13.208Z (about 1 month ago)
- Topics: files, filesystem, pharo, smalltalk
- Language: Smalltalk
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Native-Browser
A Small project to add the possibility to open native browser on a FileReference for Pharo
## Install Native-Browser
To install Native-Browser on your Pharo image you can just execute the following script:
```Smalltalk
Metacello new
githubUser: 'jecisc' project: 'Native-Browser' commitish: 'master' path: 'src';
baseline: 'NativeBrowser';
load
```To add Native-Browser to your baseline just add this:
```Smalltalk
spec
baseline: 'NativeBrowser'
with: [ spec repository: 'github://jecisc/Native-Browser:master/src' ]
```Note that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.? or #v1.2.? .
## Usage
```Smalltalk
FileSystem workingDirectory openInNativeBrowser.OSPlatform current openNativeBrowserOn: FileLocator home.
```## OS Support
Currently working on:
- OSX (32/64)
- Linux (32/64)
- Windows (32)