repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
ItzCrazyKns/Vane
950
comment_to_fix
feat: improve search architecture, write custom API classes (remove langchain), add deep research & more
<!-- metadata:{"confidence":8,"steps":[{"text":"Looking at this new CodeBlock component, I need to analyze it for potential issues.\n\nI can see a clear bug in the code - the button is already positioned with `absolute top-2 right-2`, but the icons inside the button also have `absolute top-2 right-2` classes. This crea...
2edef888a3472174f20f8f199649bc2e129b1e7d
7f3f88196412ddd3a2d28e0aff13063bcadf0431
diff --git a/src/components/MessageRenderer/CodeBlock/index.tsx b/src/components/MessageRenderer/CodeBlock/index.tsx new file mode 100644 index 000000000..493a0d025 --- /dev/null +++ b/src/components/MessageRenderer/CodeBlock/index.tsx @@ -0,0 +1,64 @@ +'use client'; + +import { CheckIcon, CopyIcon } from '@phosphor-ic...
[ "src/components/MessageRenderer/CodeBlock/index.tsx" ]
[ { "comment": "<!-- metadata:{\"confidence\":8,\"steps\":[{\"text\":\"Looking at this new CodeBlock component, I need to analyze it for potential issues.\\n\\nI can see a clear bug in the code - the button is already positioned with `absolute top-2 right-2`, but the icons inside the button also have `absolute to...
true
ItzCrazyKns/Vane
950
comment_to_fix
feat: improve search architecture, write custom API classes (remove langchain), add deep research & more
<!-- metadata:{"confidence":10,"steps":[{"text":"Looking at this new file that defines a plan action for the research agent, I'll analyze the code for issues.\n\nThe code creates a Zod schema and a research action. Let me examine it carefully:\n\n1. **Line 17 opens an `<examples>` tag**\n2. **Line 20 has `<examples>` a...
2edef888a3472174f20f8f199649bc2e129b1e7d
7f3f88196412ddd3a2d28e0aff13063bcadf0431
diff --git a/src/lib/agents/search/researcher/actions/plan.ts b/src/lib/agents/search/researcher/actions/plan.ts new file mode 100644 index 000000000..32ea623ec --- /dev/null +++ b/src/lib/agents/search/researcher/actions/plan.ts @@ -0,0 +1,40 @@ +import z from 'zod'; +import { ResearchAction } from '../../types'; + +c...
[ "src/lib/agents/search/researcher/actions/plan.ts" ]
[ { "comment": "<!-- metadata:{\"confidence\":10,\"steps\":[{\"text\":\"Looking at this new file that defines a plan action for the research agent, I'll analyze the code for issues.\\n\\nThe code creates a Zod schema and a research action. Let me examine it carefully:\\n\\n1. **Line 17 opens an `<examples>` tag**...
true
ItzCrazyKns/Vane
950
comment_to_fix
feat: improve search architecture, write custom API classes (remove langchain), add deep research & more
<!-- metadata:{"confidence":9,"steps":[{"text":"Looking at this `package.json` diff, I can see several dependency changes including additions, removals, and version upgrades. Let me analyze the key changes for potential issues.\n\nThe main areas of concern:\n1. `@types/jspdf` appears to be added to `dependencies` inste...
2edef888a3472174f20f8f199649bc2e129b1e7d
7f3f88196412ddd3a2d28e0aff13063bcadf0431
diff --git a/package.json b/package.json index 7083b66a0..104026144 100644 --- a/package.json +++ b/package.json @@ -11,53 +11,55 @@ "format:write": "prettier . --write" }, "dependencies": { + "@google/genai": "^1.34.0", "@headlessui/react": "^2.2.0", "@headlessui/tailwindcss": "^0.2.2", - "@...
[ "package.json" ]
[ { "comment": "<!-- metadata:{\"confidence\":9,\"steps\":[{\"text\":\"Looking at this `package.json` diff, I can see several dependency changes including additions, removals, and version upgrades. Let me analyze the key changes for potential issues.\\n\\nThe main areas of concern:\\n1. `@types/jspdf` appears to ...
true
ItzCrazyKns/Vane
950
comment_to_fix
feat: improve search architecture, write custom API classes (remove langchain), add deep research & more
<!-- metadata:{"confidence":9,"steps":[{"text":"Looking at this new file `src/lib/agents/search/widgets/executor.ts`, I can see a `WidgetExecutor` class that manages widget registration and execution.\n\nLet me analyze the code for potential issues:\n\n1. **Line 26 uses `console.log` for error logging** - This is probl...
2edef888a3472174f20f8f199649bc2e129b1e7d
7f3f88196412ddd3a2d28e0aff13063bcadf0431
diff --git a/src/lib/agents/search/widgets/executor.ts b/src/lib/agents/search/widgets/executor.ts new file mode 100644 index 000000000..89f183014 --- /dev/null +++ b/src/lib/agents/search/widgets/executor.ts @@ -0,0 +1,36 @@ +import { Widget, WidgetInput, WidgetOutput } from '../types'; + +class WidgetExecutor { + st...
[ "src/lib/agents/search/widgets/executor.ts" ]
[ { "comment": "<!-- metadata:{\"confidence\":9,\"steps\":[{\"text\":\"Looking at this new file `src/lib/agents/search/widgets/executor.ts`, I can see a `WidgetExecutor` class that manages widget registration and execution.\\n\\nLet me analyze the code for potential issues:\\n\\n1. **Line 26 uses `console.log` fo...
true
ItzCrazyKns/Vane
950
comment_to_fix
feat: improve search architecture, write custom API classes (remove langchain), add deep research & more
<!-- metadata:{"confidence":9,"steps":[{"text":"Looking at this diff, I need to analyze the changes to the `Attach.tsx` component. The main changes involve:\n\n1. New imports for `AnimatePresence` from `motion/react` and `motion` from `framer-motion`\n2. Replacing `Transition` from headlessui with framer-motion animati...
2edef888a3472174f20f8f199649bc2e129b1e7d
7f3f88196412ddd3a2d28e0aff13063bcadf0431
diff --git a/src/components/MessageInputActions/Attach.tsx b/src/components/MessageInputActions/Attach.tsx index fbc2e7ea3..84d7152a1 100644 --- a/src/components/MessageInputActions/Attach.tsx +++ b/src/components/MessageInputActions/Attach.tsx @@ -16,6 +16,8 @@ import { } from 'lucide-react'; import { Fragment, useR...
[ "src/components/MessageInputActions/Attach.tsx" ]
[ { "comment": "<!-- metadata:{\"confidence\":9,\"steps\":[{\"text\":\"Looking at this diff, I need to analyze the changes to the `Attach.tsx` component. The main changes involve:\\n\\n1. New imports for `AnimatePresence` from `motion/react` and `motion` from `framer-motion`\\n2. Replacing `Transition` from headl...
true
ItzCrazyKns/Vane
950
comment_to_fix
feat: improve search architecture, write custom API classes (remove langchain), add deep research & more
<!-- metadata:{"confidence":7,"steps":[{"text":"Looking at this new `Renderer.tsx` file, I need to analyze the code for potential issues.\n\nThe code renders different widget types (Weather, Calculation, Stock) based on a switch statement over an array of widgets.\n\nKey observations:\n1. The component uses `index` as ...
2edef888a3472174f20f8f199649bc2e129b1e7d
7f3f88196412ddd3a2d28e0aff13063bcadf0431
diff --git a/src/components/Widgets/Renderer.tsx b/src/components/Widgets/Renderer.tsx new file mode 100644 index 000000000..8456c8ff3 --- /dev/null +++ b/src/components/Widgets/Renderer.tsx @@ -0,0 +1,76 @@ +import React from 'react'; +import { Widget } from '../ChatWindow'; +import Weather from './Weather'; +import C...
[ "src/components/Widgets/Renderer.tsx" ]
[ { "comment": "<!-- metadata:{\"confidence\":7,\"steps\":[{\"text\":\"Looking at this new `Renderer.tsx` file, I need to analyze the code for potential issues.\\n\\nThe code renders different widget types (Weather, Calculation, Stock) based on a switch statement over an array of widgets.\\n\\nKey observations:\\...
true
ItzCrazyKns/Vane
939
issue_to_patch
Merge master into feat/improve-search-architecture
<!-- This is an auto-generated description by cubic. --> ## Summary by cubic Adds toggles to show or hide the Weather and News widgets on the empty chat screen. Settings changes apply instantly and sync across tabs. - **New Features** - New client settings: showWeatherWidget and showNewsWidget (switches, default t...
41c879cd867ecc894f7200d68204dabe69d85a8d
5901a965f7f0eb6d7f8ea7e656aa0e5706f3d6fe
diff --git a/README.md b/README.md index 9ef1f1d39..dc654df57 100644 --- a/README.md +++ b/README.md @@ -61,9 +61,9 @@ We'd also like to thank the following partners for their generous support: <table> <tr> - <td> + <td width="100" align="center"> <a href="https://dashboard.exa.ai" target="_blank"> -...
[ "README.md", "src/components/EmptyChat.tsx", "src/components/Settings/SettingsField.tsx", "src/lib/config/clientRegistry.ts", "src/lib/config/index.ts" ]
[]
true
ItzCrazyKns/Vane
934
issue_to_patch
Added ability to remove the widgets in the front empty page of the search. Specifically the Weather and News widget.
<!-- This is an auto-generated description by cubic. --> ## Summary by cubic Added toggle controls to hide the Weather and News widgets on the empty chat screen. Changes update instantly and persist per client. - **New Features** - Added client-scoped switches: “Show weather widget” and “Show news widget” (def...
9934c1dbe05256ace290542cf114ab4094b39db6
6150784c27b32a208c6a67f84f34f5fa2b08a8eb
diff --git a/src/components/EmptyChat.tsx b/src/components/EmptyChat.tsx index d9b66860b..775fc9d16 100644 --- a/src/components/EmptyChat.tsx +++ b/src/components/EmptyChat.tsx @@ -1,3 +1,6 @@ +'use client'; + +import { useEffect, useState } from 'react'; import { Settings } from 'lucide-react'; import EmptyChatMessa...
[ "src/components/EmptyChat.tsx", "src/components/Settings/SettingsField.tsx", "src/lib/config/clientRegistry.ts", "src/lib/config/index.ts" ]
[ { "comment": "<!-- metadata:{\"confidence\":6,\"steps\":[{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"rg --line-number -F client-config-changed -n\"}}]},{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"rg --line-number -F getShowWeatherWidget -n\"}}]...
true
ItzCrazyKns/Vane
934
comment_to_fix
Added ability to remove the widgets in the front empty page of the search. Specifically the Weather and News widget.
<!-- metadata:{"confidence":6,"steps":[{"text":"","toolCalls":[{"toolName":"bash","input":{"command":"rg --line-number -F client-config-changed -n"}}]},{"text":"","toolCalls":[{"toolName":"bash","input":{"command":"rg --line-number -F getShowWeatherWidget -n"}}]},{"text":"","toolCalls":[{"toolName":"bash","input":{"com...
9934c1dbe05256ace290542cf114ab4094b39db6
6150784c27b32a208c6a67f84f34f5fa2b08a8eb
diff --git a/src/components/EmptyChat.tsx b/src/components/EmptyChat.tsx index d9b66860b..775fc9d16 100644 --- a/src/components/EmptyChat.tsx +++ b/src/components/EmptyChat.tsx @@ -1,3 +1,6 @@ +'use client'; + +import { useEffect, useState } from 'react'; import { Settings } from 'lucide-react'; import EmptyChatMessa...
[ "src/components/EmptyChat.tsx" ]
[ { "comment": "<!-- metadata:{\"confidence\":6,\"steps\":[{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"rg --line-number -F client-config-changed -n\"}}]},{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"rg --line-number -F getShowWeatherWidget -n\"}}]...
true
ItzCrazyKns/Vane
934
comment_to_fix
Added ability to remove the widgets in the front empty page of the search. Specifically the Weather and News widget.
<!-- metadata:{"confidence":7,"steps":[{"text":"","toolCalls":[{"toolName":"bash","input":{"command":"rg --line-number -F client-config-changed -n"}}]},{"text":"","toolCalls":[{"toolName":"bash","input":{"command":"rg --line-number -F getShowWeatherWidget -n"}}]},{"text":"","toolCalls":[{"toolName":"bash","input":{"com...
9934c1dbe05256ace290542cf114ab4094b39db6
6150784c27b32a208c6a67f84f34f5fa2b08a8eb
diff --git a/src/components/EmptyChat.tsx b/src/components/EmptyChat.tsx index d9b66860b..775fc9d16 100644 --- a/src/components/EmptyChat.tsx +++ b/src/components/EmptyChat.tsx @@ -1,3 +1,6 @@ +'use client'; + +import { useEffect, useState } from 'react'; import { Settings } from 'lucide-react'; import EmptyChatMessa...
[ "src/components/EmptyChat.tsx" ]
[ { "comment": "<!-- metadata:{\"confidence\":7,\"steps\":[{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"rg --line-number -F client-config-changed -n\"}}]},{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"rg --line-number -F getShowWeatherWidget -n\"}}]...
true
ItzCrazyKns/Vane
928
issue_to_patch
Merge master into canary
<!-- This is an auto-generated description by cubic. --> ## Summary by cubic Revamps the Settings experience with new Preferences and Personalization sections, renames Providers to Connections, and adds an auto media search toggle. Also fixes Gemini embedding model detection and updates docs/assets. - **New Features...
2e736613c5514773603e39a116876bc3c7593faf
70c1f7230cd359083f4d35c3ea0de3df26cab64e
diff --git a/.assets/demo.gif b/.assets/demo.gif new file mode 100644 index 000000000..d94ed86eb Binary files /dev/null and b/.assets/demo.gif differ diff --git a/.assets/perplexica-preview.gif b/.assets/perplexica-preview.gif deleted file mode 100644 index 5dae0842a..000000000 Binary files a/.assets/perplexica-preview...
[ ".assets/demo.gif", ".assets/perplexica-preview.gif", ".assets/sponsers/warp.png", "README.md", "src/components/Settings/Sections/Models/AddModelDialog.tsx", "src/components/Settings/Sections/Models/AddProviderDialog.tsx", "src/components/Settings/Sections/Models/DeleteProviderDialog.tsx", "src/compon...
[ { "comment": "<!-- metadata:{\"confidence\":8,\"steps\":[{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"grep -R --include='*.ts' -n -F 'uiConfigSections.general' src\"}}]},{\"text\":\"\",\"toolCalls\":[{\"toolName\":\"bash\",\"input\":{\"command\":\"grep -R --include='*.ts' -n -F ...
true
ItzCrazyKns/Vane
916
issue_to_patch
fix: list all available gemini embedding models
the new settings window does not list all available gemini embedding models. this happens because some gemini embedding models have `embedContent` instead of `embedText`
b0d97c4c83f64ed1f463cf3bdf823499a6a5b388
75ef2e0282cd66e6bca52f230affe498baa6c6b3
diff --git a/src/lib/models/providers/gemini.ts b/src/lib/models/providers/gemini.ts index 6cf35849a..976832b4c 100644 --- a/src/lib/models/providers/gemini.ts +++ b/src/lib/models/providers/gemini.ts @@ -48,7 +48,7 @@ class GeminiProvider extends BaseModelProvider<GeminiConfig> { let defaultChatModels: Model[] = ...
[ "src/lib/models/providers/gemini.ts" ]
[]
true
ItzCrazyKns/Vane
906
issue_to_patch
Release v1.11.0
47350b34ecf2b1785f003ef2b2af58c1efdb9e85
a01fce4e646309d54aed19db28938f1287d15da8
diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 6b9e2e253..48a67eed0 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -11,6 +11,13 @@ on: jobs: build-amd64: runs-on: ubuntu-latest + strategy: + matrix: + va...
[ ".github/workflows/docker-build.yaml", "Dockerfile", "Dockerfile.slim", "README.md", "app.dockerfile", "docker-compose.yaml", "docs/API/SEARCH.md", "docs/installation/UPDATING.md", "entrypoint.sh", "package.json", "sample.config.toml", "src/app/api/chat/route.ts", "src/app/api/config/route.t...
[]
true
ItzCrazyKns/Vane
901
issue_to_patch
Feat/config management model registry
This pull request refactors the backend API logic for model providers and configuration management to use a new centralized `ModelRegistry` class, replacing the previous scattered provider and config utilities. It introduces new endpoints for managing model providers and their models, updates validation and request sch...
5abd42d46d9d16f924277d0ef7dc2b06854591c3
8f22d9f62649464ef924a140b973700e28e2d2f7
diff --git a/docker-compose.yaml b/docker-compose.yaml index b32e0a99c..f511e944e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,6 +15,7 @@ services: context: . dockerfile: app.dockerfile environment: + - DOCKER=true - SEARXNG_API_URL=http://searxng:8080 - DATA_D...
[ "docker-compose.yaml", "package.json", "sample.config.toml", "src/app/api/chat/route.ts", "src/app/api/config/route.ts", "src/app/api/config/setup-complete/route.ts", "src/app/api/images/route.ts", "src/app/api/models/route.ts", "src/app/api/providers/[id]/models/route.ts", "src/app/api/providers/...
[]
true
ItzCrazyKns/Vane
892
issue_to_patch
Handling double stringify JSON parsing
To address https://github.com/ItzCrazyKns/Perplexica/issues/886#issuecomment-3368476752 metadata field get multiple Stringify. A JSON parse call unvei on layer a time.
f141d4719cef6482066401e018cac1a81ed8864f
46b9e411004afc8c14cad29ab7af64cb08e155f3
diff --git a/src/lib/db/migrate.ts b/src/lib/db/migrate.ts index 3cd8a62f7..3451a0954 100644 --- a/src/lib/db/migrate.ts +++ b/src/lib/db/migrate.ts @@ -54,7 +54,7 @@ fs.readdirSync(migrationsFolder) id INTEGER PRIMARY KEY, type TEXT NOT NULL, c...
[ "src/lib/db/migrate.ts" ]
[]
true
ItzCrazyKns/Vane
880
issue_to_patch
When passing malformed response body, backend freezes in some cases instead of returning error **Describe the bug** When passing malformed response body, backend hangs in some cases instead of returning error **To Reproduce** Steps to reproduce the behavior: pass the following sample JSON as request body to POST API...
validate the request body of api/chat to prevent malformed request body
Fixes #579 To Resolve this used the zod schema and safe parse to check valide request body. This only reflect on the /api/chat API and not other api. Checks: Done: npm run format:write Done: Unit testing using postman. Done: Run production docker and play around the chat Undone: handle this error on UI (No ne...
8dc24c2d1a3b62c4b31dfda096893e955114b45c
3b41905abbf8d1e839ae2c162ae874f54c799fc9
diff --git a/src/app/api/chat/route.ts b/src/app/api/chat/route.ts index ba88da6e4..65d1c6fb7 100644 --- a/src/app/api/chat/route.ts +++ b/src/app/api/chat/route.ts @@ -17,35 +17,71 @@ import { getCustomOpenaiModelName, } from '@/lib/config'; import { searchHandlers } from '@/lib/search'; +import { z } from 'zod';...
[ "src/app/api/chat/route.ts" ]
[]
true
ItzCrazyKns/Vane
877
issue_to_patch
Lemonade integration to run local LLMs with NPU and GPU acceleration
[Lemonade](https://lemonade-server.ai/) enables local execution of LLMs with NPU and GPU acceleration, providing enhanced data privacy. This PR adds lemonade as a model provider to Perplexica. Below is an example of Perplexica using lemonade. https://github.com/user-attachments/assets/021e1221-bc8c-499a-9a01-a7c5c2...
6dd33aa33c62579594618500b59db1888cca83fa
8afcdd044c1cf131d6b462d55bba66e7c505c52e
diff --git a/README.md b/README.md index fa63ff107..8ad9e3754 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ - [Getting Started with Docker (Recommended)](#getting-started-with-docker-recommended) - [Non-Docker Installation](#non-docker-installation) - [Ollama Connection Errors](#ollama-connection-er...
[ "README.md", "sample.config.toml", "src/app/api/config/route.ts", "src/app/settings/page.tsx", "src/lib/config.ts", "src/lib/providers/index.ts", "src/lib/providers/lemonade.ts" ]
[]
true
ItzCrazyKns/Vane
876
issue_to_patch
Add deployment badge for Hostinger
Add button to deploy Perplexica on Hostinger VPS
b8e4152e77cb0126753e740228975da0bc345a77
e705952503141def16ab8f58a393381c9f07e100
diff --git a/README.md b/README.md index fa63ff107..63ee445a6 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,8 @@ Perplexica runs on Next.js and handles all API requests. It works right away on [![Deploy to Sealos](https://raw.githubusercontent.com/labring-actions/templates/main/Deploy-on-Sealos.svg)](https://u...
[ "README.md" ]
[]
true
ItzCrazyKns/Vane
787
issue_to_patch
Fix: IOS Input Zoom / Support PWA Home Screen App, closes #458
config for theme consistency and iOS standalone mode - Modified manifest.ts to ensure proper metadata - Added display: standalone for iOS PWA behavior
0b7989c3d3f3a5c21354c623f7bd98c70b6d7137
e6ebf892c54d6614a0e1e074c593192f3cb8626b
diff --git a/.assets/manifest.json b/.assets/manifest.json new file mode 100644 index 000000000..e69de29bb diff --git a/.gitignore b/.gitignore index c95173dbd..9fb5e4c62 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ Thumbs.db # Db db.sqlite /searxng + +certificates \ No newline at end of file diff --gi...
[ ".assets/manifest.json", ".gitignore", "public/icon-100.png", "public/icon-50.png", "public/icon.png", "public/screenshots/p1.png", "public/screenshots/p1_small.png", "public/screenshots/p2.png", "public/screenshots/p2_small.png", "src/app/globals.css", "src/app/manifest.ts" ]
[]
true
ItzCrazyKns/Vane
857
issue_to_patch
make file icon in attachment modal in chat page fit light theme better
make the file icon in the attachment modal for the chat page an off-white background so that it matches the light theme better and looks the same as the attachment modal on the home page (see #855). I should have included this in the PR i submitted yesterday (thank you again for merging it), but I didn't notice that...
238bcaff2b3a1a79871bdda365cd1a9807b8c470
d8486e90bb81604c4d37ff7d0496e301f2b5a9d5
diff --git a/src/components/MessageInputActions/AttachSmall.tsx b/src/components/MessageInputActions/AttachSmall.tsx index 834b3f40f..fd7e35c34 100644 --- a/src/components/MessageInputActions/AttachSmall.tsx +++ b/src/components/MessageInputActions/AttachSmall.tsx @@ -107,8 +107,8 @@ const AttachSmall = () => { ...
[ "src/components/MessageInputActions/AttachSmall.tsx" ]
[]
true
ItzCrazyKns/Vane
866
issue_to_patch
feat: add new OpenAI models with proper temperature parameter handling
- Add GPT 4.1 series and o1/o3/o4 models with temperature compatibility fixes - Remove gpt-5/gpt-5-mini models due to organization verification restrictions - Fix 400 errors for models that only support default temperature values
238bcaff2b3a1a79871bdda365cd1a9807b8c470
6f367c34a89fd7523b568ef9b994ae3fbc6ccc26
diff --git a/src/lib/providers/index.ts b/src/lib/providers/index.ts index 1b6bb2f68..00ba60f92 100644 --- a/src/lib/providers/index.ts +++ b/src/lib/providers/index.ts @@ -120,7 +120,11 @@ export const getAvailableChatModelProviders = async () => { model: new ChatOpenAI({ apiKey: customOpen...
[ "src/lib/providers/index.ts", "src/lib/providers/openai.ts" ]
[]
true
ItzCrazyKns/Vane
855
issue_to_patch
fix text color for topic names on discover page in light mode
make light mode color for topic text black so it is readable. Before: <img width="1060" height="122" alt="image" src="https://github.com/user-attachments/assets/af229c40-5086-4904-824a-b003b4d7644d" /> After: <img width="1045" height="118" alt="image" src="https://github.com/user-attachments/assets/cb5591f7-0c2...
30725b5d6da1ba8c1e239d9d36517a5fdb57d1c9
a546eb18a17750e6652b9198714368424745bd39
diff --git a/src/app/discover/page.tsx b/src/app/discover/page.tsx index 8e20e5027..a9d0090ec 100644 --- a/src/app/discover/page.tsx +++ b/src/app/discover/page.tsx @@ -91,7 +91,7 @@ const Page = () => { 'border-[0.1px] rounded-full text-sm px-3 py-1 text-nowrap transition duration-200 cursor-pointer',...
[ "src/app/discover/page.tsx", "src/components/MessageInputActions/Attach.tsx" ]
[]
true
ItzCrazyKns/Vane
828
issue_to_patch
Llama.cpp's `llama-server` as custom OpenAI provider I want to use Perplexica with the OpenAI-API-compatible [`llama_server` component of Llama.cpp](https://github.com/ggml-org/llama.cpp/blob/master/tools/server/README.md), which I am running locally on my Mac via: llama-server --host 0.0.0.0 --port 8888 -hf unsl...
docs: Add instructions for local OpenAI-API-compatible LLMs
Perplexica supports local OpenAI-API-compatible LLMs via the `[MODELS.CUSTOM_OPENAI]` header in `config.toml` but was missing documentation for configuring the necessary settings. This makes that support more explicit and visible, as well as helping end users set the required configuration values appropriately. Fixe...
26e1d5fec3d126092d56c771276896453dbf2549
65fc881356be715b383ffad7f773c89d96d7eea9
diff --git a/README.md b/README.md index 5eb071329..fa63ff107 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Want to know more about its architecture and how it works? You can read it [here ## Features -- **Local LLMs**: You can make use local LLMs such as Llama3 and Mixtral using Ollama. +- **Local LLMs...
[ "README.md" ]
[]
true
ItzCrazyKns/Vane
843
issue_to_patch
feat: Add support for latest AI models from Anthropic, Google, & OpenAI
Add support for the following new models: - Anthropic - Claude Opus 4.1 - Claude Opus 4 - Claude Sonnet 4 - Google - Gemini 2.5 Flash-Lite - OpenAI - GPT 5 - GPT 5 Mini - GPT 5 Nano * Changed the temperature for OpenAI models to `1` for [GPT 5 support](https://community.openai.com/t/tempera...
37cd6d3ab57cbe7c4fbb62750fd764cda953d9c7
3edd7d44dd5acfe7dbc416db8eb588b71cedb597
diff --git a/src/lib/providers/anthropic.ts b/src/lib/providers/anthropic.ts index 2b0f2cc09..6af211566 100644 --- a/src/lib/providers/anthropic.ts +++ b/src/lib/providers/anthropic.ts @@ -9,6 +9,18 @@ export const PROVIDER_INFO = { import { BaseChatModel } from '@langchain/core/language_models/chat_models'; const ...
[ "src/lib/providers/anthropic.ts", "src/lib/providers/gemini.ts", "src/lib/providers/openai.ts" ]
[]
true
ItzCrazyKns/Vane
831
issue_to_patch
Update Gemini 2.5 Models
Update the displayName and key for Gemini 2.5 models.
341aae458767df872c1e9ca63800b640c9b98551
58c7be6e9589e3b1a849a59411312c5a1a797173
diff --git a/src/lib/providers/gemini.ts b/src/lib/providers/gemini.ts index b84e89945..1d210e7cb 100644 --- a/src/lib/providers/gemini.ts +++ b/src/lib/providers/gemini.ts @@ -14,16 +14,12 @@ import { Embeddings } from '@langchain/core/embeddings'; const geminiChatModels: Record<string, string>[] = [ { - disp...
[ "src/lib/providers/gemini.ts" ]
[]
true
ItzCrazyKns/Vane
832
issue_to_patch
Fix name of provider in embeddings models error message
341aae458767df872c1e9ca63800b640c9b98551
3f2a8f862cbc64adc739c08d9f5cf98a8886999b
diff --git a/src/lib/providers/gemini.ts b/src/lib/providers/gemini.ts index b84e89945..f64b2717f 100644 --- a/src/lib/providers/gemini.ts +++ b/src/lib/providers/gemini.ts @@ -108,7 +108,7 @@ export const loadGeminiEmbeddingModels = async () => { return embeddingModels; } catch (err) { - console.error(`Er...
[ "src/lib/providers/gemini.ts" ]
[]
true
ItzCrazyKns/Vane
830
issue_to_patch
feat(weather): update measurement units to Imperial/Metric
7c4aa683a244137626c7d820c322f50c87fb79f7
7f629073850b7c80a528001c7cf2db6e3d5fe5d3
diff --git a/src/app/api/weather/route.ts b/src/app/api/weather/route.ts index 1f9867ff9..afaf8a654 100644 --- a/src/app/api/weather/route.ts +++ b/src/app/api/weather/route.ts @@ -1,7 +1,10 @@ export const POST = async (req: Request) => { try { - const body: { lat: number; lng: number; temperatureUnit: 'C' | 'F...
[ "src/app/api/weather/route.ts", "src/app/settings/page.tsx", "src/components/WeatherWidget.tsx" ]
[]
true
ItzCrazyKns/Vane
827
issue_to_patch
fix(discover): provide language when fetching
## Summary Provide language code via `opts` when fetching search for discover page Related documentation - https://docs.searxng.org/dev/search_api.html ## Related issue Some engines provide empty response when no language is provided. Related to #618 ## How is this tested? Tested locally | Bef...
57407112fbc16425bf89dc7b60c9e70eded3de78
f7b4e322182cac1cb123755cdb750978af6ad88e
diff --git a/src/app/api/discover/route.ts b/src/app/api/discover/route.ts index b1c761d43..3bf79f015 100644 --- a/src/app/api/discover/route.ts +++ b/src/app/api/discover/route.ts @@ -36,6 +36,7 @@ export const GET = async (req: Request) => { { engines: ['bing news'], ...
[ "src/app/api/discover/route.ts" ]
[]
true
ItzCrazyKns/Vane
817
issue_to_patch
Update Linux ollama instructions in README.md
When setting the OLLAMA_HOST environment variable, the port number must be specified ( see the [Ollama documentation for "Setting environment variables on Linux."](https://github.com/ollama/ollama/blob/main/docs/faq.md#setting-environment-variables-on-linux) ). Also, 'systemctl daemon-reload' needs to be called aft...
87d788ddef0d6d2435c2ca59b5fc260fc6979e40
ccd89d48d9b06c5cfef860ebf4ebc9412e1e69b6
diff --git a/README.md b/README.md index 6744cd1b5..5eb071329 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ If you're encountering an Ollama connection error, it is likely due to the backe 3. **Linux Users - Expose Ollama to Network:** - - Inside `/etc/systemd/system/ollama.service`, you need to add...
[ "README.md" ]
[]
true
ItzCrazyKns/Vane
815
issue_to_patch
feat: add AIML API provider
Introduces full support for AI/ML API as a first-class provider alongside existing ones: * **Configuration** * Updated **README.md** to document the new `AIMLAPI` env var under MODELS * Added `[MODELS.AIMLAPI]` section to **sample.config.toml** * Extended `src/app/api/config/route.ts` to load and persist ...
0024ce36c8f419729fb7896b891b67f8971137a3
c6d084f5dc960c271c2c01464b13f93a769e1d88
diff --git a/README.md b/README.md index 14a6193a1..9551250a6 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,9 @@ There are mainly 2 ways of installing Perplexica - With Docker, Without Docker. - `OLLAMA`: Your Ollama API URL. You should enter it as `http://host.docker.internal:PORT_NUMBER`. If you installed O...
[ "README.md", "sample.config.toml", "src/app/api/config/route.ts", "src/app/settings/page.tsx", "src/lib/config.ts", "src/lib/providers/aimlapi.ts", "src/lib/providers/index.ts" ]
[]
true
ItzCrazyKns/Vane
785
issue_to_patch
feat(gemini): add Gemini 2.5 Flash & Pro preview models (May 2025)
0b7989c3d3f3a5c21354c623f7bd98c70b6d7137
772e461c0887f72d35d9ebef9fa500908b702dad
diff --git a/src/lib/providers/gemini.ts b/src/lib/providers/gemini.ts index 6cf22430d..2dcdc8867 100644 --- a/src/lib/providers/gemini.ts +++ b/src/lib/providers/gemini.ts @@ -13,6 +13,14 @@ import { BaseChatModel } from '@langchain/core/language_models/chat_models'; import { Embeddings } from '@langchain/core/embedd...
[ "src/lib/providers/gemini.ts" ]
[]
true
ItzCrazyKns/Vane
784
issue_to_patch
docs: correct typo in npm start command
corrects typo
0b7989c3d3f3a5c21354c623f7bd98c70b6d7137
3b46baca4f3ef35c7fa3c0605d2738b58976b2dd
diff --git a/README.md b/README.md index 18c9f8440..8a0c78ef7 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ There are mainly 2 ways of installing Perplexica - With Docker, Without Docker. 2. Clone the repository and rename the `sample.config.toml` file to `config.toml` in the root directory. Ensure you co...
[ "README.md", "docs/installation/UPDATING.md" ]
[]
true
ItzCrazyKns/Vane
801
issue_to_patch
Update README.md
Mentioned that Gemini api key can be used in perplexica.
0b7989c3d3f3a5c21354c623f7bd98c70b6d7137
e2b9ffc072bbb1826719ec480338247d470173c9
diff --git a/README.md b/README.md index 18c9f8440..07d5c2d82 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ There are mainly 2 ways of installing Perplexica - With Docker, Without Docker. - `OLLAMA`: Your Ollama API URL. You should enter it as `http://host.docker.internal:PORT_NUMBER`. If you installed O...
[ "README.md" ]
[]
true
ItzCrazyKns/Vane
781
issue_to_patch
feat(models): Update Gemini 2.5 pro key
Update the Gemini key from ```ts key: 'gemini-2.5-pro-exp-03-25', ``` to ```ts key: 'gemini-2.5-pro-preview-05-06', ```
1716dd5a655c10b8716ff5d52cdf827c87df995e
9eba4b73737b9a38f71eba26d7b9a80290542ad2
diff --git a/src/lib/providers/gemini.ts b/src/lib/providers/gemini.ts index 6cf22430d..29b33b5b0 100644 --- a/src/lib/providers/gemini.ts +++ b/src/lib/providers/gemini.ts @@ -15,7 +15,7 @@ import { Embeddings } from '@langchain/core/embeddings'; const geminiChatModels: Record<string, string>[] = [ { displayN...
[ "src/lib/providers/gemini.ts" ]
[]
true
ItzCrazyKns/Vane
746
issue_to_patch
bug(file-upload): fixed an error in uploading dox files.
Fixed a bug, that causes dox files not being uploaded.
bcebdb5fd98bc13413596659823b82be00685315
66f9a674f1c684de6bc258056e765eb33fecef4d
diff --git a/package.json b/package.json index 5746fd3e0..a8fd41685 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,7 @@ "jspdf": "^3.0.1", "langchain": "^0.1.30", "lucide-react": "^0.363.0", + "mammoth": "^1.9.1", "markdown-to-jsx": "^7.7.2", "next": "^15.2.2", "next-themes":...
[ "package.json", "yarn.lock" ]
[]
true
ItzCrazyKns/Vane
629
issue_to_patch
feat(app): support complex title
When there are some attributes in the title tag, the html title can be extracted normally. Additional Notes: Q: Why title has attributes? > This element(title) only includes the [global attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes). [MDN documentation about title](https://deve...
115e6b2a71e3d4700f2dcd23c8f32c1108894770
8aaee2c40ca8d4f983c2cc15e668b0a64d95b0d6
diff --git a/src/utils/documents.ts b/src/utils/documents.ts index 5cd03669d..36566895e 100644 --- a/src/utils/documents.ts +++ b/src/utils/documents.ts @@ -65,7 +65,7 @@ export const getDocumentsFromLinks = async ({ links }: { links: string[] }) => { const splittedText = await splitter.splitText(parsedText); ...
[ "src/utils/documents.ts" ]
[]
true
ItzCrazyKns/Vane
743
issue_to_patch
Feature/LM Studio provider and Provider Formatting
- Added DeepSeek and LM Studio AI providers - Implemented provider name formatting for better UI display
72450b92174176c6cb5b6f2352a5f975fecda6fc
186249149674df5938faecabb3a3b7c48d9bce71
diff --git a/sample.config.toml b/sample.config.toml index 980e99d28..1db2125b4 100644 --- a/sample.config.toml +++ b/sample.config.toml @@ -25,5 +25,8 @@ API_URL = "" # Ollama API URL - http://host.docker.internal:11434 [MODELS.DEEPSEEK] API_KEY = "" +[MODELS.LM_STUDIO] +API_URL = "" # LM Studio API URL - http://h...
[ "sample.config.toml", "src/app/api/config/route.ts", "src/app/settings/page.tsx", "src/lib/config.ts", "src/lib/providers/anthropic.ts", "src/lib/providers/deepseek.ts", "src/lib/providers/gemini.ts", "src/lib/providers/groq.ts", "src/lib/providers/index.ts", "src/lib/providers/lmstudio.ts", "sr...
[]
true
ItzCrazyKns/Vane
731
issue_to_patch
docs: add ClawCloud Run button
docs: add ClawCloud Run button --- We are **ClawCloud Run** — a cloud-native deployment platform where users can deploy your application with one click. The referral code within the deployment link is just for anonymous traffic analytics in order to improve our platform. If you’d like to use your own code, just sig...
a85f762c58d901e532b6f9fea24d785ccbc735cf
28b9cca413966040a7904d64e0c001606a823b96
diff --git a/README.md b/README.md index e01f10958..18c9f8440 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,7 @@ Perplexica runs on Next.js and handles all API requests. It works right away on [![Deploy to Sealos](https://raw.githubusercontent.com/labring-actions/templates/main/Deploy-on-Sealos.svg)](https:/...
[ "README.md" ]
[]
true
ItzCrazyKns/Vane
740
issue_to_patch
Set speech message before return
As titled to fix the text-to-speech action.
da1123d84baa8ced8a9427f866b068b4652e7d9c
41b258e4d894972876205cdbcff9d2c05241c2b8
diff --git a/src/components/MessageBox.tsx b/src/components/MessageBox.tsx index b0491858e..a7c46ec47 100644 --- a/src/components/MessageBox.tsx +++ b/src/components/MessageBox.tsx @@ -97,6 +97,7 @@ const MessageBox = ({ }, ), ); + setSpeechMessage(message.content.replace(regex, '')); ...
[ "src/components/MessageBox.tsx" ]
[]
true
ItzCrazyKns/Vane
736
issue_to_patch
Merge master into feat/deep-research
fd6c58734d2a2fd2b6091d03d4228d3397681d2a
da1123d84baa8ced8a9427f866b068b4652e7d9c
diff --git a/package.json b/package.json index 52ba3923d..e68410fc6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "perplexica-frontend", - "version": "1.10.1", + "version": "1.10.2", "license": "MIT", "author": "ItzCrazyKns", "scripts": { diff --git a/src/lib/providers/gemini.ts ...
[ "package.json", "src/lib/providers/gemini.ts", "src/lib/providers/groq.ts" ]
[]
true
ItzCrazyKns/Vane
728
issue_to_patch
Merge master into feat/deep-research
934fb0a23b51c48dca838a82d8cb32966d6fd562
d0ba8c9038381e726e0e7c777449e99bfc3689ec
diff --git a/docs/API/SEARCH.md b/docs/API/SEARCH.md index 3a28a7818..b67b62bd3 100644 --- a/docs/API/SEARCH.md +++ b/docs/API/SEARCH.md @@ -33,6 +33,7 @@ The API accepts a JSON object in the request body, where you define the focus mo ["human", "Hi, how are you?"], ["assistant", "I am doing well, how can I h...
[ "docs/API/SEARCH.md", "sample.config.toml", "src/app/api/chat/route.ts", "src/app/api/config/route.ts", "src/app/api/search/route.ts", "src/app/settings/page.tsx", "src/components/ChatWindow.tsx", "src/components/MessageBox.tsx", "src/lib/config.ts", "src/lib/prompts/academicSearch.ts", "src/lib...
[]
true
ItzCrazyKns/Vane
719
issue_to_patch
feat(message-box): support [1,2,3,4] citation format instead of just [1][2][3]
Unlike larger local LLMs, smaller ones inconsistently format citations, outputting styles like [1][2][3], [1,2,3,4,5], or [1,2][3]. This pull request introduces changes to recognize and support all these variations.
09661ae11d485b8e66a8916bcd943d5c613b4543
bf705afc216bb7e0193b1771c0f5527c969fad37
diff --git a/src/components/MessageBox.tsx b/src/components/MessageBox.tsx index 4473c3bf0..461710360 100644 --- a/src/components/MessageBox.tsx +++ b/src/components/MessageBox.tsx @@ -48,6 +48,7 @@ const MessageBox = ({ const [speechMessage, setSpeechMessage] = useState(message.content); useEffect(() => { + ...
[ "src/components/MessageBox.tsx" ]
[]
true
ItzCrazyKns/Vane
724
issue_to_patch
feat(providers): add deepseek provider
c4440327db38f0a9f2f8ad6d810459011a9218fc
588e68e93e3dbe77cba477eeef5a9d288a60f323
diff --git a/sample.config.toml b/sample.config.toml index 691b9647a..980e99d28 100644 --- a/sample.config.toml +++ b/sample.config.toml @@ -22,5 +22,8 @@ MODEL_NAME = "" [MODELS.OLLAMA] API_URL = "" # Ollama API URL - http://host.docker.internal:11434 +[MODELS.DEEPSEEK] +API_KEY = "" + [API_ENDPOINTS] SEARXNG = ...
[ "sample.config.toml", "src/app/api/config/route.ts", "src/app/settings/page.tsx", "src/lib/config.ts", "src/lib/providers/deepseek.ts", "src/lib/providers/index.ts" ]
[]
true
ItzCrazyKns/Vane
720
issue_to_patch
feat(search): add optional systemInstructions to API request body
09661ae11d485b8e66a8916bcd943d5c613b4543
64e2d457cce794b6b34f2c6f53da1c496420434f
diff --git a/docs/API/SEARCH.md b/docs/API/SEARCH.md index 3a28a7818..b67b62bd3 100644 --- a/docs/API/SEARCH.md +++ b/docs/API/SEARCH.md @@ -33,6 +33,7 @@ The API accepts a JSON object in the request body, where you define the focus mo ["human", "Hi, how are you?"], ["assistant", "I am doing well, how can I h...
[ "docs/API/SEARCH.md", "src/app/api/search/route.ts" ]
[]
true
ItzCrazyKns/Vane
267
issue_to_patch
Adding Groq Gemma2 9b
Adding Groq Gemma2 9b model option
27e6f5b9e1adeda5aeb5665a366d21d03cb07f30
e1732b9bf2b5c3668fa3ccd4d85baf0b156ba973
diff --git a/src/lib/providers/groq.ts b/src/lib/providers/groq.ts index 35bd125f9..ac5dc3ba9 100644 --- a/src/lib/providers/groq.ts +++ b/src/lib/providers/groq.ts @@ -49,6 +49,16 @@ export const loadGroqChatModels = async () => { baseURL: 'https://api.groq.com/openai/v1', }, ), + 'Gemm...
[ "src/lib/providers/groq.ts", "ui/components/ChatWindow.tsx" ]
[]
true
ItzCrazyKns/Vane
421
issue_to_patch
Make Discover link to a new tab
Make the link target to a new tab so that the current order stays and we can return to the current page for other news.
dfb532e4d3c293664f6d61cf6ff0e540377226fa
687cbb365fd60d90f9a7b18387c6c03fa9636f17
diff --git a/ui/app/discover/page.tsx b/ui/app/discover/page.tsx index 7788d0d0d..eb94040f8 100644 --- a/ui/app/discover/page.tsx +++ b/ui/app/discover/page.tsx @@ -83,6 +83,7 @@ const Page = () => { href={`/?q=Summary: ${item.url}`} key={i} className="max-w-sm rounded...
[ "ui/app/discover/page.tsx" ]
[]
true
ItzCrazyKns/Vane
716
issue_to_patch
Feat/system instructions
4b2a7916fde21c8d83e056f614fa995044b96f3d
7d52fbb368db416639fc3a70952207cc7f1bab1b
diff --git a/src/app/api/chat/route.ts b/src/app/api/chat/route.ts index d48fbb67c..e566edb49 100644 --- a/src/app/api/chat/route.ts +++ b/src/app/api/chat/route.ts @@ -49,6 +49,7 @@ type Body = { files: Array<string>; chatModel: ChatModel; embeddingModel: EmbeddingModel; + systemInstructions: string; }; ...
[ "src/app/api/chat/route.ts", "src/app/api/search/route.ts", "src/app/settings/page.tsx", "src/components/ChatWindow.tsx", "src/lib/prompts/academicSearch.ts", "src/lib/prompts/redditSearch.ts", "src/lib/prompts/webSearch.ts", "src/lib/prompts/wolframAlpha.ts", "src/lib/prompts/writingAssistant.ts", ...
[]
true
ItzCrazyKns/Vane
714
issue_to_patch
Merge master into feat/deep-research
0fcd598ff755193e8f58fa400f69f74562aed593
4b2a7916fde21c8d83e056f614fa995044b96f3d
diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index ea956ea1e..29f7987a9 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -114,6 +114,11 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOC...
[ ".github/workflows/docker-build.yaml", "docs/API/SEARCH.md", "package.json", "src/app/api/chat/route.ts", "src/app/api/config/route.ts", "src/app/api/discover/route.ts", "src/app/api/images/route.ts", "src/app/api/models/route.ts", "src/app/api/search/route.ts", "src/app/api/suggestions/route.ts",...
[]
true
ItzCrazyKns/Vane
703
issue_to_patch
feat(api): add streaming support to search route
Added support to stream option to the API provided by Perplexica.
310c8a75fd7fbf0a3867f2985ee4e61cefc2997f
90e303f737e9c9efe494fd141f951ed2b94d1b7d
diff --git a/docs/API/SEARCH.md b/docs/API/SEARCH.md index 300790170..3a28a7818 100644 --- a/docs/API/SEARCH.md +++ b/docs/API/SEARCH.md @@ -32,7 +32,8 @@ The API accepts a JSON object in the request body, where you define the focus mo "history": [ ["human", "Hi, how are you?"], ["assistant", "I am doing w...
[ "docs/API/SEARCH.md", "src/app/api/search/route.ts" ]
[]
true
ItzCrazyKns/Vane
705
issue_to_patch
feat(models): Update Gemini chat models
Remove - Gemini 2.0 Pro Add - Gemini 2.5 Pro Experimental - Gemini 2.0 Flash Thinking Experimental
310c8a75fd7fbf0a3867f2985ee4e61cefc2997f
b285cb432335f9c17233713c3379724cc6f642f9
diff --git a/src/lib/providers/gemini.ts b/src/lib/providers/gemini.ts index f355d0895..b0fa887bb 100644 --- a/src/lib/providers/gemini.ts +++ b/src/lib/providers/gemini.ts @@ -8,6 +8,10 @@ import { BaseChatModel } from '@langchain/core/language_models/chat_models'; import { Embeddings } from '@langchain/core/embeddin...
[ "src/lib/providers/gemini.ts" ]
[]
true
ItzCrazyKns/Vane
679
issue_to_patch
feat(app): fix build errors
04a0342b5224c367f1d830c11e8c2805323dbaca
62e6c24840106bfbe982f894da53707bc569ab2b
diff --git a/app.dockerfile b/app.dockerfile index 257130525..57a270e6c 100644 --- a/app.dockerfile +++ b/app.dockerfile @@ -3,7 +3,7 @@ FROM node:20.18.0-alpine AS builder WORKDIR /home/perplexica COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --network-timeo...
[ "app.dockerfile", "src/app/api/search/route.ts" ]
[]
true
JakeWharton/butterknife
1,580
issue_to_patch
Add `pull_request` to Wrapper Validation Triggers
Fixes a bug. Sorry about that.
6a60be60e476c4286cee0c59ac4ea998af1d8367
c0ac03c5e45ce74a73d30dfc0842cbc333e29b74
diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index f552c8dc6..405a2b306 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -1,5 +1,5 @@ name: "Validate Gradle Wrapper" -on: [push] +on: [...
[ ".github/workflows/gradle-wrapper-validation.yml" ]
[]
true
JakeWharton/butterknife
1,623
issue_to_patch
Test OnTouch argument support
afdad5fddf4be69468fee9727e665afb84df6746
8e6db6c7863b7ee6c9a82e7f5c0fe1ef2b19ed32
diff --git a/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnTouchTest.java b/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnTouchTest.java index 497f7096d..cfa9653b0 100644 --- a/butterknife-integration-test/src/androidTest/java/com/example...
[ "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnTouchTest.java" ]
[]
true
JakeWharton/butterknife
1,628
issue_to_patch
Fix changelog typo
6dd38718417e3b50b64ac0a880b6bf9f2f932124
befdad6a48ede2e73c83323e81cb8d3d578fd69d
diff --git a/CHANGELOG.md b/CHANGELOG.md index b6848e8d3..54e25ff79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Version 10.2.3 *(2020-08-12)* Heads up: Development on this tool is winding down as [view binding](https://developer.android.com/topic/libraries/view-binding) is stable in AS/AGP 3.6+. -...
[ "CHANGELOG.md" ]
[]
true
JakeWharton/butterknife
1,622
issue_to_patch
Fix IllegalArgumentException in @Touch in butterknife-reflect
Looks like we aren't passing through the MotionEvent.class when using butterknife-reflect. > java.lang.IllegalArgumentException: Wrong number of arguments; expected 2, got 1 While this shouldn't effect any production builds since folks shouldn't be using this in prod, it can cause `@OnTouch` annotations to crash ...
b6268e6c517f7c411783fb53b55f88e582877049
50fe5d0b85ce1f373c8200f3819501d4ece8f8a8
diff --git a/butterknife-reflect/src/main/java/butterknife/ButterKnife.java b/butterknife-reflect/src/main/java/butterknife/ButterKnife.java index fcf3fff59..d62ef9dc2 100644 --- a/butterknife-reflect/src/main/java/butterknife/ButterKnife.java +++ b/butterknife-reflect/src/main/java/butterknife/ButterKnife.java @@ -944...
[ "butterknife-reflect/src/main/java/butterknife/ButterKnife.java" ]
[]
true
JakeWharton/butterknife
1,620
issue_to_patch
All methods annotated with @OnClick may not work Today i found all click methods annotated with `@OnClick` are not working in my code. After debugging, i found something wrong with `DebouncingOnClickListener`, the static field `enabled` always stays in `false`. ``` public abstract class DebouncingOnClickListe...
Avoid all @OnClick events may not working
Avoid `DebouncingOnClickListener` static field `enabled` staying in `false` state. Fixes #1619
e82a9065e0fab8beecb5e0179057b82c5f2dfb30
51e872d9ab29214d04876ddb8a0de21d96641748
diff --git a/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java b/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java index 9893f1a49..f17417fb9 100644 --- a/butterknife-integration-test/src/androidTest/java/com/example...
[ "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/ViewTree.java", "butterknife-runtime/src/main/java/butterknife/internal/DebouncingOnClickListener.java" ]
[ { "comment": "We can switch this to post to the main looper directly rather than going through the view. That way we don't need to check for attach.", "path": "butterknife-runtime/src/main/java/butterknife/internal/DebouncingOnClickListener.java", "hunk": "@@ -13,8 +15,14 @@\n \n @Override public fina...
true
JakeWharton/butterknife
1,615
issue_to_patch
Micro update for README.md
Align curly brace
d9d30f0f5d3b61df089f8317062454efdb76294e
ff877af9f25f6c948b216ce3e6ca0d88d352974a
diff --git a/README.md b/README.md index ed2a17e95..d8645679a 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ buildscript { repositories { mavenCentral() google() - } + } dependencies { classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1' }
[ "README.md" ]
[]
true
JakeWharton/butterknife
1,611
issue_to_patch
Close link properly
The anchor was not closed properly 🤦
69c4c20d5c8b10d8a47c97881ef9313f00209d42
7b87d8f6123cb7703db3096a0bf0c7eee05da80d
diff --git a/website/index.html b/website/index.html index 330c6a9ad..04e7edeeb 100644 --- a/website/index.html +++ b/website/index.html @@ -24,7 +24,7 @@ <h2>Field and method binding for Android views</h2> <div class="offset4 span8 main"> <div class="main-inner"> <h3 id="deprecation">D...
[ "website/index.html" ]
[]
true
JakeWharton/butterknife
1,609
issue_to_patch
Website should have deprecation notice I've returned to Android dev after a hiatus, and am learning all the major changes in development tools. I remembered Butterknife, but only saw it's deprecation message on the GitHub README, not the website. If I haven't bothered to look at the repo, I would be using Butterknife ...
Add deprecation notice
Fixes #1607
574ed28042dc30c14a623f0d36e666ff8008d32c
68d74005268e1adda11f6d95ff70e9d9d12093b5
diff --git a/website/index.html b/website/index.html index 24d265211..330c6a9ad 100644 --- a/website/index.html +++ b/website/index.html @@ -23,6 +23,8 @@ <h2>Field and method binding for Android views</h2> </div> <div class="offset4 span8 main"> <div class="main-inner"> + <h3 id...
[ "website/index.html" ]
[]
true
JakeWharton/butterknife
1,574
issue_to_patch
Every entry of R2 class has ID 0x0 with Android Plugin 3.6.0-alpha10 and Butterknife library plugin Using ``` classpath 'com.android.tools.build:gradle:3.6.0-alpha10' classpath 'com.jakewharton:butterknife-gradle-plugin:10.1.0' ``` and ``` apply plugin: 'com.android.library' apply plugin: 'com.jakewharton.b...
Use fake ID values for R2
These values are meaningless. We only need them to be unique which is trivially achievable with a counter. This change is required, however, because AGP 3.6 will stop generating ID values in library projects. All values are set to 0 which obviously will prevent Butter Knife from correctly performing the reverse mapp...
7308431324f07febc031ceaa96e6dfe0a6d1d800
bb27b5a3e9a9cc35ed64037722fe69aea6158714
diff --git a/butterknife-gradle-plugin/build.gradle b/butterknife-gradle-plugin/build.gradle index 9b027ef6b..5f9fe6cd2 100644 --- a/butterknife-gradle-plugin/build.gradle +++ b/butterknife-gradle-plugin/build.gradle @@ -17,4 +17,13 @@ dependencies { testImplementation deps.compiletesting } +test { + dependsOn('...
[ "butterknife-gradle-plugin/build.gradle", "butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.kt", "butterknife-gradle-plugin/src/main/java/butterknife/plugin/ResourceSymbolListReader.kt", "butterknife-gradle-plugin/src/test/build.gradle", "butterknife-gradle-plugin/src/test/java/...
[ { "comment": "BTW, for children of declare styleables it's actually pretty interesting since, if we had:\r\n<resources> \r\n <attr name=\"foo\"/>\r\n <declare-styleable name=\"bar\">\r\n <item type=\"attr\" name=\"foo\"/> //re-using 'foo' defined above\r\n </declare-styleable>\r\n</resoures>\r\n...
diff --git a/butterknife-gradle-plugin/src/test/build.gradle b/butterknife-gradle-plugin/src/test/build.gradle index 92f5a7c9f..611de6cda 100644 --- a/butterknife-gradle-plugin/src/test/build.gradle +++ b/butterknife-gradle-plugin/src/test/build.gradle @@ -5,6 +5,10 @@ plugins { repositories { google() + mav...
true
JakeWharton/butterknife
1,579
issue_to_patch
Official Gradle Wrapper Validation GitHub Action
See: https://github.com/gradle/wrapper-validation-action
dea652dbf9807df67c1e4d875fc87738bac6730c
0b124b8c0abca6ce5bac3cf8e670831370b9abce
diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml new file mode 100644 index 000000000..f552c8dc6 --- /dev/null +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -0,0 +1,10 @@ +name: "Validate Gradle Wrapper" +on: [push] + +jobs: + validation: + na...
[ ".github/workflows/gradle-wrapper-validation.yml" ]
[]
true
JakeWharton/butterknife
1,562
issue_to_patch
Static imports do not work with butterknife annotation. I was migrating a project that had been using kapt, butterknife version 8.4.0 and AGP 3.2.1. I wanted to upgrate it to 10.0.0 but it came out that migration to AndroidX is required first, so I ended up with **Butterknife version 9.0.0 and AGP 3.3.1**. I enounter...
fix static import and add test on it
Closes https://github.com/JakeWharton/butterknife/issues/1467 Try fix this bug. Override callback method when visit JCIdent. If JCIdent is Primitive we can detect that it's import static and it's int variable. Add some test's for this
e4974f5b240f1fa3e59df5fb2b21df2d2e747adc
8c865290fd9c62e0ecb529fe0a5992d8e807400c
diff --git a/butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java b/butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java index 887d5f6d1..e90a48b8d 100644 --- a/butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java +++ b/butterknife-c...
[ "butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/library/SimpleActivityTest.java", "butterknife-integration-test/src/main/java/com/example/butterknife/library/SimpleActivity.java", "butterknife-integ...
[]
true
JakeWharton/butterknife
1,568
issue_to_patch
Make R2Generator task cacheable
This allows `R2Generator` tasks to use the Gradle build cache to share their outputs.
41234658847bd7581f8f2afddfd8e3be048ebfcd
d74d3b36df9e59d46f1050d33b7981f355111ef8
diff --git a/butterknife-gradle-plugin/src/main/java/butterknife/plugin/R2Generator.kt b/butterknife-gradle-plugin/src/main/java/butterknife/plugin/R2Generator.kt index 96e723d02..721b98677 100644 --- a/butterknife-gradle-plugin/src/main/java/butterknife/plugin/R2Generator.kt +++ b/butterknife-gradle-plugin/src/main/ja...
[ "butterknife-gradle-plugin/src/main/java/butterknife/plugin/R2Generator.kt" ]
[]
true
JakeWharton/butterknife
1,289
issue_to_patch
Add AndroidX support.
Addresses #1280 It would be nice if we could get this functionality tested within ButterKnife. Not sure the best way to go about that since we have to add androidx artifacts to the processor classpath. For the time being I was able to deploy to maven local and successfully built an AndroidX app using this change....
2e82683818ded5c1c105f9c3ff1f9b44dfa8096d
24afa903c4cbe436f387edf69c0d9012bf104de2
diff --git a/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java b/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java index b20aff4a0..1c44014eb 100644 --- a/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java +++ b/butterknife-compiler/src/main/java/butterkn...
[ "butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java", "butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java", "butterknife-compiler/src/main/java/butterknife/compiler/FieldDrawableBinding.java", "butterknife-compiler/src/main/java/butterknife/compiler/FieldRes...
[ { "comment": "Can we do this in `init` instead?", "path": "butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java", "hunk": "@@ -202,6 +202,7 @@\n private Map<TypeElement, BindingSet> findAndParseTargets(RoundEnvironment env) {\n Map<TypeElement, BindingSet.Builder> buil...
true
JakeWharton/butterknife
1,552
issue_to_patch
Switch copyOfRange(x, 0, y) to copyOf(x, y)
7a85315f505f395bb760e5320c3921a98e7e8939
c0a611bedcbf6d155edadcdbb68bde36a17bac37
diff --git a/butterknife-runtime/src/main/java/butterknife/internal/Utils.java b/butterknife-runtime/src/main/java/butterknife/internal/Utils.java index 9032ad766..8f4f8187c 100644 --- a/butterknife-runtime/src/main/java/butterknife/internal/Utils.java +++ b/butterknife-runtime/src/main/java/butterknife/internal/Utils....
[ "butterknife-runtime/src/main/java/butterknife/internal/Utils.java" ]
[]
true
JakeWharton/butterknife
1,550
issue_to_patch
An Obsolete warning API " 'variantOutput.getProcessResources()' is obsolete and has been replaced with 'variantOutput.getProcessResourcesProvider()'." is shown in Library At V10.1.0 I just follow the README.md like these ``` dependencies { implementation 'com.jakewharton:butterknife:10.1.0' annotationPro...
Update to AGP 3.3 as minimum supported version
Closes #1431. Closes #1478.
163c9ab6f13cddea77ff3c36dad1636f700bfb7b
cfbec9af794186407544a22ec461c4b729b48b0a
diff --git a/build.gradle b/build.gradle index 2c5716d0d..fdf6607e4 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ buildscript { ext.deps = [ android: [ 'runtime': 'com.google.android:android:4.1.1.4', - 'gradlePlugin': "com.android.tools.build:gradle:3.1.4", + 'gr...
[ "build.gradle", "butterknife-gradle-plugin/src/main/java/butterknife/plugin/ButterKnifePlugin.kt" ]
[]
true
JakeWharton/butterknife
1,546
issue_to_patch
Add support for incremental annotation processing
This commit adds incremental annotation processing support to Butterknife. More specifically, it makes Butterknife an isolating annotation processor. More information about what this means can be found at https://docs.gradle.org/current/userguide/java_plugin.html#isolating_annotation_processors. Closes #1230
6d618c3d61c57fbc011e5980985867b3df2cc954
3f675f4e23e59f645f5cecddde9f3b9fb1925cf8
diff --git a/build.gradle b/build.gradle index c411ba8e5..2c5716d0d 100644 --- a/build.gradle +++ b/build.gradle @@ -7,6 +7,7 @@ buildscript { 'androidTools': '26.2.0', 'kotlin': '1.2.71', + 'incap' : '0.2', 'release': '8.8.1', ] @@ -46,6 +47,10 @@ buildscript { ], 'kotlin...
[ "build.gradle", "butterknife-compiler/build.gradle", "butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java", "butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java" ]
[]
true
JakeWharton/butterknife
1,545
issue_to_patch
Generated ViewBinding doesn't extend from library module ViewBinding There's problem with extend views (Activities, Fragments, etc.) from library module and overriding inflated layout. Unfortunately your great, etc. library doesn't catch this kind of situations so generated `ViewBinding` for one module doesn't extends...
Add support for finding parent bindings in classpath
This commit expands search for parent bindings by examining all superclasses of types processed in the current round. Bindings found in the classpath will not be generated, but information they contain will be used when generating bindings for the current round of processing. Test: ClasspathParentBindTest Clos...
2409a1dd2fe9b2eb4cacfb8679c2591b65e1ea96
700890ee9d31a02f53857f7d34c9ba8cf71b2a7c
diff --git a/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java b/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java index e5a891d06..c1724dbee 100644 --- a/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java +++ b/butterknife-compiler/src/main/java/butterkn...
[ "butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java", "butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java", "butterknife-runtime/src/test/java/butterknife/ClasspathParentBindTest.java" ]
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/ClasspathParentBindTest.java b/butterknife-runtime/src/test/java/butterknife/ClasspathParentBindTest.java new file mode 100644 index 000000000..5df36fbd2 --- /dev/null +++ b/butterknife-runtime/src/test/java/butterknife/ClasspathParentBindTest.java @@ -0,0 +1,2...
true
JakeWharton/butterknife
1,521
issue_to_patch
Daggers hyperlink directs users to page that alerts user of deprecation
Updated the dagger hyperlink
8f8c7fa73c279ee034438cf4d162c9dbdff9fa2f
1df2c045dfcf8be1320b34ab2005af5ec16edf4b
diff --git a/README.md b/README.md index 4b1a719eb..de9ede17f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ class ExampleActivity extends Activity { For documentation and additional information see [the website][3]. -__Remember: A butter knife is like [a dagger][1] only infinitely less sharp.__ +__Remem...
[ "README.md" ]
[]
true
JakeWharton/butterknife
1,516
issue_to_patch
Fix mixed-content error
The current website fails to load the current version number because of a mixed content error. This commit replaces three http:// references in jquery-maven-artifact.min.js with https:// to fix that.
0ead8a7b21620effcf78c728089fc16ae9d664c0
fe670c277bc26b1e17a61c9be2df60beab305c40
diff --git a/website/static/jquery-maven-artifact.min.js b/website/static/jquery-maven-artifact.min.js index 84180e6bc..848cb9cd4 100644 --- a/website/static/jquery-maven-artifact.min.js +++ b/website/static/jquery-maven-artifact.min.js @@ -5,4 +5,4 @@ * Author: Jake Wharton * License: Apache 2.0 */ -(function($)...
[ "website/static/jquery-maven-artifact.min.js" ]
[]
true
JakeWharton/butterknife
1,486
issue_to_patch
Update setup instructions
Include Java8 requirement for the butterknife usage.
0cadabb00d82ada348c6e0350f5461944db89840
28782979870304a38aee6774ec25a090ea4a63e4
diff --git a/README.md b/README.md index 519926cce..4b1a719eb 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,15 @@ Download -------- ```groovy +android { + ... + // Butterknife requires Java 8. + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1...
[ "README.md" ]
[ { "comment": "This actually isn't true. As of 10.0.0 ButterKnife _only_ supports AndroidX and requires no property to enable this behavior.", "path": "README.md", "hunk": "@@ -42,13 +42,22 @@ Download\n --------\n \n ```groovy\n+android {\n+ ...\n+ // Butterknife requires Java 8.\n+ compileOptions {\...
true
JakeWharton/butterknife
1,486
comment_to_fix
Update setup instructions
This actually isn't true. As of 10.0.0 ButterKnife _only_ supports AndroidX and requires no property to enable this behavior.
0cadabb00d82ada348c6e0350f5461944db89840
28782979870304a38aee6774ec25a090ea4a63e4
diff --git a/README.md b/README.md index 519926cce..4b1a719eb 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,15 @@ Download -------- ```groovy +android { + ... + // Butterknife requires Java 8. + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1...
[ "README.md" ]
[ { "comment": "This actually isn't true. As of 10.0.0 ButterKnife _only_ supports AndroidX and requires no property to enable this behavior.", "path": "README.md", "hunk": "@@ -42,13 +42,22 @@ Download\n --------\n \n ```groovy\n+android {\n+ ...\n+ // Butterknife requires Java 8.\n+ compileOptions {\...
true
JakeWharton/butterknife
1,491
issue_to_patch
Use copyOfRange helper
Instead of creating and copying a subset of the array manually. This also expands the tests to ensure the original instance is returned unmodifed when no nulls are present.
0cadabb00d82ada348c6e0350f5461944db89840
3f4dd3a47daf503462ee55b69e1a43f3bb33a84a
diff --git a/butterknife-runtime/src/main/java/butterknife/internal/Utils.java b/butterknife-runtime/src/main/java/butterknife/internal/Utils.java index fd53ce5e0..9032ad766 100644 --- a/butterknife-runtime/src/main/java/butterknife/internal/Utils.java +++ b/butterknife-runtime/src/main/java/butterknife/internal/Utils....
[ "butterknife-runtime/src/main/java/butterknife/internal/Utils.java", "butterknife-runtime/src/test/java/butterknife/UtilsTest.java" ]
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/UtilsTest.java b/butterknife-runtime/src/test/java/butterknife/UtilsTest.java index ef00e11ef..67386b7af 100644 --- a/butterknife-runtime/src/test/java/butterknife/UtilsTest.java +++ b/butterknife-runtime/src/test/java/butterknife/UtilsTest.java @@ -17,9 +17,10...
true
JakeWharton/butterknife
1,483
issue_to_patch
Fix BindDimen Float Example on Website
Currently, the website shows this as an example of how to bind a `float` dimen: ```java @BindDimen(R.dimen.spacer) Float spacer; // int (for pixel size) or float (for exact value) field ``` Using `Float` as the type for the `spacer` variable will cause the following error: ``` error: @BindDimen field type must be...
51bf8c94939fd05f98e8246983801132f41843de
6347df12d94e2528d5f3bfea4fef7efc5a20e268
diff --git a/website/index.html b/website/index.html index 17f8ee293..24d265211 100644 --- a/website/index.html +++ b/website/index.html @@ -51,7 +51,7 @@ <h4 id="resource">Resource Binding</h4> @BindString(R.string.title) String title; @BindDrawable(R.drawable.graphic) Drawable graphic; @BindColor(R.color.red...
[ "website/index.html" ]
[]
true
JakeWharton/butterknife
1,477
issue_to_patch
Integration tests for @OnTouch, @OnItemClick and @OnItemLongClick
657eef61d16f288f80a6aa0b7415b15e474ce72a
a521951650bb22dd77782d1e3d8770c8a582fdc6
diff --git a/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemClickTest.java b/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemClickTest.java new file mode 100644 index 000000000..6c08cfbdd --- /dev/null +++ b/butterknife-integration-t...
[ "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemClickTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemLongClickTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnTo...
[]
true
JakeWharton/butterknife
1,458
issue_to_patch
Add @OnPageChange support to reflect backend
Similar to `@OnTextChanged`. Working on `@OnItemSelected` next. I'll definitely open a PR before trying to make the implementation reusable for other listeners.
56c1626c18efd08f2544f16ea045a079311e6f3b
48f1d7e3ee4eca12a5ec8b10f6be698584ecee9a
diff --git a/build.gradle b/build.gradle index 0d2b72b1f..c411ba8e5 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,7 @@ buildscript { ], 'androidx': [ 'core': "androidx.core:core:1.0.0", + 'viewpager': "androidx.viewpager:viewpager:1.0.0", 'annotations': "androidx...
[ "build.gradle", "butterknife-annotations/src/main/java/butterknife/OnPageChange.java", "butterknife-reflect/build.gradle", "butterknife-reflect/src/main/java/butterknife/ButterKnife.java" ]
[]
true
JakeWharton/butterknife
1,471
issue_to_patch
@OnItemSelected integration test
I used a test double here to invoke the callbacks, since I couldn't find a reasonable way to do that using framework classes (`Spinner`/`ListView`/`GridView`). I would appreciate your feedback.
9460de0367a9467c1abf75f90107c30dba524922
87c26f09e931ba023cab67425edf0ee56013d356
diff --git a/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemSelectedTest.java b/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemSelectedTest.java new file mode 100644 index 000000000..8a37518d4 --- /dev/null +++ b/butterknife-integra...
[ "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnItemSelectedTest.java" ]
[]
true
JakeWharton/butterknife
1,464
issue_to_patch
Checked change integration test
ec955ebb0e849d5cab1137a6ff9e3354363c8061
2a7ae33851c0fd93793fa94723f9ab5edf0663a1
diff --git a/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindAnimTest.java b/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindAnimTest.java index 2a05e5f1c..fdfc9c2f6 100644 --- a/butterknife-integration-test/src/androidTest/java/com/examp...
[ "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindAnimTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindArrayTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindBitmapTes...
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/OnCheckedChangedTest.java b/butterknife-runtime/src/test/java/butterknife/OnCheckedChangedTest.java deleted file mode 100644 index 7eec5ce48..000000000 --- a/butterknife-runtime/src/test/java/butterknife/OnCheckedChangedTest.java +++ /dev/null @@ -1,65 +0,0 @@ ...
true
JakeWharton/butterknife
1,462
issue_to_patch
More integration tests to exercise reflect backend
30d694958ed69031de55c57c4788d3e303a8aca8
e7a0482ab5049750a598059dda70a5fca8f4eabe
diff --git a/butterknife-integration-test/src/androidTest/font_licenses.txt b/butterknife-integration-test/src/androidTest/font_licenses.txt new file mode 100644 index 000000000..0b83a9a70 --- /dev/null +++ b/butterknife-integration-test/src/androidTest/font_licenses.txt @@ -0,0 +1,93 @@ +Copyright 2006 The Inconsolata...
[ "butterknife-integration-test/src/androidTest/font_licenses.txt", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindAnimTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindFontTest.java", "butterknife-integration-test/sr...
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/BindAnimTest.java b/butterknife-runtime/src/test/java/butterknife/BindAnimTest.java index 282f660fa..34e4a776e 100644 --- a/butterknife-runtime/src/test/java/butterknife/BindAnimTest.java +++ b/butterknife-runtime/src/test/java/butterknife/BindAnimTest.java @@ ...
true
JakeWharton/butterknife
1,460
issue_to_patch
Move resource binding tests to be integration
411ca472a3421901a3700eb3753cba7536173538
dbfa7684fcccc6d8baa680c5782c1fcfc216865a
diff --git a/butterknife-integration-test/build.gradle b/butterknife-integration-test/build.gradle index a86726d7b..e604af1f1 100644 --- a/butterknife-integration-test/build.gradle +++ b/butterknife-integration-test/build.gradle @@ -43,11 +43,9 @@ android { reflect { dimension 'runtime' - application...
[ "butterknife-integration-test/build.gradle", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindArrayTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/BindBitmapTest.java", "butterknife-integration-test/src/androidTest/java...
[]
true
JakeWharton/butterknife
1,456
issue_to_patch
THINGS
cf0ef256c90e24c65b644dc6c433b87ca95cc26a
0fda4752b54ba41ba5cb4e471c49d5f925122883
diff --git a/butterknife-integration-test/src/androidTest/proguard.pro b/butterknife-integration-test/src/androidTest/proguard.pro index f85ddc9ea..4807b6d16 100644 --- a/butterknife-integration-test/src/androidTest/proguard.pro +++ b/butterknife-integration-test/src/androidTest/proguard.pro @@ -1,4 +1,5 @@ -dontoptim...
[ "butterknife-integration-test/src/androidTest/proguard.pro", "butterknife-integration-test/src/main/proguard.pro", "gradle/wrapper/gradle-wrapper.jar", "gradle/wrapper/gradle-wrapper.properties" ]
[]
true
JakeWharton/butterknife
1,455
issue_to_patch
Port long click tests to be functional
cf0ef256c90e24c65b644dc6c433b87ca95cc26a
4007d61737c5dd3ab4f7bc80fcbd327a8fa4add5
diff --git a/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java b/butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java index c517c0aac..256885199 100644 --- a/butterknife-integration-test/src/androidTest/java/com/example...
[ "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnLongClickTest.java", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/ViewTestUtil...
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/OnLongClickTest.java b/butterknife-runtime/src/test/java/butterknife/OnLongClickTest.java deleted file mode 100644 index 2a6d6bb23..000000000 --- a/butterknife-runtime/src/test/java/butterknife/OnLongClickTest.java +++ /dev/null @@ -1,120 +0,0 @@ -package butte...
true
JakeWharton/butterknife
1,457
issue_to_patch
HTTPS
Closes #1023. Closes #1107.
cf0ef256c90e24c65b644dc6c433b87ca95cc26a
001ee6226fe9c3d0e4d9afce42da47fc64424770
diff --git a/website/index.html b/website/index.html index 6905ec97c..17f8ee293 100644 --- a/website/index.html +++ b/website/index.html @@ -6,7 +6,7 @@ <title>Butter Knife</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Field and method bi...
[ "website/index.html" ]
[]
true
JakeWharton/butterknife
1,454
issue_to_patch
Add support for default return values on non-void listeners
Closes #228.
ae8d0e62551c2154c29a890252d3df12fd993b43
717159f5f57a68c842c720ec867e292095775f6a
diff --git a/butterknife-annotations/src/main/java/butterknife/OnEditorAction.java b/butterknife-annotations/src/main/java/butterknife/OnEditorAction.java index 2975cc020..ebaa57c60 100644 --- a/butterknife-annotations/src/main/java/butterknife/OnEditorAction.java +++ b/butterknife-annotations/src/main/java/butterknife...
[ "butterknife-annotations/src/main/java/butterknife/OnEditorAction.java", "butterknife-annotations/src/main/java/butterknife/OnItemLongClick.java", "butterknife-annotations/src/main/java/butterknife/OnLongClick.java", "butterknife-annotations/src/main/java/butterknife/OnTouch.java", "butterknife-compiler/src...
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/OnEditorActionTest.java b/butterknife-runtime/src/test/java/butterknife/OnEditorActionTest.java index 0b66e14b6..7541a00c6 100644 --- a/butterknife-runtime/src/test/java/butterknife/OnEditorActionTest.java +++ b/butterknife-runtime/src/test/java/butterknife/OnE...
true
JakeWharton/butterknife
1,453
issue_to_patch
Add @OnTextChanged support to reflect backend
Closes #1452
970a377e75c37e65feb0ae885f2ccb6494570202
9c0e6a97c2280db8fc94f8048de9572e92b646e1
diff --git a/butterknife-annotations/src/main/java/butterknife/OnTextChanged.java b/butterknife-annotations/src/main/java/butterknife/OnTextChanged.java index 1ba3a3831..b823b4435 100644 --- a/butterknife-annotations/src/main/java/butterknife/OnTextChanged.java +++ b/butterknife-annotations/src/main/java/butterknife/On...
[ "butterknife-annotations/src/main/java/butterknife/OnTextChanged.java", "butterknife-reflect/src/main/java/butterknife/ButterKnife.java", "butterknife-reflect/src/main/java/butterknife/EmptyTextWatcher.java", "butterknife-reflect/src/main/java/butterknife/ListenerUnbinder.java", "checkstyle.xml" ]
[]
true
JakeWharton/butterknife
1,450
issue_to_patch
Add second license SHA
bac9b737fdc7e37a30cd8407289e626bd5a161bc
229f126cf819e2758f591400327a55d707df415f
diff --git a/.travis.yml b/.travis.yml index 4e7fb53e6..31ff57fe2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ before_install: # Install SDK license so Android Gradle plugin can install deps. - mkdir "$ANDROID_HOME/licenses" || true - echo "d56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HO...
[ ".travis.yml" ]
[]
true
JakeWharton/butterknife
1,448
issue_to_patch
Remove enforcement of required views in reflection backend
Almost all of the nullability annotations don't have runtime retention so this only causes problems. Also you'll get an NPE and it'll be obvious anyway, it just won't be eager.
8676cdd85e7582607a368a9c9ccd1fced9c85015
60022fa24c9a68b2f643b0b2c1179cd75e274c99
diff --git a/butterknife-integration-test/build.gradle b/butterknife-integration-test/build.gradle index 53b0955f7..a86726d7b 100644 --- a/butterknife-integration-test/build.gradle +++ b/butterknife-integration-test/build.gradle @@ -15,7 +15,7 @@ android { versionCode 1 versionName '1.0.0' - testInstrume...
[ "butterknife-integration-test/build.gradle", "butterknife-reflect/src/main/java/butterknife/ButterKnife.java", "butterknife-runtime/build.gradle", "butterknife/build.gradle" ]
[]
true
JakeWharton/butterknife
1,426
issue_to_patch
Add the google repo
BK 10's plugin requires com.android.tools.build:gradle:3.1.4 and the google repo should be added to the buildscript's repos. BK 10 also requires compileSDK 28, I don't know where the docs should reflect this.
d84e993c0916945f2d3b75d596474cfd997b29fb
ce7a29b84d161bae76fd9dc14f4bc1d8e19aebea
diff --git a/README.md b/README.md index 004b9eeb1..e7cabd3e1 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ To use Butter Knife in a library, add the plugin to your `buildscript`: buildscript { repositories { mavenCentral() + google() } dependencies { classpath 'com.jakewharton:butter...
[ "README.md" ]
[]
true
JakeWharton/butterknife
1,420
issue_to_patch
Use US locale to uppercase annotation first letter
Closes #1409
e9c1533e2af2b26bf26ce13c139ae6ffdeb3a7c5
c58b01cffb37b288f4d520de0a274f604c229d89
diff --git a/butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.kt b/butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.kt index 567782c8a..d337564c5 100644 --- a/butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.kt +++ b/butterknife-grad...
[ "butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.kt" ]
[]
true
JakeWharton/butterknife
1,404
issue_to_patch
Support for Android Gradle Plugin 3.3.
Android Gradle Plugin 3.3 includes direct bytecode generation of the R class in libraries, which breaks previous R2 generator as it relies on the generated source. Switch to reading the symbol table (R.txt), dropping support for plugins before 3.1, where the internal getter for the symbol table was moved. File...
afd0dfa4cc019de04b3e9b48769829960c9314c6
96ecdb37d8b2e48fd07618e9ddfcf7ad165e8e56
diff --git a/build.gradle b/build.gradle index c64dd5a23..0ef86b3cd 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,6 @@ buildscript { 'tests': "com.android.tools.lint:lint-tests:${versions.androidTools}", ], javapoet: 'com.squareup:javapoet:1.10.0', - javaparser: 'com.github.jav...
[ "build.gradle", "butterknife-gradle-plugin/build.gradle", "butterknife-gradle-plugin/src/main/java/butterknife/plugin/ButterKnifePlugin.kt", "butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.java", "butterknife-gradle-plugin/src/main/java/butterknife/plugin/FinalRClassBuilder.kt...
[]
diff --git a/butterknife-gradle-plugin/src/test/java/butterknife/plugin/BuildFilesRule.kt b/butterknife-gradle-plugin/src/test/java/butterknife/plugin/BuildFilesRule.kt index 92ce2fd87..fa358db9c 100644 --- a/butterknife-gradle-plugin/src/test/java/butterknife/plugin/BuildFilesRule.kt +++ b/butterknife-gradle-plugin/sr...
true
JakeWharton/butterknife
1,396
issue_to_patch
Work around Jetifier being a thing
Closes #1395
94729fcb85deae93d89617f44e40749163838f39
e30462493097d5f1a30923c51339f8e98de3e5af
diff --git a/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java b/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java index 0df2479cc..6a5e5e468 100644 --- a/butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java +++ b/butterknife-compiler/src/main/java/butterkn...
[ "butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java" ]
[]
true
JakeWharton/butterknife
1,384
issue_to_patch
Make all artifacts use Java 8 bytecode
As promised in the RC1 release notes...
0f7e65506fa3576acedd168ce75ac3db7ca9ed02
0efcf396f63b1e032086f9f7ccbdaba80a8973ca
diff --git a/butterknife-annotations/build.gradle b/butterknife-annotations/build.gradle index f96179a76..47d8f373a 100644 --- a/butterknife-annotations/build.gradle +++ b/butterknife-annotations/build.gradle @@ -1,8 +1,8 @@ apply plugin: 'java-library' apply plugin: 'checkstyle' -sourceCompatibility = JavaVersion....
[ "butterknife-annotations/build.gradle", "butterknife-compiler/build.gradle", "butterknife-gradle-plugin/src/test/build.gradle", "butterknife-integration-test/src/main/java/com/example/butterknife/library/SimpleActivity.java", "butterknife-runtime/build.gradle", "butterknife-runtime/src/androidTest/java/bu...
[]
diff --git a/butterknife-gradle-plugin/src/test/build.gradle b/butterknife-gradle-plugin/src/test/build.gradle index 1ce175ddb..670488ac0 100644 --- a/butterknife-gradle-plugin/src/test/build.gradle +++ b/butterknife-gradle-plugin/src/test/build.gradle @@ -8,11 +8,11 @@ repositories { } android { - compileSdkVer...
true
JakeWharton/butterknife
1,383
issue_to_patch
Kotlin 1.2.71 and Java 8 reflect
8442a7f9c0cf5ec78db869e015a1fc2ec17d95f6
7d3558ae1837a57055c081f6a4ad308018d63f1a
diff --git a/build.gradle b/build.gradle index 4f5147774..c64dd5a23 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { 'supportLibrary': '28.0.0', 'androidTools': '26.2.0', - 'kotlin': '1.2.70', + 'kotlin': '1.2.71', 'release': '8.8.1', ] diff --git a/butter...
[ "build.gradle", "butterknife-integration-test/build.gradle", "butterknife-reflect/build.gradle", "butterknife-reflect/src/main/java/butterknife/ButterKnife.java" ]
[]
true
JakeWharton/butterknife
1,373
issue_to_patch
Invert support/androidx terminology
AndroidX is current. Support is legacy.
13b5fb3fc19f0a36513ea6852f47513dc90e4c39
b8791ded33dd7bdc8ed69c9bbdb8bb3ba6519409
diff --git a/build.gradle b/build.gradle index 5ccd352f8..0f6b5b826 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { 'compileSdk': 28, 'supportLibrary': '28.0.0', - 'androidTools': '26.2.0-rc03', + 'androidTools': '26.2.0', 'kotlin': '1.2.70', 'release...
[ "build.gradle", "butterknife-annotations/src/main/java/butterknife/OnPageChange.java", "butterknife-annotations/src/main/java/butterknife/internal/ListenerClass.java", "butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java", "butterknife-compiler/src/main/java/butterknife/compiler/ButterKn...
[]
diff --git a/butterknife-gradle-plugin/src/test/java/butterknife/plugin/FinalRClassBuilderTest.kt b/butterknife-gradle-plugin/src/test/java/butterknife/plugin/FinalRClassBuilderTest.kt index ffedd5f87..a07dfc677 100644 --- a/butterknife-gradle-plugin/src/test/java/butterknife/plugin/FinalRClassBuilderTest.kt +++ b/butt...
true
JakeWharton/butterknife
1,369
issue_to_patch
Compile 28, support lib 28, androidx 1
83216d86d22a2e3c0df5cc6d117877a75a1ddac3
4919bba0a143d015006f8b4d6696dafac6223764
diff --git a/build.gradle b/build.gradle index b9f4e7252..5ccd352f8 100644 --- a/build.gradle +++ b/build.gradle @@ -3,11 +3,11 @@ apply plugin: 'com.github.ben-manes.versions' buildscript { ext.versions = [ 'minSdk': 14, - 'compileSdk': 27, + 'compileSdk': 28, - 'supportLibrary': '27.1.1', ...
[ "build.gradle", "butterknife-integration-test/src/main/java/com/example/butterknife/unbinder/H.java", "butterknife-runtime/src/test/java/butterknife/UnbinderTest.java" ]
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/UnbinderTest.java b/butterknife-runtime/src/test/java/butterknife/UnbinderTest.java index 98bd636a7..e2f060233 100644 --- a/butterknife-runtime/src/test/java/butterknife/UnbinderTest.java +++ b/butterknife-runtime/src/test/java/butterknife/UnbinderTest.java @@ ...
true
JakeWharton/butterknife
1,360
issue_to_patch
Migrate @OnClick codegen tests to functional tests
Refs #375
51e3c4f04024671fe7e84c7093b5960a01e10431
3ef792c390f4fb2cffb1124999227884bbd6b108
diff --git a/butterknife-integration-test/build.gradle b/butterknife-integration-test/build.gradle index 5b9e1bb4b..4358fda8d 100644 --- a/butterknife-integration-test/build.gradle +++ b/butterknife-integration-test/build.gradle @@ -63,6 +63,7 @@ dependencies { codegenImplementation project(':butterknife') code...
[ "butterknife-integration-test/build.gradle", "butterknife-integration-test/src/androidTest/java/com/example/butterknife/functional/OnClickTest.java", "butterknife-integration-test/src/main/proguard.pro", "butterknife-runtime/src/test/java/butterknife/OnClickTest.java" ]
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/OnClickTest.java b/butterknife-runtime/src/test/java/butterknife/OnClickTest.java index 9d06efce0..324f727e4 100644 --- a/butterknife-runtime/src/test/java/butterknife/OnClickTest.java +++ b/butterknife-runtime/src/test/java/butterknife/OnClickTest.java @@ -9,1...
true
JakeWharton/butterknife
1,358
issue_to_patch
Lower consumer AGP requirements
Closes #1353
c798cc91933f6eb7c97910e49be0075efe3daf84
b7e5af1a8bb4f96e53650decc242bc10a7122ebd
diff --git a/build.gradle b/build.gradle index 1426727fa..b9f4e7252 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,6 @@ buildscript { 'compileSdk': 27, 'supportLibrary': '27.1.1', - 'androidPlugin': '3.2.0-rc03', 'androidTools': '26.2.0-rc03', 'kotlin': '1.2.61', @@ -16,7 +...
[ "build.gradle" ]
[]
true
JakeWharton/butterknife
1,357
issue_to_patch
Fix annotation retention for reflect usage
d4994ae62c8c8a6eb0a6fb5ddb3fa537fd20f08f
1afc43dc46ef38e5581898fd8f99a00cb81bbe5f
diff --git a/butterknife-annotations/src/main/java/butterknife/BindArray.java b/butterknife-annotations/src/main/java/butterknife/BindArray.java index b2f7be27d..6f016b4dc 100644 --- a/butterknife-annotations/src/main/java/butterknife/BindArray.java +++ b/butterknife-annotations/src/main/java/butterknife/BindArray.java...
[ "butterknife-annotations/src/main/java/butterknife/BindArray.java" ]
[]
true
JakeWharton/butterknife
1,351
issue_to_patch
Add error-prone and NullAway
Closes #1334
2b95b9673d0b2482f5d2608effd2011ae565d86c
c17c16c89c69bf280146888bbca5131f06857703
diff --git a/build.gradle b/build.gradle index d761251b0..36c9cf10e 100644 --- a/build.gradle +++ b/build.gradle @@ -58,12 +58,14 @@ buildscript { mavenCentral() jcenter() google() + gradlePluginPortal() } dependencies { classpath deps.android.gradlePlugin classpath "org.jetbrains.ko...
[ "build.gradle", "butterknife-compiler/src/main/java/butterknife/compiler/BindingSet.java", "butterknife-compiler/src/main/java/butterknife/compiler/ButterKnifeProcessor.java", "butterknife-compiler/src/main/java/butterknife/compiler/FieldResourceBinding.java", "butterknife-compiler/src/main/java/butterknife...
[]
diff --git a/butterknife-runtime/src/test/java/butterknife/TestGeneratingProcessor.java b/butterknife-runtime/src/test/java/butterknife/TestGeneratingProcessor.java index 372f15dd7..72a13522f 100644 --- a/butterknife-runtime/src/test/java/butterknife/TestGeneratingProcessor.java +++ b/butterknife-runtime/src/test/java/...
true
JakeWharton/butterknife
1,356
issue_to_patch
Add @OnTouch to reflect backend
d4994ae62c8c8a6eb0a6fb5ddb3fa537fd20f08f
8e384330d64b8ac4de4c718740839748a4c8ef01
diff --git a/butterknife-annotations/src/main/java/butterknife/OnTouch.java b/butterknife-annotations/src/main/java/butterknife/OnTouch.java index dc4b69e75..4b54a0d30 100644 --- a/butterknife-annotations/src/main/java/butterknife/OnTouch.java +++ b/butterknife-annotations/src/main/java/butterknife/OnTouch.java @@ -9,7...
[ "butterknife-annotations/src/main/java/butterknife/OnTouch.java", "butterknife-reflect/src/main/java/butterknife/ButterKnife.java" ]
[]
true