Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
f797d13
add: zen browser
fahim-ahmed05 Nov 23, 2024
7dd6673
add: zen browser
fahim-ahmed05 Nov 23, 2024
f1cd75f
version bump to 0.8.0
fahim-ahmed05 Nov 24, 2024
fc4a76f
add pyperclip for copy
fahim-ahmed05 Nov 24, 2024
5ef15d2
add link copy support
fahim-ahmed05 Nov 24, 2024
0ffa819
Floorp added
fahim-ahmed05 Feb 6, 2025
8c8b440
Floorp added
fahim-ahmed05 Feb 6, 2025
868f437
version bump to 0.8.1
fahim-ahmed05 Feb 6, 2025
958c922
checkout, setup-python, cache, upload-artifact version bump to v5
fahim-ahmed05 Feb 6, 2025
786cf3e
checkout, setup-python, cache version bump to v5
fahim-ahmed05 Feb 6, 2025
500800c
checkout, setup-python, cache version bump to v5
fahim-ahmed05 Feb 6, 2025
b02ac18
downgrade actions/checkout, actions/cache, and actions/setup-python t…
fahim-ahmed05 Feb 6, 2025
f7b8abd
downgrade actions/checkout and actions/cache to v4
fahim-ahmed05 Feb 6, 2025
3c6a2b7
downgrade actions/checkout, actions/cache, and actions/upload-artifac…
fahim-ahmed05 Feb 6, 2025
cbff184
Merge branch 'fix_pr-packager'
fahim-ahmed05 Mar 25, 2025
3bc1d9f
Add Brave Nightly to supported browsers in SettingsTemplate.yaml
fahim-ahmed05 Mar 25, 2025
c40b4cf
Add support for Brave Nightly browser in history tracking
fahim-ahmed05 Mar 25, 2025
66d0c2c
Fix variable naming for Floorp directory in browsers.py
fahim-ahmed05 Mar 29, 2025
eec74f2
Add support for Thorium browser in history tracking
fahim-ahmed05 Mar 29, 2025
7c3ac23
Add Custom (Chromium) browser support and custom profile folder optio…
fahim-ahmed05 Mar 29, 2025
1de9f15
Add custom profile path support in BrowserHistory initialization
fahim-ahmed05 Mar 29, 2025
cb69642
Add support for custom Chromium-based browser in history tracking
fahim-ahmed05 Mar 29, 2025
23fd777
Bump version to 0.8.3 in plugin.json
fahim-ahmed05 Mar 29, 2025
4807e43
Bump version to 0.8.5 in plugin.json
fahim-ahmed05 Mar 29, 2025
9a207ae
Add Custom (Firefox) browser support in SettingsTemplate.yaml
fahim-ahmed05 Mar 29, 2025
b1c7982
Add support for custom Firefox browser in history tracking
fahim-ahmed05 Mar 29, 2025
72e4c46
Update browser initialization to support custom profile paths
fahim-ahmed05 Mar 29, 2025
3751fe1
Bump version to 0.8.6 in plugin.json
fahim-ahmed05 Mar 29, 2025
2df657c
Refactor timestamp method to consolidate browser timestamp handling &…
fahim-ahmed05 Apr 10, 2025
d5d2589
Bump version to 0.8.7 in plugin.json
fahim-ahmed05 Apr 10, 2025
ef765b9
Refactor browser history handling to consolidate paths and improve dy…
fahim-ahmed05 Apr 24, 2025
fed2d64
Add Firefox Nightly option to default browser selection
fahim-ahmed05 Apr 24, 2025
d5c7997
Add support for Firefox Nightly profiles in browser history handling
fahim-ahmed05 Apr 24, 2025
83337a2
Enhance dynamic profile support by allowing multiple glob patterns fo…
fahim-ahmed05 Apr 24, 2025
3ce244d
Refactor remove_duplicates function to improve efficiency and clarity
fahim-ahmed05 Apr 24, 2025
f986738
Bump version to 0.8.9 in plugin.json
fahim-ahmed05 Apr 24, 2025
a7481f5
Refactor Browser class initialization to streamline profile handling …
fahim-ahmed05 Apr 24, 2025
efe3a49
Bump version to 0.9.0 in plugin.json
fahim-ahmed05 Apr 24, 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
8 changes: 4 additions & 4 deletions .github/workflows/pr-packager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VER }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VER }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -27,7 +27,7 @@ jobs:
pip install wheel
pip install -r ./requirements.txt -t ./lib
- name: Upload
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifact
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VER }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VER }}
- uses: actions/cache@v2
- uses: actions/cache@v4
if: startsWith(runner.os, 'Windows')
with:
path: ~\AppData\Local\pip\Cache
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
python_ver: ['3.8']
steps:
- name: Checkout Plugin Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: ${{github.event.repository.name}}
- name: Get Plugin's version
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
echo "FILE_NAME=$file_name" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
echo "TAG_NAME=$tag_name" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Flow Launcher Cache
uses: actions/cache@v2
uses: actions/cache@v4
id: flow_cache
with:
path: |
Expand Down Expand Up @@ -95,10 +95,10 @@ jobs:
New-Item -ItemType SymbolicLink -Path $plugin_path -Target $repo_path
echo "PLUGIN_PATH=$plugin_path" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_ver }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
13 changes: 12 additions & 1 deletion SettingsTemplate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,19 @@ body:
options:
- Chrome
- Firefox
- Firefox Nightly
- Edge
- Brave
- Brave Nightly
- Opera
- Vivaldi
- Arc
- Arc
- Zen
- Floorp
- Thorium
- Custom (Chromium)
- Custom (Firefox)
- type: inputWithFolderBtn
attributes:
name: custom_profile_path
label: Custom Profile Folder
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Name": "Browser History",
"Description": "Search your Web Browser history",
"Author": "Garulf",
"Version": "0.6.0",
"Version": "0.9.0",
"Language": "python",
"Website": "https://github.com/Garulf/browser-history",
"IcoPath": "./icon.png",
Expand Down
Loading
Loading