fix: base icons url & case insensitive regexes

This commit is contained in:
Jozef Steinhübl 2024-08-04 22:59:22 +02:00
parent 0810b2c79a
commit c5a955dd8f
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F
3 changed files with 9 additions and 4 deletions

View file

@ -24,7 +24,7 @@ You can configure state, details and git integration by changing Discord Presenc
"discord_presence": {
"initialization_options": {
// Base url for all language icons
"base_icons_url": "https://raw.githubusercontent.com/xhyrom/zed-discord-presence/feat/recognize-languages/assets/icons/",
"base_icons_url": "https://raw.githubusercontent.com/xhyrom/zed-discord-presence/main/assets/icons/",
"state": "Working on {filename}",
"details": "In {workspace}",

View file

@ -57,7 +57,9 @@ macro_rules! set_string {
impl Configuration {
pub fn new() -> Self {
Self {
base_icons_url: String::from("https://raw.githubusercontent.com/xhyrom/zed-discord-presence/feat/recognize-languages/assets/icons/"),
base_icons_url: String::from(
"https://raw.githubusercontent.com/xhyrom/zed-discord-presence/main/assets/icons/",
),
state: Some(String::from("Working on {filename}")),
details: Some(String::from("In {workspace}")),
large_image: Some(String::from("{base_icons_url}/{language}.png")),

View file

@ -1,5 +1,5 @@
use lazy_static::lazy_static;
use regex::Regex;
use regex::{Regex, RegexBuilder};
use serde_json::from_str;
use std::collections::HashMap;
use std::sync::Mutex;
@ -29,7 +29,10 @@ pub fn get_language(document: &Document) -> String {
continue;
}
if let Ok(re) = Regex::new(pattern.unwrap()) {
if let Ok(re) = RegexBuilder::new(pattern.unwrap())
.case_insensitive(true)
.build()
{
if re.is_match(&filename) || re.is_match(&extension) {
return language.to_string();
}