about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Reduce dependencies, don't die if directory to unveil doesn't exist HEAD v0.1.0 masterAndinus2020-11-103-73/+48
|
* Remove URI::Encode dependency, fix $url encodingAndinus2020-06-302-4/+2
| | | | | | Looks like query_keywords encodes the url itself so $url was being double-encoded. Also, next time use URI::Escape instead - looks better.
* Add URI::Encode to cpanfileAndinus2020-06-301-0/+1
|
* Fix logical error in $url generationAndinus2020-06-301-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | This issue started with f3d1bc5f9d86300c42d6a57a9f60bd508bdf9bb4: Use URI to encode the url for random_search I'll use this for everything eventually. Before this search terms like "rocky mountains" would break, also segments, query_keywords makes it easier. Now the problem was that query_keywords forms urls like `?nature+water' which totally makes sense & this is why it's logical error. I want to form it in `?nature,water' format so first we use `join' to form `nature,water' & then use URI::Encode to encode it correctly & then use query_keywords to form $url. We have to use URI::Encode because otherwise we would end up with same problem that I tried fixing in f3d1bc5f9d86300c42d6a57a9f60bd508bdf9bb4. "rocky mountains" would've been seperated by space. Now it's all good, every space will be encoded & keywords will be seperated by `,' which is what Unsplash Source wants.
* use URI to build $urlAndinus2020-06-301-9/+22
|
* Add information about feh, move dependencies section above optionsAndinus2020-06-301-31/+40
|
* Add dependencies section in READMEAndinus2020-06-301-2/+18
| | | | | Version numbers in cpanfile are the ones installed on my system, it'll probably work with old versions too.
* Update dependencies in cpanfileAndinus2020-06-301-0/+3
|
* Add plain-text README fileAndinus2020-06-263-83/+139
| | | | | cgit doesn't render Org files. My website will still have the html version.
* Update README with documentationAndinus2020-06-171-0/+63
|
* Add additional information to help optionAndinus2020-06-171-1/+4
|
* Improve unveil debug messageAndinus2020-06-171-10/+2
|
* Move unveil call further downAndinus2020-06-171-6/+6
|
* Add color to unveil debug messagesAndinus2020-06-171-2/+2
|
* Add cpanfile for crux.plAndinus2020-06-171-0/+5
|
* Add .gitignoreAndinus2020-06-171-0/+31
|
* Use URI to encode the url for random_searchAndinus2020-06-171-5/+11
| | | | | | I'll use this for everything eventually. Before this search terms like "rocky mountains" would break, also segments, query_keywords makes it easier.
* Add crux.pl, Initial commitAndinus2020-06-171-0/+132
|
* Add UnsplashSource.pmAndinus2020-06-171-0/+81
|
* Initial commitAndinus2020-06-152-0/+33