Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
3b79dfe
fixing some old material. Now requires to input credentials.json befo…
Aug 19, 2020
e103a76
updated README.md
Aug 20, 2020
2118b07
updated README.md
Aug 20, 2020
3a73f12
updated requirements.txt
Aug 20, 2020
556b5d7
fixed some typos
Sep 19, 2020
c1e46c8
updated README.md
Sep 19, 2020
3d11558
updated travis tests
Sep 19, 2020
fcf2112
updated travis tests
Sep 19, 2020
c8c95fa
updated travis tests, final.
Sep 19, 2020
84a2857
Changed pathing method for Windows
Sep 20, 2020
0dccbb4
Changed a little bit the Readme
federicotorrielli Dec 24, 2020
c07e42c
Sort posts (new, hot, top)
teaqu Feb 17, 2021
6e71b32
Remove nose
teaqu Feb 17, 2021
71ceb9e
change to pytest
teaqu Feb 17, 2021
cabb383
change to nose2
teaqu Feb 17, 2021
0f31342
Add nose2 as a requirement.
teaqu Feb 17, 2021
9d513d5
Merge pull request #2 from teaqu/remove-nose
federicotorrielli Feb 21, 2021
8f9f2f8
Merge pull request #1 from teaqu/subreddit-sort
federicotorrielli Feb 21, 2021
699a241
Replaced useless nightly tests
Feb 21, 2021
415fb39
Add randomize in sort, limit on number of posts
rahilshah10 Jul 12, 2021
ca24803
Update praw
rahilshah10 Jul 12, 2021
5bf4838
Merge pull request #3 from rahilshah10/master
federicotorrielli Jul 13, 2021
48fb76a
Fix Time and Random Functionality
rahilshah10 Jul 25, 2021
50f9b30
Fixes to the randomization
rahilshah10 Sep 15, 2021
dde9fea
Updates to New logic
rahilshah10 Sep 19, 2021
fe558c1
Merge branch 'federicotorrielli:master' into master
rahilshah10 Nov 12, 2021
c13a524
Merge pull request #4 from rahilshah10/master
federicotorrielli Dec 20, 2021
603d902
Smaller changes
federicotorrielli Dec 21, 2021
4c07e40
Merge branch 'master' of github.com:federicotorrielli/Daily-Reddit-Wa…
federicotorrielli Dec 21, 2021
f0b9a9d
Code adjustement, rollbacks, module updates and other changes
federicotorrielli Dec 21, 2021
cdbc971
Update requirements.txt
federicotorrielli Jan 26, 2022
934dcdf
Bump requests from 2.27.1 to 2.31.0
dependabot[bot] May 23, 2023
c5df8c0
Merge pull request #5 from federicotorrielli/dependabot/pip/requests-…
federicotorrielli Oct 21, 2024
788dbd2
Bump future from 0.18.2 to 0.18.3
dependabot[bot] Oct 21, 2024
0f562fe
Bump requests from 2.31.0 to 2.32.2
dependabot[bot] Oct 21, 2024
f72dfdf
Merge pull request #6 from federicotorrielli/dependabot/pip/future-0.…
federicotorrielli Oct 21, 2024
b7c0540
Merge pull request #7 from federicotorrielli/dependabot/pip/requests-…
federicotorrielli Oct 21, 2024
4ddba26
fix(requirements.txt): bump praw version to 7.8.1
Dec 16, 2024
2a25e98
Merge pull request #8 from ThatMatrix/praw-version-bump
federicotorrielli Jul 1, 2025
5e52659
fix: update dependencies in requirements.txt and improve Python versi…
federicotorrielli Jul 1, 2025
625af18
Bump requests from 2.32.2 to 2.32.4
dependabot[bot] Jul 1, 2025
8451be9
Merge pull request #9 from federicotorrielli/dependabot/pip/requests-…
federicotorrielli Jul 2, 2025
14d355c
feat: enhance configuration and argument parsing for wallpaper script
federicotorrielli Jul 9, 2025
6b11b9f
refactor: streamline configuration loading and enhance argument parsi…
federicotorrielli Jul 9, 2025
9e66f43
Update dependencies and add pyproject.toml for daily-reddit-wallpaper…
federicotorrielli Sep 1, 2025
65f7ebb
docs: update README.md to enhance clarity and structure of installati…
federicotorrielli Sep 1, 2025
e1f2e60
Add Jekyll GitHub Pages deployment workflow
federicotorrielli Sep 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,6 @@ ENV/

# Rope project settings
.ropeproject

# Intelij
.idea/
15 changes: 6 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "pypy3"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: nosetests
script: "nose2 -v"
Loading